Skip to content

Commit 513c21e

Browse files
committed
Fix order of TX and RX pins on bms CAN
1 parent 9c88ddf commit 513c21e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bms/src/Main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ void initIO() {
7373
serial = new Serial(USBTX, USBRX);
7474
serial->printf("INIT\n");
7575

76-
canBus = new CAN(BMS_PIN_CAN_TX, BMS_PIN_CAN_RX, BMS_CAN_FREQUENCY);
76+
canBus = new CAN(BMS_PIN_CAN_RX, BMS_PIN_CAN_TX, BMS_CAN_FREQUENCY);
7777

7878
// Set modes for IO
7979
/*

0 commit comments

Comments
 (0)