Compare commits

...

3 Commits

Author SHA1 Message Date
markqvist
4fdb9dda40
Merge pull request #509 from liamcottle/master
Fix for macos failing to set firmware hash on NRF52
2024-05-31 13:47:01 +02:00
liamcottle
c4705fd594 check platform is macos before delaying nrf52 reset 2024-05-31 13:12:39 +12:00
liamcottle
df92fb1bcf fix for macOS failing to set firmware hash on NRF52 when resetting too quickly 2024-05-29 11:39:13 +12:00

View File

@ -3440,6 +3440,11 @@ def main():
time.sleep(6.5) time.sleep(6.5)
elif rnode.platform == ROM.PLATFORM_NRF52: elif rnode.platform == ROM.PLATFORM_NRF52:
# Wait a few seconds before hard resetting.
# Otherwise, macOS fails to set firmware hash on NRF52
if RNS.vendor.platformutils.is_darwin():
time.sleep(5)
rnode.hard_reset() rnode.hard_reset()
# The hard reset on this platform is different # The hard reset on this platform is different
# to that of the ESP32 platform, it causes # to that of the ESP32 platform, it causes