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 Nov 15, 2023
1 parent c89ba50 commit 41e38fa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,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 41e38fa

Please sign in to comment.