-
-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix compile-muxto with Fab_SAM_Arduino:[email protected]
- Loading branch information
Showing
1 changed file
with
9 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,17 +32,19 @@ jobs: | |
board: | ||
- fqbn: arduino:samd:muxto:float=default,config=enabled,clock=internal_usb,timer=timer_732Hz,bootloader=4kb,serial=two_uart,usb=cdc | ||
platforms: | | ||
# Install MattairTech_Arduino:samd via Boards Manager for the toolchain | ||
- name: MattairTech_Arduino:samd | ||
source-url: https://www.mattairtech.com/software/arduino/package_MattairTech_index.json | ||
# This needs to match with the version of MattairTech_Arduino:samd the Arduino fork is based on in order to get the right tool versions | ||
version: 1.6.17 | ||
# Install Fab_SAM_Arduino:samd via Boards Manager for the toolchain | ||
- name: Fab_SAM_Arduino:samd | ||
source-url: https://raw.githubusercontent.com/qbolsee/ArduinoCore-fab-sam/master/json/package_Fab_SAM_index.json | ||
# Originally, we installed MattairTech_Arduino:[email protected] to get the right tool versions because the Arduino fork is based on it. | ||
# However, MattairTech_Arduino:samd is no longer available. | ||
# So we use its successor, Fab_SAM_Arduino:samd, and modify the Arduino fork to work with 1.12.0 | ||
version: 1.12.0 | ||
# Install officila samd version for compiler support | ||
- name: arduino:samd | ||
# Install the platform with MuxTO support | ||
- name: arduino:samd | ||
source-url: https://github.com/arduino/ArduinoCore-samd.git | ||
version: muxto | ||
source-url: https://github.com/pazeshun/ArduinoCore-samd.git | ||
version: muxto-fab-sam | ||
steps: | ||
- name: Set environment variables | ||
|