File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
99## Changed
1010- Changed dependency from ` mpy-cross ` to ` mpy-cross-v5 ` .
11+ - Increased wait time when waiting for user program to start in ` PybricksHub.run() ` .
1112
1213### Fixed
1314- Fix syntax error on Python < 3.10 in ` firmware ` module.
Original file line number Diff line number Diff line change @@ -312,7 +312,7 @@ async def send_block(data: bytes) -> None:
312312 # for it to start
313313 try :
314314 await asyncio .wait_for (
315- self .race_disconnect (user_program_running .get ()), 0.2
315+ self .race_disconnect (user_program_running .get ()), 1
316316 )
317317 except asyncio .TimeoutError :
318318 # if it doesn't start, assume it was a very short lived
You can’t perform that action at this time.
0 commit comments