Skip to content

Commit

Permalink
Merge pull request #466 from paulscottrobson/macfix
Browse files Browse the repository at this point in the history
Mac fix provided by JoBond, serial ports need a delay
  • Loading branch information
paulscottrobson authored Apr 24, 2024
2 parents 11a2b2f + a3a65df commit f2c243a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion firmware/scripts/nxmit.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def transmit(self,data):
data = data[0]
self.port.write(bytes(header)) # Write header
self.port.write(bytes(data)) # Write data block
#time.sleep(0)
time.sleep(0.01) # Required for Macs.
#
# Transmit a single block of data to whatever the current write address has been set to
#
Expand Down

0 comments on commit f2c243a

Please sign in to comment.