Skip to content

Commit

Permalink
a variation of bad.
Browse files Browse the repository at this point in the history
  • Loading branch information
laurensvalk committed Jan 8, 2025
1 parent f4295a3 commit 73225d9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/pbio/drv/ioport/ioport_pup.c
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,10 @@ PROCESS_THREAD(test_process, ev, data) {

etimer_set(&timer, 1000);

PROCESS_WAIT_EVENT_UNTIL(ev == PROCESS_EVENT_TIMER && etimer_expired(&timer));
// And with this change it still doesn't work after connect, but it
// does get going when you kick it with an event like starting REPL.

PROCESS_WAIT_EVENT_UNTIL(/*ev == PROCESS_EVENT_TIMER &&*/ etimer_expired(&timer));

printf("Hello, world\n");
}
Expand Down

0 comments on commit 73225d9

Please sign in to comment.