Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@
extern "C" {
#endif

typedef enum {
GPIO_X = 0, // dummy peripheral used instead of GPIO_A..GPIO_E
} GPIOName;

typedef enum {
OSC32KCLK = 0,
} RTCName;
Expand All @@ -32,7 +36,6 @@ typedef enum {
UART_2 = 2,
UART_3 = 3,
UART_4 = 4,
UART_5 = 5,
} UARTName;

#define STDIO_UART_TX USBTX
Expand Down Expand Up @@ -124,7 +127,7 @@ typedef enum {
DAC_0 = 0
} DACName;


#define DEVICE_SPI_COUNT 3
typedef enum {
SPI_0 = 0,
SPI_1 = 1,
Expand Down
Loading