We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6abb790 commit a79b044Copy full SHA for a79b044
src/main.cpp
@@ -8,6 +8,7 @@
8
#include "EventDispatcher/CrossLinkDebugger.h"
9
#include "IOBoardController.h"
10
#include "PPUC.h"
11
+#include "PPUCProtocolV2.h"
12
#include "RPi_Pico_TimerInterrupt.h"
13
14
IOBoardController ioBoardController(CONTROLLER_16_8_1);
@@ -50,7 +51,7 @@ void setup() {
50
51
pinMode(RS485_MODE_PIN, OUTPUT);
52
digitalWrite(RS485_MODE_PIN, LOW); // Read mode
53
delay(5);
- Serial1.begin(115200);
54
+ Serial1.begin(ppuc::v2::kBaudRate);
55
// Empty RX FIFO after reboot
56
while (Serial1.available()) {
57
Serial1.read();
0 commit comments