File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ auto main() -> int
55
55
// log_from_isr();
56
56
};
57
57
58
- // ticker_log_from_isr.attach(log_isr_lambda, 2s );
58
+ // ticker_log_from_isr.attach(log_isr_lambda, 5s );
59
59
60
60
while (true ) {
61
61
auto start = rtos::Kernel::Clock::now ();
@@ -65,6 +65,6 @@ auto main() -> int
65
65
66
66
log_info (" log_debug took %i ms to complete... that's fast!\n " , int ((stop - start).count ()));
67
67
68
- rtos::ThisThread::sleep_for (1000ms );
68
+ rtos::ThisThread::sleep_for (3333ms );
69
69
}
70
70
}
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ using namespace std::chrono;
27
27
28
28
log_info (" Total time to LOG the for loop --> %ims\n " , static_cast <int >((stop - start).count ()));
29
29
30
- rtos::ThisThread::sleep_for (3s );
30
+ rtos::ThisThread::sleep_for (5s );
31
31
}
32
32
}
33
33
You can’t perform that action at this time.
0 commit comments