-
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
179 additions
and
7 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,59 @@ | ||
{ | ||
"build": { | ||
"arduino":{ | ||
"ldscript": "esp32s3_out.ld", | ||
"partitions": "partitions-4MB-tinyuf2.csv" | ||
}, | ||
"core": "esp32", | ||
"extra_flags": [ | ||
"-DESP32S3_4M=1", | ||
"-DARDUINO_ADAFRUIT_FEATHER_ESP32S3", | ||
"-DARDUINO_USB_CDC_ON_BOOT=1", | ||
"-DARDUINO_RUNNING_CORE=1", | ||
"-DARDUINO_EVENT_RUNNING_CORE=1", | ||
"-DBOARD_HAS_PSRAM" | ||
], | ||
"f_cpu": "240000000L", | ||
"f_flash": "80000000L", | ||
"flash_mode": "qio", | ||
"hwids": [ | ||
[ | ||
"0x239A", | ||
"0x811B" | ||
], | ||
[ | ||
"0x239A", | ||
"0x011B" | ||
], | ||
[ | ||
"0x239A", | ||
"0x811C" | ||
] | ||
], | ||
"mcu": "esp32s3", | ||
"variant": "pinouts" | ||
}, | ||
"connectivity": [ | ||
"bluetooth", | ||
"wifi" | ||
], | ||
"debug": { | ||
"openocd_target": "esp32s3.cfg" | ||
}, | ||
"frameworks": [ | ||
"arduino", | ||
"espidf" | ||
], | ||
"name": "Adafruit Feather ESP32-S3 2MB PSRAM", | ||
"upload": { | ||
"flash_size": "4MB", | ||
"maximum_ram_size": 327680, | ||
"maximum_size": 4194304, | ||
"use_1200bps_touch": true, | ||
"wait_for_upload_port": true, | ||
"require_upload_port": true, | ||
"speed": 460800 | ||
}, | ||
"url": "https://www.adafruit.com/product/5477", | ||
"vendor": "Adafruit" | ||
} |
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
File renamed without changes.
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
File renamed without changes.
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,71 @@ | ||
#ifndef Pins_Arduino_h | ||
#define Pins_Arduino_h | ||
|
||
#include <stdint.h> | ||
#include "soc/soc_caps.h" | ||
|
||
#define USB_VID 0x239A | ||
#define USB_PID 0x811B | ||
#define USB_MANUFACTURER "Adafruit" | ||
#define USB_PRODUCT "Feather ESP32-S3" | ||
#define USB_SERIAL "" // Empty string for MAC adddress | ||
|
||
// User LED | ||
#define LED_BUILTIN 13 | ||
#define BUILTIN_LED LED_BUILTIN // backward compatibility | ||
|
||
// Neopixel | ||
#define PIN_NEOPIXEL 33 | ||
// RGB_BUILTIN and RGB_BRIGHTNESS can be used in new Arduino API neopixelWrite() and digitalWrite() for blinking | ||
#define RGB_BUILTIN (PIN_NEOPIXEL+SOC_GPIO_PIN_COUNT) | ||
#define RGB_BRIGHTNESS 64 | ||
|
||
#define NEOPIXEL_NUM 1 // number of neopixels | ||
#define NEOPIXEL_POWER 21 // power pin | ||
#define NEOPIXEL_POWER_ON HIGH // power pin state when on | ||
#define I2C_POWER 7 // I2C power pin | ||
#define PIN_I2C_POWER 7 // I2C power pin | ||
|
||
|
||
static const uint8_t TX = 39; | ||
static const uint8_t RX = 38; | ||
#define TX1 TX | ||
#define RX1 RX | ||
|
||
static const uint8_t SDA = 3; | ||
static const uint8_t SCL = 4; | ||
|
||
static const uint8_t SS = 42; | ||
static const uint8_t MOSI = 35; | ||
static const uint8_t SCK = 36; | ||
static const uint8_t MISO = 37; | ||
|
||
static const uint8_t A0 = 18; | ||
static const uint8_t A1 = 17; | ||
static const uint8_t A2 = 16; | ||
static const uint8_t A3 = 15; | ||
static const uint8_t A4 = 14; | ||
static const uint8_t A5 = 8; | ||
static const uint8_t A6 = 3; | ||
static const uint8_t A7 = 4; | ||
static const uint8_t A8 = 5; | ||
static const uint8_t A9 = 6; | ||
static const uint8_t A10 = 9; | ||
static const uint8_t A11 = 10; | ||
static const uint8_t A12 = 11; | ||
static const uint8_t A13 = 12; | ||
static const uint8_t A14 = 13; | ||
|
||
static const uint8_t T3 = 3; | ||
static const uint8_t T4 = 4; | ||
static const uint8_t T5 = 5; | ||
static const uint8_t T6 = 6; | ||
static const uint8_t T8 = 8; | ||
static const uint8_t T9 = 9; | ||
static const uint8_t T10 = 10; | ||
static const uint8_t T11 = 11; | ||
static const uint8_t T12 = 12; | ||
static const uint8_t T13 = 13; | ||
static const uint8_t T14 = 14; | ||
|
||
#endif /* Pins_Arduino_h */ |
File renamed without changes.
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,38 @@ | ||
#ifndef Pins_Arduino_h | ||
#define Pins_Arduino_h | ||
|
||
#include <stdint.h> | ||
|
||
#define HAS_3_BUTTONS | ||
|
||
static const uint8_t TX = 1; | ||
static const uint8_t RX = 3; | ||
|
||
static const uint8_t TXD2 = 33; | ||
static const uint8_t RXD2 = 32; | ||
|
||
static const uint8_t SDA = 32; | ||
static const uint8_t SCL = 33; | ||
|
||
static const uint8_t SS = 5; | ||
static const uint8_t MOSI = 15; | ||
static const uint8_t MISO = 36; | ||
static const uint8_t SCK = 13; | ||
|
||
static const uint8_t G9 = 9; | ||
static const uint8_t G10 = 10; | ||
static const uint8_t G37 = 37; | ||
static const uint8_t G39 = 39; | ||
static const uint8_t G32 = 32; | ||
static const uint8_t G33 = 33; | ||
static const uint8_t G26 = 26; | ||
static const uint8_t G36 = 36; | ||
static const uint8_t G0 = 0; | ||
|
||
static const uint8_t DAC1 = 25; | ||
static const uint8_t DAC2 = 26; | ||
|
||
static const uint8_t ADC1 = 35; | ||
static const uint8_t ADC2 = 36; | ||
|
||
#endif /* Pins_Arduino_h */ |
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