Skip to content

Commit aef13a3

Browse files
committed
Update README files for board variants and for bootloader board definitions
1 parent 77bf783 commit aef13a3

27 files changed

+893
-226
lines changed

bootloaders/zero/binaries/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ and chip combination has two bootloaders available:
2121
* SDCARD_AUTORUN_DISABLED is defined
2222
* Filename is: sam_ba_sdcard_$(BOARD_ID)_$(MCU)
2323

24+
Please see the appropriate board_definitions file to see which pins
25+
are used for the SD card. Note that the D51 uses different pins.
26+
2427

2528
## MattairTech Boards
2629

bootloaders/zero/board_definitions/board_definitions_Generic_D11C14A.h

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
/* If SDCARD_ENABLED is defined, then all SDCARD_SPI_* defines must also be set.
4646
* When setting SDCARD_SPI_PADx defines, consult the appropriate header file
4747
* from CMSIS-Atmel (ie: ~/arduino15/packages/MattairTech_Arduino/tools/CMSIS-
48-
* Atmel/1.0.0-mattairtech-1/CMSIS/Device/ATMEL/sam<d21|c21|l21|d11>/include/
48+
* Atmel/1.0.0-mattairtech-2/CMSIS/Device/ATMEL/sam<d21|d51|c21|l21|d11>/include/
4949
* <YOUR_CHIP>.h). SDCARD_SPI_PAD_SETTINGS values are in SDCard/diskio.h.
5050
* When using SDCARD_USE_PIN1 or SDCARD_USE_PIN2, the SPI peripheral and
5151
* associated pins are only initialized if either pin is active.
@@ -154,7 +154,7 @@
154154
* also be defined with the crystal frequency in Hertz. CLOCKCONFIG_INTERNAL
155155
* uses the DFLL in open-loop mode, except with the C21 which lacks a DFLL, so
156156
* the internal 48MHz RC oscillator is used instead. CLOCKCONFIG_INTERNAL_USB
157-
* can be defined for the D21, D11, or L21. It will also use the DFLL in
157+
* can be defined for the D21, D11, L21, or D51. It will also use the DFLL in
158158
* open-loop mode, except when connected to a USB port with data lines (and
159159
* not suspended), where it will calibrate against the USB SOF signal.
160160
*/
@@ -182,7 +182,9 @@
182182
*/
183183
//#define PLL_FAST_STARTUP
184184

185-
/* Master clock frequency (also Fcpu frequency) */
185+
/* Master clock frequency (also Fcpu frequency). With the D51,
186+
* this can be either 120000000ul or 48000000ul. See README.md.
187+
*/
186188
#define VARIANT_MCK (48000000ul)
187189

188190
/* The fine calibration value for DFLL open-loop mode is defined here.
@@ -207,8 +209,8 @@
207209
/* BOOT_USART_SERCOM_INSTANCE must be a single digit representing the SERCOM number.
208210
* See board_driver_serial.h for BOOT_USART_PAD_SETTINGS values. When setting
209211
* BOOT_USART_PADx defines, consult the appropriate header file from CMSIS-Atmel (ie:
210-
* ~/arduino15/packages/MattairTech_Arduino/tools/CMSIS-Atmel/1.0.0-mattairtech-1/
211-
* CMSIS/Device/ATMEL/sam<d21|c21|l21|d11>/include/<YOUR_CHIP>.h). Use PINMUX_UNUSED
212+
* ~/arduino15/packages/MattairTech_Arduino/tools/CMSIS-Atmel/1.0.0-mattairtech-2/
213+
* CMSIS/Device/ATMEL/sam<d21|d51|c21|l21|d11>/include/<YOUR_CHIP>.h). Use PINMUX_UNUSED
212214
* if not used. By default, this interface is not enabled (except with the C21).
213215
*/
214216
#define BOOT_USART_SERCOM_INSTANCE 0

bootloaders/zero/board_definitions/board_definitions_Generic_D11D14AM.h

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
/* If SDCARD_ENABLED is defined, then all SDCARD_SPI_* defines must also be set.
4646
* When setting SDCARD_SPI_PADx defines, consult the appropriate header file
4747
* from CMSIS-Atmel (ie: ~/arduino15/packages/MattairTech_Arduino/tools/CMSIS-
48-
* Atmel/1.0.0-mattairtech-1/CMSIS/Device/ATMEL/sam<d21|c21|l21|d11>/include/
48+
* Atmel/1.0.0-mattairtech-2/CMSIS/Device/ATMEL/sam<d21|d51|c21|l21|d11>/include/
4949
* <YOUR_CHIP>.h). SDCARD_SPI_PAD_SETTINGS values are in SDCard/diskio.h.
5050
* When using SDCARD_USE_PIN1 or SDCARD_USE_PIN2, the SPI peripheral and
5151
* associated pins are only initialized if either pin is active.
@@ -154,7 +154,7 @@
154154
* also be defined with the crystal frequency in Hertz. CLOCKCONFIG_INTERNAL
155155
* uses the DFLL in open-loop mode, except with the C21 which lacks a DFLL, so
156156
* the internal 48MHz RC oscillator is used instead. CLOCKCONFIG_INTERNAL_USB
157-
* can be defined for the D21, D11, or L21. It will also use the DFLL in
157+
* can be defined for the D21, D11, L21, or D51. It will also use the DFLL in
158158
* open-loop mode, except when connected to a USB port with data lines (and
159159
* not suspended), where it will calibrate against the USB SOF signal.
160160
*/
@@ -182,7 +182,9 @@
182182
*/
183183
//#define PLL_FAST_STARTUP
184184

185-
/* Master clock frequency (also Fcpu frequency) */
185+
/* Master clock frequency (also Fcpu frequency). With the D51,
186+
* this can be either 120000000ul or 48000000ul. See README.md.
187+
*/
186188
#define VARIANT_MCK (48000000ul)
187189

188190
/* The fine calibration value for DFLL open-loop mode is defined here.
@@ -207,8 +209,8 @@
207209
/* BOOT_USART_SERCOM_INSTANCE must be a single digit representing the SERCOM number.
208210
* See board_driver_serial.h for BOOT_USART_PAD_SETTINGS values. When setting
209211
* BOOT_USART_PADx defines, consult the appropriate header file from CMSIS-Atmel (ie:
210-
* ~/arduino15/packages/MattairTech_Arduino/tools/CMSIS-Atmel/1.0.0-mattairtech-1/
211-
* CMSIS/Device/ATMEL/sam<d21|c21|l21|d11>/include/<YOUR_CHIP>.h). Use PINMUX_UNUSED
212+
* ~/arduino15/packages/MattairTech_Arduino/tools/CMSIS-Atmel/1.0.0-mattairtech-2/
213+
* CMSIS/Device/ATMEL/sam<d21|d51|c21|l21|d11>/include/<YOUR_CHIP>.h). Use PINMUX_UNUSED
212214
* if not used. By default, this interface is not enabled (except with the C21).
213215
*/
214216
#define BOOT_USART_SERCOM_INSTANCE 0

bootloaders/zero/board_definitions/board_definitions_Generic_D11D14AS.h

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
/* If SDCARD_ENABLED is defined, then all SDCARD_SPI_* defines must also be set.
4646
* When setting SDCARD_SPI_PADx defines, consult the appropriate header file
4747
* from CMSIS-Atmel (ie: ~/arduino15/packages/MattairTech_Arduino/tools/CMSIS-
48-
* Atmel/1.0.0-mattairtech-1/CMSIS/Device/ATMEL/sam<d21|c21|l21|d11>/include/
48+
* Atmel/1.0.0-mattairtech-2/CMSIS/Device/ATMEL/sam<d21|d51|c21|l21|d11>/include/
4949
* <YOUR_CHIP>.h). SDCARD_SPI_PAD_SETTINGS values are in SDCard/diskio.h.
5050
* When using SDCARD_USE_PIN1 or SDCARD_USE_PIN2, the SPI peripheral and
5151
* associated pins are only initialized if either pin is active.
@@ -154,7 +154,7 @@
154154
* also be defined with the crystal frequency in Hertz. CLOCKCONFIG_INTERNAL
155155
* uses the DFLL in open-loop mode, except with the C21 which lacks a DFLL, so
156156
* the internal 48MHz RC oscillator is used instead. CLOCKCONFIG_INTERNAL_USB
157-
* can be defined for the D21, D11, or L21. It will also use the DFLL in
157+
* can be defined for the D21, D11, L21, or D51. It will also use the DFLL in
158158
* open-loop mode, except when connected to a USB port with data lines (and
159159
* not suspended), where it will calibrate against the USB SOF signal.
160160
*/
@@ -182,7 +182,9 @@
182182
*/
183183
//#define PLL_FAST_STARTUP
184184

185-
/* Master clock frequency (also Fcpu frequency) */
185+
/* Master clock frequency (also Fcpu frequency). With the D51,
186+
* this can be either 120000000ul or 48000000ul. See README.md.
187+
*/
186188
#define VARIANT_MCK (48000000ul)
187189

188190
/* The fine calibration value for DFLL open-loop mode is defined here.
@@ -207,8 +209,8 @@
207209
/* BOOT_USART_SERCOM_INSTANCE must be a single digit representing the SERCOM number.
208210
* See board_driver_serial.h for BOOT_USART_PAD_SETTINGS values. When setting
209211
* BOOT_USART_PADx defines, consult the appropriate header file from CMSIS-Atmel (ie:
210-
* ~/arduino15/packages/MattairTech_Arduino/tools/CMSIS-Atmel/1.0.0-mattairtech-1/
211-
* CMSIS/Device/ATMEL/sam<d21|c21|l21|d11>/include/<YOUR_CHIP>.h). Use PINMUX_UNUSED
212+
* ~/arduino15/packages/MattairTech_Arduino/tools/CMSIS-Atmel/1.0.0-mattairtech-2/
213+
* CMSIS/Device/ATMEL/sam<d21|d51|c21|l21|d11>/include/<YOUR_CHIP>.h). Use PINMUX_UNUSED
212214
* if not used. By default, this interface is not enabled (except with the C21).
213215
*/
214216
#define BOOT_USART_SERCOM_INSTANCE 0

bootloaders/zero/board_definitions/board_definitions_Generic_x21J.h renamed to bootloaders/zero/board_definitions/board_definitions_Generic_D51N.h

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -45,17 +45,17 @@
4545
/* If SDCARD_ENABLED is defined, then all SDCARD_SPI_* defines must also be set.
4646
* When setting SDCARD_SPI_PADx defines, consult the appropriate header file
4747
* from CMSIS-Atmel (ie: ~/arduino15/packages/MattairTech_Arduino/tools/CMSIS-
48-
* Atmel/1.0.0-mattairtech-1/CMSIS/Device/ATMEL/sam<d21|c21|l21|d11>/include/
48+
* Atmel/1.0.0-mattairtech-2/CMSIS/Device/ATMEL/sam<d21|d51|c21|l21|d11>/include/
4949
* <YOUR_CHIP>.h). SDCARD_SPI_PAD_SETTINGS values are in SDCard/diskio.h.
5050
* When using SDCARD_USE_PIN1 or SDCARD_USE_PIN2, the SPI peripheral and
5151
* associated pins are only initialized if either pin is active.
5252
*/
53-
#define SDCARD_SPI_SERCOM_INSTANCE 3
53+
#define SDCARD_SPI_SERCOM_INSTANCE 1
5454
#define SDCARD_SPI_PAD_SETTINGS SPI_RX_PAD0_TX_PAD2_SCK_PAD3
55-
#define SDCARD_SPI_PAD0 PINMUX_PA22C_SERCOM3_PAD0
55+
#define SDCARD_SPI_PAD0 PINMUX_PA16C_SERCOM1_PAD0
5656
#define SDCARD_SPI_PAD1 PINMUX_UNUSED
57-
#define SDCARD_SPI_PAD2 PINMUX_PA18D_SERCOM3_PAD2
58-
#define SDCARD_SPI_PAD3 PINMUX_PA19D_SERCOM3_PAD3
57+
#define SDCARD_SPI_PAD2 PINMUX_PA18C_SERCOM1_PAD2
58+
#define SDCARD_SPI_PAD3 PINMUX_PA19C_SERCOM1_PAD3
5959

6060
/* If SDCARD_ENABLED is defined, then SDCARD_SPI_CS_PORT and SDCARD_SPI_CS_PIN
6161
* must also be defined. PORT can be 0 (Port A) or 1 (Port B).
@@ -160,7 +160,7 @@
160160
* also be defined with the crystal frequency in Hertz. CLOCKCONFIG_INTERNAL
161161
* uses the DFLL in open-loop mode, except with the C21 which lacks a DFLL, so
162162
* the internal 48MHz RC oscillator is used instead. CLOCKCONFIG_INTERNAL_USB
163-
* can be defined for the D21, D11, or L21. It will also use the DFLL in
163+
* can be defined for the D21, D11, L21, or D51. It will also use the DFLL in
164164
* open-loop mode, except when connected to a USB port with data lines (and
165165
* not suspended), where it will calibrate against the USB SOF signal.
166166
*/
@@ -192,8 +192,11 @@
192192
*/
193193
//#define PLL_FAST_STARTUP
194194

195-
/* Master clock frequency (also Fcpu frequency) */
196-
#define VARIANT_MCK (48000000ul)
195+
/* Master clock frequency (also Fcpu frequency). With the D51,
196+
* this can be either 120000000ul or 48000000ul. See README.md.
197+
*/
198+
#define VARIANT_MCK (120000000ul)
199+
//#define VARIANT_MCK (48000000ul)
197200

198201
/* The fine calibration value for DFLL open-loop mode is defined here.
199202
* The coarse calibration value is loaded from NVM OTP (factory calibration values).
@@ -206,7 +209,7 @@
206209
*/
207210
#define USB_VENDOR_STRINGS_ENABLED
208211
#define STRING_MANUFACTURER "MattairTech LLC"
209-
#define STRING_PRODUCT "Generic SAMx21J"
212+
#define STRING_PRODUCT "Generic SAMD51N"
210213

211214
/* If USB CDC is used, then the USB vendor ID (VID) and product ID (PID) must be set. */
212215
#define USB_VID_HIGH 0x16
@@ -217,8 +220,8 @@
217220
/* BOOT_USART_SERCOM_INSTANCE must be a single digit representing the SERCOM number.
218221
* See board_driver_serial.h for BOOT_USART_PAD_SETTINGS values. When setting
219222
* BOOT_USART_PADx defines, consult the appropriate header file from CMSIS-Atmel (ie:
220-
* ~/arduino15/packages/MattairTech_Arduino/tools/CMSIS-Atmel/1.0.0-mattairtech-1/
221-
* CMSIS/Device/ATMEL/sam<d21|c21|l21|d11>/include/<YOUR_CHIP>.h). Use PINMUX_UNUSED
223+
* ~/arduino15/packages/MattairTech_Arduino/tools/CMSIS-Atmel/1.0.0-mattairtech-2/
224+
* CMSIS/Device/ATMEL/sam<d21|d51|c21|l21|d11>/include/<YOUR_CHIP>.h). Use PINMUX_UNUSED
222225
* if not used. By default, this interface is not enabled (except with the C21).
223226
*/
224227
#define BOOT_USART_SERCOM_INSTANCE 0

bootloaders/zero/board_definitions/board_definitions_Generic_x21G.h renamed to bootloaders/zero/board_definitions/board_definitions_Generic_D51P.h

Lines changed: 18 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -45,17 +45,17 @@
4545
/* If SDCARD_ENABLED is defined, then all SDCARD_SPI_* defines must also be set.
4646
* When setting SDCARD_SPI_PADx defines, consult the appropriate header file
4747
* from CMSIS-Atmel (ie: ~/arduino15/packages/MattairTech_Arduino/tools/CMSIS-
48-
* Atmel/1.0.0-mattairtech-1/CMSIS/Device/ATMEL/sam<d21|c21|l21|d11>/include/
48+
* Atmel/1.0.0-mattairtech-2/CMSIS/Device/ATMEL/sam<d21|d51|c21|l21|d11>/include/
4949
* <YOUR_CHIP>.h). SDCARD_SPI_PAD_SETTINGS values are in SDCard/diskio.h.
5050
* When using SDCARD_USE_PIN1 or SDCARD_USE_PIN2, the SPI peripheral and
5151
* associated pins are only initialized if either pin is active.
5252
*/
53-
#define SDCARD_SPI_SERCOM_INSTANCE 3
53+
#define SDCARD_SPI_SERCOM_INSTANCE 1
5454
#define SDCARD_SPI_PAD_SETTINGS SPI_RX_PAD0_TX_PAD2_SCK_PAD3
55-
#define SDCARD_SPI_PAD0 PINMUX_PA22C_SERCOM3_PAD0
55+
#define SDCARD_SPI_PAD0 PINMUX_PA16C_SERCOM1_PAD0
5656
#define SDCARD_SPI_PAD1 PINMUX_UNUSED
57-
#define SDCARD_SPI_PAD2 PINMUX_PA18D_SERCOM3_PAD2
58-
#define SDCARD_SPI_PAD3 PINMUX_PA19D_SERCOM3_PAD3
57+
#define SDCARD_SPI_PAD2 PINMUX_PA18C_SERCOM1_PAD2
58+
#define SDCARD_SPI_PAD3 PINMUX_PA19C_SERCOM1_PAD3
5959

6060
/* If SDCARD_ENABLED is defined, then SDCARD_SPI_CS_PORT and SDCARD_SPI_CS_PIN
6161
* must also be defined. PORT can be 0 (Port A) or 1 (Port B).
@@ -160,7 +160,7 @@
160160
* also be defined with the crystal frequency in Hertz. CLOCKCONFIG_INTERNAL
161161
* uses the DFLL in open-loop mode, except with the C21 which lacks a DFLL, so
162162
* the internal 48MHz RC oscillator is used instead. CLOCKCONFIG_INTERNAL_USB
163-
* can be defined for the D21, D11, or L21. It will also use the DFLL in
163+
* can be defined for the D21, D11, L21, or D51. It will also use the DFLL in
164164
* open-loop mode, except when connected to a USB port with data lines (and
165165
* not suspended), where it will calibrate against the USB SOF signal.
166166
*/
@@ -192,8 +192,11 @@
192192
*/
193193
//#define PLL_FAST_STARTUP
194194

195-
/* Master clock frequency (also Fcpu frequency) */
196-
#define VARIANT_MCK (48000000ul)
195+
/* Master clock frequency (also Fcpu frequency). With the D51,
196+
* this can be either 120000000ul or 48000000ul. See README.md.
197+
*/
198+
#define VARIANT_MCK (120000000ul)
199+
//#define VARIANT_MCK (48000000ul)
197200

198201
/* The fine calibration value for DFLL open-loop mode is defined here.
199202
* The coarse calibration value is loaded from NVM OTP (factory calibration values).
@@ -206,7 +209,7 @@
206209
*/
207210
#define USB_VENDOR_STRINGS_ENABLED
208211
#define STRING_MANUFACTURER "MattairTech LLC"
209-
#define STRING_PRODUCT "Generic SAMx21G"
212+
#define STRING_PRODUCT "Generic SAMD51P"
210213

211214
/* If USB CDC is used, then the USB vendor ID (VID) and product ID (PID) must be set. */
212215
#define USB_VID_HIGH 0x16
@@ -217,8 +220,8 @@
217220
/* BOOT_USART_SERCOM_INSTANCE must be a single digit representing the SERCOM number.
218221
* See board_driver_serial.h for BOOT_USART_PAD_SETTINGS values. When setting
219222
* BOOT_USART_PADx defines, consult the appropriate header file from CMSIS-Atmel (ie:
220-
* ~/arduino15/packages/MattairTech_Arduino/tools/CMSIS-Atmel/1.0.0-mattairtech-1/
221-
* CMSIS/Device/ATMEL/sam<d21|c21|l21|d11>/include/<YOUR_CHIP>.h). Use PINMUX_UNUSED
223+
* ~/arduino15/packages/MattairTech_Arduino/tools/CMSIS-Atmel/1.0.0-mattairtech-2/
224+
* CMSIS/Device/ATMEL/sam<d21|d51|c21|l21|d11>/include/<YOUR_CHIP>.h). Use PINMUX_UNUSED
222225
* if not used. By default, this interface is not enabled (except with the C21).
223226
*/
224227
#define BOOT_USART_SERCOM_INSTANCE 0
@@ -272,12 +275,12 @@
272275
//#define BOARD_LED_POLARITY LED_POLARITY_HIGH_ON
273276
#endif
274277

275-
//#define BOARD_LEDRX_PORT (0)
276-
//#define BOARD_LEDRX_PIN (6)
278+
//#define BOARD_LEDRX_PORT (1)
279+
//#define BOARD_LEDRX_PIN (2)
277280
//#define BOARD_LEDRX_POLARITY LED_POLARITY_HIGH_ON
278281

279-
//#define BOARD_LEDTX_PORT (0)
280-
//#define BOARD_LEDTX_PIN (6)
282+
//#define BOARD_LEDTX_PORT (1)
283+
//#define BOARD_LEDTX_PIN (2)
281284
//#define BOARD_LEDTX_POLARITY LED_POLARITY_HIGH_ON
282285

283286
#endif // _BOARD_DEFINITIONS_H_

bootloaders/zero/board_definitions/board_definitions_Generic_x21E.h

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
/* If SDCARD_ENABLED is defined, then all SDCARD_SPI_* defines must also be set.
4646
* When setting SDCARD_SPI_PADx defines, consult the appropriate header file
4747
* from CMSIS-Atmel (ie: ~/arduino15/packages/MattairTech_Arduino/tools/CMSIS-
48-
* Atmel/1.0.0-mattairtech-1/CMSIS/Device/ATMEL/sam<d21|c21|l21|d11>/include/
48+
* Atmel/1.0.0-mattairtech-2/CMSIS/Device/ATMEL/sam<d21|d51|c21|l21|d11>/include/
4949
* <YOUR_CHIP>.h). SDCARD_SPI_PAD_SETTINGS values are in SDCard/diskio.h.
5050
* When using SDCARD_USE_PIN1 or SDCARD_USE_PIN2, the SPI peripheral and
5151
* associated pins are only initialized if either pin is active.
@@ -160,7 +160,7 @@
160160
* also be defined with the crystal frequency in Hertz. CLOCKCONFIG_INTERNAL
161161
* uses the DFLL in open-loop mode, except with the C21 which lacks a DFLL, so
162162
* the internal 48MHz RC oscillator is used instead. CLOCKCONFIG_INTERNAL_USB
163-
* can be defined for the D21, D11, or L21. It will also use the DFLL in
163+
* can be defined for the D21, D11, L21, or D51. It will also use the DFLL in
164164
* open-loop mode, except when connected to a USB port with data lines (and
165165
* not suspended), where it will calibrate against the USB SOF signal.
166166
*/
@@ -192,7 +192,9 @@
192192
*/
193193
//#define PLL_FAST_STARTUP
194194

195-
/* Master clock frequency (also Fcpu frequency) */
195+
/* Master clock frequency (also Fcpu frequency). With the D51,
196+
* this can be either 120000000ul or 48000000ul. See README.md.
197+
*/
196198
#define VARIANT_MCK (48000000ul)
197199

198200
/* The fine calibration value for DFLL open-loop mode is defined here.
@@ -217,8 +219,8 @@
217219
/* BOOT_USART_SERCOM_INSTANCE must be a single digit representing the SERCOM number.
218220
* See board_driver_serial.h for BOOT_USART_PAD_SETTINGS values. When setting
219221
* BOOT_USART_PADx defines, consult the appropriate header file from CMSIS-Atmel (ie:
220-
* ~/arduino15/packages/MattairTech_Arduino/tools/CMSIS-Atmel/1.0.0-mattairtech-1/
221-
* CMSIS/Device/ATMEL/sam<d21|c21|l21|d11>/include/<YOUR_CHIP>.h). Use PINMUX_UNUSED
222+
* ~/arduino15/packages/MattairTech_Arduino/tools/CMSIS-Atmel/1.0.0-mattairtech-2/
223+
* CMSIS/Device/ATMEL/sam<d21|d51|c21|l21|d11>/include/<YOUR_CHIP>.h). Use PINMUX_UNUSED
222224
* if not used. By default, this interface is not enabled (except with the C21).
223225
*/
224226
#define BOOT_USART_SERCOM_INSTANCE 0

0 commit comments

Comments
 (0)