-
Notifications
You must be signed in to change notification settings - Fork 7.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(board): Add Alfredo NoU3 (#10134)
* feat(board): Add Alfredo NoU3 Add board support for Alfredo Systems NoU3. https://www.alfredosys.com/products/alfredo-nou3/ * fix(board): added I2C and SS pins to alfredo nou3 * fix(board): set SPI and I2C pin defs to -1 * ci(pre-commit): Apply automatic fixes --------- Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com>
- Loading branch information
1 parent
124c214
commit a7399e2
Showing
2 changed files
with
193 additions
and
0 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
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#ifndef Pins_Arduino_h | ||
#define Pins_Arduino_h | ||
|
||
#define USB_VID 0xAFD0 | ||
#define USB_PID 0x0003 | ||
#define USB_MANUFACTURER "Alfredo" | ||
#define USB_PRODUCT "NoU3" | ||
#define USB_SERIAL "" // Empty string for MAC adddress | ||
|
||
// User LED | ||
#define LED_BUILTIN 45 | ||
#define BUILTIN_LED LED_BUILTIN // backward compatibility | ||
|
||
//static const uint8_t TX = 39; | ||
//static const uint8_t RX = 40; | ||
//#define TX1 TX | ||
//#define RX1 RX | ||
|
||
static const uint8_t SDA = -1; | ||
static const uint8_t SCL = -1; | ||
|
||
static const uint8_t SS = -1; | ||
static const uint8_t MOSI = -1; | ||
static const uint8_t SCK = -1; | ||
static const uint8_t MISO = -1; | ||
|
||
#endif /* Pins_Arduino_h */ |