Skip to content

Commit

Permalink
TODO - hardcode our timeout value since adafruit's nrf core doesn't e…
Browse files Browse the repository at this point in the history
…xpose the method we need
  • Loading branch information
obra committed Mar 25, 2024
1 parent 01b3fc5 commit 1f8d465
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ bool FocusSerial::inputMatchesCommand(const char *input, const char *expected) {

bool FocusSerial::isEOL() {
int c = -1;
auto timeout = Runtime.serialPort().getTimeout();
auto timeout = 1000; // Runtime.serialPort().getTimeout(); // TODO nrf core doesn't expose getTimeout
auto start = millis();


Expand Down

0 comments on commit 1f8d465

Please sign in to comment.