You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At least on my Windows 10 machine firmware flashing is extremely slow.
This is caused by Nagle algorithm, because of writing some bytes, waiting for ack, ....
As you have cc2538-bsl.py local anyway, you can add these lines to make flash upload really fast.
I tested it by running cc2538-bsl.py from command line:
import socket
...
# in function def open()
self.sp.open()
if hasattr(self.sp, '_socket'):
self.sp._socket.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1)
Thank you!
The text was updated successfully, but these errors were encountered:
At least on my Windows 10 machine firmware flashing is extremely slow.
This is caused by Nagle algorithm, because of writing some bytes, waiting for ack, ....
As you have cc2538-bsl.py local anyway, you can add these lines to make flash upload really fast.
I tested it by running cc2538-bsl.py from command line:
Thank you!
The text was updated successfully, but these errors were encountered: