diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-06-27 10:53:19 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-06-27 10:53:19 +0200 |
commit | cff5f6dd6655470abd2235673b8ac55e6791a6fe (patch) | |
tree | b25d1056195381d8f3228a2033426c2ef500b264 | |
parent | 20437d0d0531c0a935576efdc93d9a30bf6da1af (diff) |
-rw-r--r-- | main/i2c.c | 2 | ||||
-rw-r--r-- | puzzle/neo/main.cpp | 1 |
2 files changed, 1 insertions, 2 deletions
@@ -68,7 +68,7 @@ static void update_state() { // find first module that is idle pb_global_state_t module_state = modules[i].state; if (module_state != PB_GS_IDLE) continue; - + if (modules[i].sender > first_addr) continue; first_addr = modules[i].sender; diff --git a/puzzle/neo/main.cpp b/puzzle/neo/main.cpp index 4709c53..dd6a1da 100644 --- a/puzzle/neo/main.cpp +++ b/puzzle/neo/main.cpp @@ -219,4 +219,3 @@ void loop() { break; } } - |