mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-08 05:31:25 +00:00
![lewis he](/assets/img/avatar_default.png)
* Change t-beam-s3-core pins definitions * Add t-beam-s3-core power initialization to properly initialize the I2C device * Add 6-axis and 3-axis sensor detection
37 lines
935 B
C
37 lines
935 B
C
#ifndef Pins_Arduino_h
|
|
#define Pins_Arduino_h
|
|
|
|
#include <stdint.h>
|
|
|
|
#define USB_VID 0x303a
|
|
#define USB_PID 0x1001
|
|
|
|
#define EXTERNAL_NUM_INTERRUPTS 46
|
|
#define NUM_DIGITAL_PINS 48
|
|
#define NUM_ANALOG_INPUTS 20
|
|
|
|
#define analogInputToDigitalPin(p) (((p)<20)?(analogChannelToDigitalPin(p)):-1)
|
|
#define digitalPinToInterrupt(p) (((p)<48)?(p):-1)
|
|
#define digitalPinHasPWM(p) (p < 46)
|
|
|
|
static const uint8_t TX = 43;
|
|
static const uint8_t RX = 44;
|
|
|
|
static const uint8_t SDA = 42;
|
|
static const uint8_t SCL = 41;
|
|
|
|
static const uint8_t SS = 10;
|
|
static const uint8_t MOSI = 11;
|
|
static const uint8_t MISO = 13;
|
|
static const uint8_t SCK = 12;
|
|
|
|
#define SDMMC_CMD (35)
|
|
#define SDMMC_CLK (36)
|
|
#define SDMMC_DATA (37)
|
|
|
|
#define ACCEL_INT1 (34)
|
|
#define ACCEL_INT2 (33)
|
|
#define RTC_INT (14)
|
|
|
|
#endif /* Pins_Arduino_h */
|