Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions adafruit_ntp.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,8 @@ def datetime(self) -> time.struct_time:
for i in range(1, PACKET_SIZE):
self._packet[i] = 0
with self._pool.socket(self._pool.AF_INET, self._pool.SOCK_DGRAM) as sock:
# Since the ESP32SPI doesn't support sendto, we are using
# connect + send to standardize code
sock.settimeout(self._socket_timeout)
sock.connect(self._socket_address)
sock.send(self._packet)
sock.sendto(self._packet, self._socket_address)
sock.recv_into(self._packet)
# Get the time in the context to minimize the difference between it and receiving
# the packet.
Expand Down