Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: arduino/ArduinoCore-avr
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: makeyouruno
Choose a base ref
...
head repository: arduino/ArduinoCore-avr
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 13 commits
  • 7 files changed
  • 4 contributors

Commits on Feb 20, 2023

  1. Updated board names

    Updated some board names to the proper spelling 
    
    @facchinm
    jhansson-ard authored Feb 20, 2023
    Configuration menu
    Copy the full SHA
    dd01e5a View commit details
    Browse the repository at this point in the history

Commits on Feb 24, 2023

  1. Merge pull request #523 from jhansson-ard/patch-1

    Updated board names
    facchinm authored Feb 24, 2023
    Configuration menu
    Copy the full SHA
    0428ad8 View commit details
    Browse the repository at this point in the history

Commits on Mar 18, 2023

  1. Correct misspelled word in comment

    This misspelled (mislocalized?) word was causing the spell check to fail
    per1234 authored Mar 18, 2023
    Configuration menu
    Copy the full SHA
    daf2713 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #529 from per1234/fix-typo

    Correct misspelled word in comment
    per1234 authored Mar 18, 2023
    Configuration menu
    Copy the full SHA
    eabd762 View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2023

  1. Bump actions/checkout from 3 to 4

    Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](actions/checkout@v3...v4)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Sep 4, 2023
    Configuration menu
    Copy the full SHA
    edb06d4 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #540 from arduino/dependabot/github_actions/action…

    …s/checkout-4
    
    Bump actions/checkout from 3 to 4
    per1234 authored Sep 4, 2023
    Configuration menu
    Copy the full SHA
    6309212 View commit details
    Browse the repository at this point in the history

Commits on May 25, 2024

  1. Fix spell check false positives by ignoring words

    The codespell spellchecker tool is used to automatically detect commonly misspelled words in the files of this project.
    
    The misspelled words dictionary was expanded in the latest release of codespell. Some of the text in the project codebase happens to match against newly added entries, which caused codespell to produce false misspelled word detections.
    
     Since the code that produced the detections is correct and intended, the false positives are resolved by configuring codespell to ignore the problematic words.
    per1234 authored May 25, 2024
    Configuration menu
    Copy the full SHA
    bd473a8 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #562 from per1234/spellcheck-false-positives

    Fix spell check false positives by ignoring words
    per1234 authored May 25, 2024
    Configuration menu
    Copy the full SHA
    321fca0 View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2024

  1. Bump actions/upload-artifact from 3 to 4

    Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4.
    - [Release notes](https://github.com/actions/upload-artifact/releases)
    - [Commits](actions/upload-artifact@v3...v4)
    
    ---
    updated-dependencies:
    - dependency-name: actions/upload-artifact
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Oct 9, 2024
    Configuration menu
    Copy the full SHA
    106b2c6 View commit details
    Browse the repository at this point in the history
  2. Bump arduino/arduino-lint-action from 1 to 2

    Bumps [arduino/arduino-lint-action](https://github.com/arduino/arduino-lint-action) from 1 to 2.
    - [Release notes](https://github.com/arduino/arduino-lint-action/releases)
    - [Commits](arduino/arduino-lint-action@v1...v2)
    
    ---
    updated-dependencies:
    - dependency-name: arduino/arduino-lint-action
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Oct 9, 2024
    Configuration menu
    Copy the full SHA
    6e6036e View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2024

  1. Merge pull request #573 from arduino/dependabot/github_actions/arduin…

    …o/arduino-lint-action-2
    
    Bump arduino/arduino-lint-action from 1 to 2
    per1234 authored Oct 10, 2024
    Configuration menu
    Copy the full SHA
    ee452c9 View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2024

  1. Don't upload multiple times to same artifact in sketch compilation wo…

    …rkflow
    
    The "Compile Examples" GitHub Actions workflow is configured to compile the example sketches for each of the supported
    boards. This is done by using a job matrix in the GitHub Actions workflow to generate a parallel job for each board.
    
    A GitHub Actions workflow artifact is used to transfer the sketches report files generated by the
    "arduino/compile-sketches" action between this workflow's job and the "Report Size Deltas" workflow that uses the
    "arduino/report-size-deltas" action to publish the data. The "actions/upload-artifact" action is used to upload the
    sketches report files to the workflow artifact.
    
    Previously, the sketches reports from all the boards were uploaded to a single artifact. However, support for uploading
    multiple times to a single artifact was dropped in version 4.0.0 of the "actions/upload-artifact" action. So it is now
    necessary for each of the jobs to use a separate artifact. The "arduino/report-size-deltas" action is configured to
    recognize these multiple artifacts by a regular expression that matches against a standardized prefix on the artifact
    names.
    per1234 committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    8e9f848 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #548 from arduino/dependabot/github_actions/action…

    …s/upload-artifact-4
    
    Bump actions/upload-artifact from 3 to 4
    per1234 authored Oct 18, 2024
    Configuration menu
    Copy the full SHA
    c8c514c View commit details
    Browse the repository at this point in the history
Loading