Skip to content

Commit

Permalink
Add small delay after powering on tag before accessing uC to allow vo…
Browse files Browse the repository at this point in the history
…ltage to stabilize (#331)
  • Loading branch information
StefanKrupop committed Jun 20, 2024
1 parent f11f8e3 commit e22c40d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Tag_Flasher/OEPL-Flasher.py
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,7 @@ def main():
cmd, answer = wait_for_command()
send_cmd(CMD_SET_POWER, bytearray([1]))
cmd, answer = wait_for_command()
time.sleep(0.2)
send_cmd(CMD_RESET, bytearray([]))
cmd, answer = wait_for_command()
send_cmd(CMD_SELECT_EEPROM_PT, bytearray([])) ## selects eeprom serial loader mode
Expand All @@ -371,6 +372,7 @@ def main():

send_cmd(CMD_SET_POWER, bytearray([1]))
cmd, answer = wait_for_command()
time.sleep(0.2)

if args.nrf82511:
send_cmd(CMD_SELECT_NRF82511, bytearray([]))
Expand Down

0 comments on commit e22c40d

Please sign in to comment.