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/arduino-examples
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.10.0
Choose a base ref
...
head repository: arduino/arduino-examples
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.10.1
Choose a head ref
  • 11 commits
  • 6 files changed
  • 3 contributors

Commits on Oct 12, 2022

  1. Bump geekyeggo/delete-artifact from 1 to 2

    Bumps [geekyeggo/delete-artifact](https://github.com/geekyeggo/delete-artifact) from 1 to 2.
    - [Release notes](https://github.com/geekyeggo/delete-artifact/releases)
    - [Commits](GeekyEggo/delete-artifact@v1...v2)
    
    ---
    updated-dependencies:
    - dependency-name: geekyeggo/delete-artifact
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Oct 12, 2022
    Copy the full SHA
    dfbe14a View commit details
  2. Merge pull request #59 from arduino/dependabot/github_actions/geekyeg…

    …go/delete-artifact-2
    
    Bump geekyeggo/delete-artifact from 1 to 2
    per1234 authored Oct 12, 2022
    Copy the full SHA
    41d7959 View commit details

Commits on Oct 24, 2022

  1. Bump carlosperate/download-file-action from 1 to 2

    Bumps [carlosperate/download-file-action](https://github.com/carlosperate/download-file-action) from 1 to 2.
    - [Release notes](https://github.com/carlosperate/download-file-action/releases)
    - [Commits](carlosperate/download-file-action@v1...v2)
    
    ---
    updated-dependencies:
    - dependency-name: carlosperate/download-file-action
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Oct 24, 2022
    Copy the full SHA
    c6d8f98 View commit details

Commits on Oct 25, 2022

  1. Merge pull request #60 from arduino/dependabot/github_actions/carlosp…

    …erate/download-file-action-2
    
    Bump carlosperate/download-file-action from 1 to 2
    per1234 authored Oct 25, 2022
    Copy the full SHA
    507d2a0 View commit details

Commits on Dec 27, 2022

  1. Copy the full SHA
    5a1bd3f View commit details
  2. Merge pull request #61 from THE-Spellchecker/main

    Corrected Comment in AnalogInput.ino
    per1234 authored Dec 27, 2022
    Copy the full SHA
    eb709fa View commit details

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] <[email protected]>
    dependabot[bot] authored Sep 4, 2023
    Copy the full SHA
    74be767 View commit details
  2. Merge pull request #65 from arduino/dependabot/github_actions/actions…

    …/checkout-4
    
    Bump actions/checkout from 3 to 4
    per1234 authored Sep 4, 2023
    Copy the full SHA
    fdbfc5b View commit details

Commits on Dec 30, 2023

  1. Add new boards to sketch compilation workflow

    The repository infrastructure includes a GitHub Actions workflow that compiles the examples for significant official
    Arduino boards. This provides a automated "smoke test" to easily get some basic validation of the sketches.
    
    Since the time the workflow was created, several new official boards have been released. Some of these boards are
    significantly different from the boards the workflow was compiling the examples for, which meant the workflow was not
    providing adequate coverage for the new boards.
    
    The workflow is hereby configured to also compile the examples for the significant new boards.
    per1234 committed Dec 30, 2023
    Copy the full SHA
    fdbc6ba View commit details
  2. Use distinctive names for SPI pin macros to avoid collisions

    The "ArduinoISP" example allows the user to define arbitrary pins for use as the signal pins on the programmer board.
    This is done via a set of macros.
    
    Previously, very generic names were used for these macros. This resulted in a name collision. The core for the Renesas
    boards also defines macros of the same name. Despite what the names might lead us to believe, the values of these macros
    in the core do not match the Arduino pin numbers of the SPI bus. The result was that, with the default configuration of
    the sketch where the USE_OLD_STYLE_WIRING macro is not defined, the sketch uses the values of the macros defined by the
    core as the SPI signal pins instead of the standard SPI signal pins as the user would expect when the sketch is running
    on an UNO R4 Minima, UNO R4 WiFi, or Portenta C33 board. This causes operations using the programmer to fail with an
    error like:
    
    avrdude: stk500_recv(): programmer is not responding avrdude: stk500_getsync() attempt 1 of 10: not in sync: resp=0x03
    [...]
    
    The name collision is avoided by adding a "namespace" prefix to the macro names.
    per1234 committed Dec 30, 2023
    Copy the full SHA
    9806d58 View commit details
  3. Merge pull request #71 from per1234/spi-macro-namespace

    Use distinctive names for SPI pin macros to avoid collisions
    per1234 authored Dec 30, 2023
    Copy the full SHA
    1d7b1fb View commit details
Loading