Skip to content

Commit

Permalink
Added SparkFun ESP32 Thing Plus board (#4224)
Browse files Browse the repository at this point in the history
  • Loading branch information
awende authored Oct 1, 2020
1 parent 9b2ae12 commit 837cc3d
Show file tree
Hide file tree
Showing 2 changed files with 125 additions and 0 deletions.
64 changes: 64 additions & 0 deletions boards.txt
Original file line number Diff line number Diff line change
Expand Up @@ -784,6 +784,70 @@ esp32thing.menu.DebugLevel.debug.build.code_debug=4
esp32thing.menu.DebugLevel.verbose=Verbose
esp32thing.menu.DebugLevel.verbose.build.code_debug=5

##############################################################

esp32thing_plus.name=SparkFun ESP32 Thing Plus

esp32thing_plus.upload.tool=esptool_py
esp32thing_plus.upload.maximum_size=1310720
esp32thing_plus.upload.maximum_data_size=327680
esp32thing_plus.upload.wait_for_upload_port=true

esp32thing_plus.serial.disableDTR=true
esp32thing_plus.serial.disableRTS=true

esp32thing_plus.build.mcu=esp32
esp32thing_plus.build.core=esp32
esp32thing_plus.build.variant=esp32thing_plus
esp32thing_plus.build.board=ESP32_THING_PLUS

esp32thing_plus.build.f_cpu=240000000L
esp32thing_plus.build.flash_mode=dio
esp32thing_plus.build.flash_size=16MB
esp32thing_plus.build.boot=dio
esp32thing_plus.build.partitions=default
esp32thing_plus.build.defines=

esp32thing_plus.menu.FlashFreq.80=80MHz
esp32thing_plus.menu.FlashFreq.80.build.flash_freq=80m
esp32thing_plus.menu.FlashFreq.40=40MHz
esp32thing_plus.menu.FlashFreq.40.build.flash_freq=40m

esp32thing_plus.menu.PartitionScheme.default=Default (6.25MB APP/OTA/3.43MB SPIFFS)
esp32thing_plus.menu.PartitionScheme.default.build.partitions=default_16MB
esp32thing_plus.menu.PartitionScheme.default.upload.maximum_size=6553600
esp32thing_plus.menu.PartitionScheme.large_spiffs=Large SPIFFS (4.5MB APP/OTA/6.93MB SPIFFS)
esp32thing_plus.menu.PartitionScheme.large_spiffs.build.partitions=large_spiffs_16MB
esp32thing_plus.menu.PartitionScheme.large_spiffs.upload.maximum_size=4718592

esp32thing_plus.menu.UploadSpeed.921600=921600
esp32thing_plus.menu.UploadSpeed.921600.upload.speed=921600
esp32thing_plus.menu.UploadSpeed.115200=115200
esp32thing_plus.menu.UploadSpeed.115200.upload.speed=115200
esp32thing_plus.menu.UploadSpeed.256000.windows=256000
esp32thing_plus.menu.UploadSpeed.256000.upload.speed=256000
esp32thing_plus.menu.UploadSpeed.230400.windows.upload.speed=256000
esp32thing_plus.menu.UploadSpeed.230400=230400
esp32thing_plus.menu.UploadSpeed.230400.upload.speed=230400
esp32thing_plus.menu.UploadSpeed.460800.linux=460800
esp32thing_plus.menu.UploadSpeed.460800.macosx=460800
esp32thing_plus.menu.UploadSpeed.460800.upload.speed=460800
esp32thing_plus.menu.UploadSpeed.512000.windows=512000
esp32thing_plus.menu.UploadSpeed.512000.upload.speed=512000

esp32thing_plus.menu.DebugLevel.none=None
esp32thing_plus.menu.DebugLevel.none.build.code_debug=0
esp32thing_plus.menu.DebugLevel.error=Error
esp32thing_plus.menu.DebugLevel.error.build.code_debug=1
esp32thing_plus.menu.DebugLevel.warn=Warn
esp32thing_plus.menu.DebugLevel.warn.build.code_debug=2
esp32thing_plus.menu.DebugLevel.info=Info
esp32thing_plus.menu.DebugLevel.info.build.code_debug=3
esp32thing_plus.menu.DebugLevel.debug=Debug
esp32thing_plus.menu.DebugLevel.debug.build.code_debug=4
esp32thing_plus.menu.DebugLevel.verbose=Verbose
esp32thing_plus.menu.DebugLevel.verbose.build.code_debug=5


##############################################################

Expand Down
61 changes: 61 additions & 0 deletions variants/esp32thing_plus/pins_arduino.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
#ifndef Pins_Arduino_h
#define Pins_Arduino_h

#include <stdint.h>

#define EXTERNAL_NUM_INTERRUPTS 16
#define NUM_DIGITAL_PINS 40
#define NUM_ANALOG_INPUTS 16

#define analogInputToDigitalPin(p) (((p)<20)?(esp32_adc2gpio[(p)]):-1)
#define digitalPinToInterrupt(p) (((p)<40)?(p):-1)
#define digitalPinHasPWM(p) (p < 34)

static const uint8_t LED_BUILTIN = 13;
#define BUILTIN_LED LED_BUILTIN // backward compatibility

static const uint8_t TX = 17;
static const uint8_t RX = 16;

#define TX1 TX
#define RX1 RX

static const uint8_t SDA = 23;
static const uint8_t SCL = 22;

static const uint8_t SS = 33;
static const uint8_t MOSI = 18;
static const uint8_t MISO = 19;
static const uint8_t SCK = 5;

// mapping to match other feathers and also in order
static const uint8_t A0 = 26;
static const uint8_t A1 = 25;
static const uint8_t A2 = 34;
static const uint8_t A3 = 39;
static const uint8_t A4 = 36;
static const uint8_t A5 = 4;
static const uint8_t A6 = 14;
static const uint8_t A7 = 32;
static const uint8_t A8 = 15;
static const uint8_t A9 = 33;
static const uint8_t A10 = 27;
static const uint8_t A11 = 12;
static const uint8_t A12 = 13;


static const uint8_t T0 = 4;
static const uint8_t T1 = 0;
static const uint8_t T2 = 2;
static const uint8_t T3 = 15;
static const uint8_t T4 = 13;
static const uint8_t T5 = 12;
static const uint8_t T6 = 14;
static const uint8_t T7 = 27;
static const uint8_t T8 = 33;
static const uint8_t T9 = 32;

static const uint8_t DAC1 = 25;
static const uint8_t DAC2 = 26;

#endif /* Pins_Arduino_h */

0 comments on commit 837cc3d

Please sign in to comment.