mirror of
https://github.com/polhenarejos/pico-keys-sdk
synced 2026-05-08 14:06:11 +02:00
Fixed potential crash.
board_button_read() disables interrupts and cannot be parallelized when flash is being used. It is imperative that core1 must not use flash during the board_button_read(). Since it is not feasible to put mutexes in *every* flash memory read/write in core1, it is preferable to wait until core1 finishes command execution. Signed-off-by: Pol Henarejos <pol.henarejos@cttc.es>
This commit is contained in:
@@ -323,7 +323,7 @@ int main(void) {
|
||||
neug_task();
|
||||
do_flash();
|
||||
#ifndef ENABLE_EMULATION
|
||||
if (board_millis() > 1000 && !is_busy()) { // wait 1 second to boot up
|
||||
if (board_millis() > 5000 && !is_busy()) { // wait 5 second to boot up
|
||||
bool current_button_state = board_button_read();
|
||||
if (current_button_state != button_pressed_state) {
|
||||
if (current_button_state == false) { // unpressed
|
||||
|
||||
Reference in New Issue
Block a user