Skip to content

Commit 00a0970

Browse files
committed
feat(devboard): Add support for Seeed Studio XIAO SAMD21 (#27)
CRSF for Arduino is fully compatible with the Seeed Studio XIAO SAMD21 development board. PlatformIO users can select this board in the `project.ini` file as `seeed_xiao`. Arduino IDE users can select this board from the Boards Manager (provided support for this has been added to the Arduino IDE ahead of time).
1 parent f9f5a1f commit 00a0970

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

examples/channels/channels.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* @author Cassandra "ZZ Cat" Robinson ([email protected])
44
* @brief This example sketch shows how to receive RC channels from a CRSF receiver using the CRSF for Arduino library.
55
* @version 0.4.0
6-
* @date 2023-04-25
6+
* @date 2023-07-17
77
*
88
* @copyright Copyright (c) 2023, Cassandra "ZZ Cat" Robinson. All rights reserved.
99
*

src/CRSFforArduino.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* @author Cassandra "ZZ Cat" Robinson ([email protected])
44
* @brief Top level header for CRSF for Arduino, to help with Arduino IDE compatibility.
55
* @version 0.4.0
6-
* @date 2023-04-25
6+
* @date 2023-07-17
77
*
88
* @copyright Copyright (c) 2023, Cassandra "ZZ Cat" Robinson. All rights reserved.
99
*

src/lib/CRSFforArduino/CRSFforArduino.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* @author Cassandra "ZZ Cat" Robinson ([email protected])
44
* @brief CRSF for Arduino facilitates the use of ExpressLRS RC receivers in Arduino projects.
55
* @version 0.4.0
6-
* @date 2023-04-25
6+
* @date 2023-07-17
77
*
88
* @copyright Copyright (c) 2023, Cassandra "ZZ Cat" Robinson. All rights reserved.
99
*

src/lib/CRSFforArduino/CRSFforArduino.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* @author Cassandra "ZZ Cat" Robinson ([email protected])
44
* @brief CRSF for Arduino facilitates the use of ExpressLRS RC receivers in Arduino projects.
55
* @version 0.4.0
6-
* @date 2023-04-25
6+
* @date 2023-07-17
77
*
88
* @copyright Copyright (c) 2023, Cassandra "ZZ Cat" Robinson. All rights reserved.
99
*

src/lib/CompatibilityTable/CompatibilityTable.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/**
22
* @file CompatibilityTable.h
33
* @author Cassandra "ZZ Cat" Robinson ([email protected])
4-
* @brief This compatibility table is used to determine if the target development boat is compatible with CRSF for Arduino.
4+
* @brief Compatibility Table is used to determine if the current device is compatible with CRSF for Arduino.
55
* @version 0.4.0
6-
* @date 2023-04-25
6+
* @date 2023-07-17
77
*
88
* @copyright Copyright (c) 2023, Cassandra "ZZ Cat" Robinson. All rights reserved.
99
*

src/lib/CompatibilityTable/CompatibilityTable.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/**
22
* @file CompatibilityTable.h
33
* @author Cassandra "ZZ Cat" Robinson ([email protected])
4-
* @brief This compatibility table is used to determine if the target development boat is compatible with CRSF for Arduino.
4+
* @brief Compatibility Table is used to determine if the current device is compatible with CRSF for Arduino.
55
* @version 0.4.0
6-
* @date 2023-04-25
6+
* @date 2023-07-17
77
*
88
* @copyright Copyright (c) 2023, Cassandra "ZZ Cat" Robinson. All rights reserved.
99
*

src/src/main_rc.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* @author Cassandra "ZZ Cat" Robinson ([email protected])
44
* @brief This file demonstrates the full capabilities of CRSF for Arduino.
55
* @version 0.4.0
6-
* @date 2023-04-25
6+
* @date 2023-07-17
77
*
88
* @copyright Copyright (c) 2023, Cassandra "ZZ Cat" Robinson. All rights reserved.
99
*

0 commit comments

Comments
 (0)