* fix(board): Alfredo NoU3 include stdint.h * fix(hal_gpio): lets pins_arduino.h to use stdint and stdbool types * feat(pins_arduino): fixes lack of stdint in the right place * fix(pins_arduino): reverts all changes to this file * fix(pins_arduino): reverts all changes to this file * fix(pins_arduino): reverts all changes back to original pr --------- Co-authored-by: Sugar Glider <rodrigo.garcia@espressif.com>
28 lines
671 B
C
28 lines
671 B
C
#ifndef Pins_Arduino_h
|
|
#define Pins_Arduino_h
|
|
|
|
#include <stdint.h>
|
|
#define USB_VID 0xAFD0
|
|
#define USB_PID 0x0003
|
|
#define USB_MANUFACTURER "Alfredo"
|
|
#define USB_PRODUCT "NoU3"
|
|
#define USB_SERIAL "" // Empty string for MAC address
|
|
|
|
// User LED
|
|
#define LED_BUILTIN 45
|
|
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
|
|
|
//static const uint8_t TX = 39;
|
|
//static const uint8_t RX = 40;
|
|
//#define TX1 TX
|
|
//#define RX1 RX
|
|
|
|
static const uint8_t SDA = -1;
|
|
static const uint8_t SCL = -1;
|
|
|
|
static const uint8_t SS = -1;
|
|
static const uint8_t MOSI = -1;
|
|
static const uint8_t SCK = -1;
|
|
static const uint8_t MISO = -1;
|
|
|
|
#endif /* Pins_Arduino_h */
|