-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Update of Boards.txt & variants - Adding CYObot board - 3rd party board #10947
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
38d1fa0
Adding CYObot board - 3rd party board
mhpham23 0298d67
feat(cyobot): adding cyobot_v2_esp32s3 board
mhpham23 5dab61d
fix(cyobot_v2_esp32s3): fix variant name
mhpham23 cbd0f16
Merge branch 'master' into master
mhpham23 1249195
fix(boards.txt): fix name of CYOBot board
mhpham23 9449af0
Merge branch 'master' of https://github.com/mhpham23/arduino-esp32
mhpham23 1fdc989
fix(CYOBot): fix boards.txt & pin_arduino.h
mhpham23 13a1df6
Merge branch 'master' into master
mhpham23 a4f8894
fix(pins_arduino.h): capitalize name
mhpham23 7ac185b
ci(pre-commit): Apply automatic fixes
pre-commit-ci-lite[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,52 @@ | ||
#ifndef Pins_Arduino_h | ||
#define Pins_Arduino_h | ||
|
||
#include <stdint.h> | ||
|
||
#define USB_MANUFACTURER "CYOBot" | ||
#define USB_PRODUCT "CYOBrain ESP32S3" | ||
#define USB_SERIAL "" // Empty string for MAC address | ||
|
||
static const uint8_t BUTTON0 = 4; | ||
static const uint8_t BUTTON1 = 38; | ||
static const uint8_t LED = 24; | ||
|
||
mhpham23 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
static const uint8_t BAT_MEAS = 6; | ||
static const uint8_t CHAR_DET = 23; | ||
|
||
static const uint8_t NEO_BASE = 7; | ||
static const uint8_t NEO_BRAIN = 15; | ||
|
||
static const uint8_t I2S0_MCLK = 16; | ||
static const uint8_t I2S0_DSDIN = 8; | ||
static const uint8_t I2S0_SCLK = 9; | ||
static const uint8_t I2S0_LRCK = 45; | ||
|
||
static const uint8_t SDA = 17; | ||
static const uint8_t SCL = 18; | ||
|
||
static const uint8_t SS = 5; | ||
static const uint8_t MOSI = 2; | ||
static const uint8_t MISO = 42; | ||
static const uint8_t SCK = 41; | ||
|
||
static const uint8_t ENCODER1_A = 39; | ||
static const uint8_t ENCODER1_B = 40; | ||
static const uint8_t ENCODER2_B = 19; | ||
static const uint8_t ENCODER2_A = 20; | ||
|
||
static const uint8_t UART1_RXD = 3; | ||
static const uint8_t UART1_TXD = 1; | ||
|
||
static const uint8_t GPIO46 = 46; | ||
static const uint8_t ESP_IO0 = 0; | ||
|
||
static const uint8_t SD_OUT = 10; | ||
static const uint8_t SD_SPI_MOSI = 11; | ||
static const uint8_t SD_SPI_CLK = 12; | ||
static const uint8_t SD_SPI_MISO = 13; | ||
static const uint8_t SD_SPI_CS = 14; | ||
|
||
static const uint8_t PA_CTRL = 25; | ||
|
||
#endif /* Pins_Arduino_h */ |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.