Skip to content

Commit cc20e62

Browse files
committed
fix some comments
1 parent e405605 commit cc20e62

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

IdleLoop/main.cpp

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,8 @@ LowPowerTicker watchdogTicker;
77
Thread watchdogThread;
88
EventQueue watchdogQueue;
99

10-
11-
//if we use Serial as a CLI console . The CLI thread allways get the read lock , if another thread want to print something to serial console, it will be blocked by CLI thread .
12-
1310
void watchdogRefreshHandler() {
1411
led = !led;
15-
// target-specific feed function
1612
};
1713

1814
void watchdogRefreshIsr() {
@@ -21,6 +17,7 @@ void watchdogRefreshIsr() {
2117

2218
void new_idle_loop()
2319
{
20+
// Executes when no other thread is running
2421
led1 = !led1;
2522
}
2623

0 commit comments

Comments
 (0)