Skip to content

Commit 1de4899

Browse files
committed
Update LoadConfig.hpp
1 parent 667bb46 commit 1de4899

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

include/LoadConfig.hpp

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ namespace UM_PROS3 {
3737
// Onboard LED
3838
constexpr uint_fast8_t LED_DATA_PIN = RGB_DATA;
3939

40+
// ESTOP
41+
constexpr uint_fast8_t ESTOP_PIN = 5;
42+
4043
// I2C
4144
constexpr uint_fast8_t I2C_SDA_PIN = SDA;
4245
constexpr uint_fast8_t I2C_SCL_PIN = SCL;
@@ -46,6 +49,16 @@ namespace UM_PROS3 {
4649
constexpr uint_fast8_t SPI_CLK_PIN = SCK; // todo
4750
constexpr uint_fast8_t SPI_COPI_PIN = MOSI; // todo
4851
constexpr uint_fast8_t SPI_CS_PIN = SS; // todo
52+
53+
// UART
54+
constexpr uint_fast8_t UART_TX_PIN = TX;
55+
constexpr uint_fast8_t UART_RX_PIN = RX;
56+
57+
// JTAG
58+
constexpr uint_fast8_t JTAG_MTCK_PIN = 39;
59+
constexpr uint_fast8_t JTAG_MTDO_PIN = 40;
60+
constexpr uint_fast8_t JTAG_MTDI_PIN = 41;
61+
constexpr uint_fast8_t JTAG_MTMS_PIN = 42;
4962
} // namespace UM_PROS3
5063

5164
// MARK: Constants

0 commit comments

Comments
 (0)