-
Notifications
You must be signed in to change notification settings - Fork 7.6k
feat(boards): Add ESP32-2432S028R board support #10235
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 2 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
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,4 @@ | ||
# Name, Type, SubType, Offset, Size, Flags | ||
nvs, data, nvs, 0x9000, 0x5000, | ||
factory, app, factory, 0x10000, 0x3F0000, | ||
|
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,6 @@ | ||
# Name, Type, SubType, Offset, Size, Flags | ||
nvs, data, nvs, 0x9000, 0x5000, | ||
otadata, data, ota, 0xE000, 0x2000, | ||
app0, app, ota_0, 0x10000, 0x1F0000, | ||
app1, app, ota_1, 0x200000, 0x1F0000, | ||
coredump, data, coredump, 0x3F0000, 0x10000, |
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,85 @@ | ||
|
||
#ifndef Pins_Arduino_h | ||
#define Pins_Arduino_h | ||
|
||
#include <stdint.h> | ||
#include "soc/soc_caps.h" | ||
|
||
static const uint8_t TX = 1; | ||
static const uint8_t RX = 3; | ||
|
||
static const uint8_t D35 = 35; | ||
static const uint8_t D22 = 22; | ||
static const uint8_t D27 = 27; | ||
static const uint8_t D21 = 21; | ||
|
||
static const uint8_t A6 = 34; | ||
static const uint8_t A17 = 27; | ||
|
||
static const uint8_t T7 = 27; | ||
|
||
static const uint8_t SDA = 21; | ||
static const uint8_t SCL = 22; | ||
|
||
static const uint8_t SS = 5; | ||
static const uint8_t MOSI = 23; | ||
static const uint8_t MISO = 19; | ||
static const uint8_t SCK = 18; | ||
|
||
#define CYD_TP_IRQ 36 | ||
#define CYD_TP_MOSI 32 | ||
#define CYD_TP_MISO 39 | ||
#define CYD_TP_CLK 25 | ||
#define CYD_TP_CS 33 | ||
#define CYD_TP_DIN CYD_TP_MOSI | ||
#define CYD_TP_OUT CYD_TP_MOSI | ||
#define CYD_TP_SPI_BUS VSPI | ||
|
||
#define CYD_TFT_DC 2 | ||
#define CYD_TFT_MISO 12 | ||
#define CYD_TFT_MOSI 13 | ||
#define CYD_TFT_SCK 14 | ||
#define CYD_TFT_CS 15 | ||
#define CYD_TFT_RS CYD_TFT_DC | ||
#define CYD_TFT_SDO CYD_TFT_MISO | ||
#define CYD_TFT_SDI CYD_TFT_MOSI | ||
#define CYD_TFT_SPI_BUS HSPI | ||
|
||
#define CYD_TFT_WIDTH 320 | ||
#define CYD_TFT_HEIGHT 240 | ||
#define CYD_SCREEN_WIDTH CYD_TFT_WIDTH | ||
#define CYD_SCREEN_HEIGHT CYD_TFT_HEIGHT | ||
|
||
#define CYD_TFT_BL 21 | ||
#define CYD_TFT_BL_ENABLE ( ( pinMode( CYD_TFT_BL, OUTPUT ) ) ) | ||
#define CYD_TFT_BL_OFF ( digitalWrite( CYD_TFT_BL, 0 ) ) | ||
#define CYD_TFT_BL_ON ( digitalWrite( CYD_TFT_BL, 1 ) ) | ||
|
||
#define CYD_LED_RED 4 | ||
#define CYD_LED_GREEN 16 | ||
#define CYD_LED_BLUE 17 | ||
|
||
#define CYD_AUDIO_OUT 26 | ||
|
||
#define CYD_USER_BUTTON 0 | ||
|
||
#define CYD_SD_SS 5 | ||
#define CYD_SD_MOSI 23 | ||
#define CYD_SD_MISO 19 | ||
#define CYD_SD_SCK 18 | ||
#define CYD_SD_SPI_BUS VSPI | ||
|
||
#define CYD_LDR 34 | ||
|
||
#define CYD_LED_RED_OFF ( digitalWrite( CYD_LED_RED, 1 ) ) | ||
#define CYD_LED_RED_ON ( digitalWrite( CYD_LED_RED, 0 ) ) | ||
#define CYD_LED_GREEN_OFF ( digitalWrite( CYD_LED_GREEN, 1 ) ) | ||
#define CYD_LED_GREEN_ON ( digitalWrite( CYD_LED_GREEN, 0 ) ) | ||
#define CYD_LED_BLUE_OFF ( digitalWrite( CYD_LED_BLUE, 1 ) ) | ||
#define CYD_LED_BLUE_ON ( digitalWrite( CYD_LED_BLUE, 0 ) ) | ||
#define CYD_LED_RGB_OFF CYD_LED_RED_OFF; CYD_LED_GREEN_OFF; CYD_LED_BLUE_OFF | ||
#define CYD_LED_RGB_ON CYD_LED_RED_ON; CYD_LED_GREEN_ON; CYD_LED_BLUE_ON | ||
#define CYD_LED_WHITE_OFF CYD_LED_RGB_OFF | ||
#define CYD_LED_WHITE_ON CYD_LED_RGB_ON | ||
|
||
#endif /* Pins_Arduino_h */ |
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,13 @@ | ||
|
||
#include "esp32-hal-gpio.h" | ||
#include "pins_arduino.h" | ||
|
||
extern "C" { | ||
// Initialize variant/board, called before setup() | ||
void initVariant( void ) { | ||
pinMode( CYD_LED_RED, OUTPUT ); | ||
pinMode( CYD_LED_GREEN, OUTPUT ); | ||
pinMode( CYD_LED_BLUE, OUTPUT ); | ||
CYD_LED_RGB_OFF; | ||
} | ||
} |
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.