Removed ProS2 and added TinyS2 to boards.txt (#5037)

This commit is contained in:
Unexpected Maker 2021-04-15 21:31:41 +10:00 committed by GitHub
parent 9a518cd3d7
commit ec7aeb4903
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 11 deletions

View File

@ -961,6 +961,7 @@ feathers2.menu.DebugLevel.verbose=Verbose
feathers2.menu.DebugLevel.verbose.build.code_debug=5 feathers2.menu.DebugLevel.verbose.build.code_debug=5
############################################################## ##############################################################
pros2.name=UM ProS2 pros2.name=UM ProS2
pros2.vid.0=0x239A pros2.vid.0=0x239A
pros2.pid.0=0x80A9 pros2.pid.0=0x80A9

View File

@ -28,7 +28,7 @@ extern "C" {
#include "soc/soc_caps.h" #include "soc/soc_caps.h"
#if (CONFIG_IDF_TARGET_ESP32S2 || CONFIG_IDF_TARGET_ESP32S3) #if (CONFIG_IDF_TARGET_ESP32S2 || CONFIG_IDF_TARGET_ESP32S3)
#define NUM_OUPUT_PINS 45 #define NUM_OUPUT_PINS 46
#define PIN_DAC1 17 #define PIN_DAC1 17
#define PIN_DAC2 18 #define PIN_DAC2 18
#else #else

View File

@ -3,10 +3,10 @@
#include <stdint.h> #include <stdint.h>
#define USB_VID 0x239A #define USB_VID 0x303A
#define USB_PID 0x80A9 #define USB_PID 0x8001
#define USB_MANUFACTURER "Unexpected Maker" #define USB_MANUFACTURER "Unexpected Maker"
#define USB_PRODUCT "ProS2" #define USB_PRODUCT "TinyS2"
#define USB_SERIAL "" #define USB_SERIAL ""
#define EXTERNAL_NUM_INTERRUPTS 46 #define EXTERNAL_NUM_INTERRUPTS 46
@ -23,12 +23,12 @@ static const uint8_t RX = 44;
static const uint8_t SDA = 8; static const uint8_t SDA = 8;
static const uint8_t SCL = 9; static const uint8_t SCL = 9;
static const uint8_t SS = 34; static const uint8_t SS = 14;
static const uint8_t MOSI = 35; static const uint8_t MOSI = 35;
static const uint8_t MISO = 37; static const uint8_t MISO = 36;
static const uint8_t SDO = 35; static const uint8_t SDO = 35;
static const uint8_t SDI = 37; static const uint8_t SDI = 36;
static const uint8_t SCK = 36; static const uint8_t SCK = 37;
static const uint8_t A0 = 1; static const uint8_t A0 = 1;
static const uint8_t A1 = 2; static const uint8_t A1 = 2;
@ -69,9 +69,10 @@ static const uint8_t T14 = 14;
static const uint8_t DAC1 = 17; static const uint8_t DAC1 = 17;
static const uint8_t DAC2 = 18; static const uint8_t DAC2 = 18;
static const uint8_t LDO_2_POWER = 21; static const uint8_t VBAT_SENSE = 3;
static const uint8_t VBUS_SENSE = 21;
static const uint8_t APA_DATA = 40; static const uint8_t RGB_DATA = 1;
static const uint8_t APA_CLK = 45; static const uint8_t RGB_PWR = 2;
#endif /* Pins_Arduino_h */ #endif /* Pins_Arduino_h */