We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
esp.connect_AP(secrets["ssid"], secrets["password"]) pool = adafruit_connection_manager.get_radio_socketpool(esp) sock = pool.socket(pool.AF_INET, pool.SOCK_DGRAM) # UDP socket esp.start_server(1984, sock._socknum, conn_mode=1) while True: n_bytes = esp.socket_available(sock._socknum) if n_bytes: bytes_read = esp.socket_read(sock._socknum, n_bytes)
Hardware: pyportal NINA version: 1.7.7 CP version: 9.1.0 beta3 esp32spi version: frozen
a client is constantly sending udp packets to the host address
after a few minutes n_bytes is always zero, and in some occasions TimeoutError: Timed out waiting for SPI char
n_bytes
TimeoutError: Timed out waiting for SPI char
The text was updated successfully, but these errors were encountered:
it's esp32spi library issue, the one frozen in pyportal 9.1.0 beta3 is buggy. ver. 8.3.1 works fine.
Sorry, something went wrong.
TimeoutError: Timed out waiting for SPI char issue still present, it happens randomly from 30minutes to 12hours.
No branches or pull requests
Hardware: pyportal
NINA version: 1.7.7
CP version: 9.1.0 beta3
esp32spi version: frozen
a client is constantly sending udp packets to the host address
after a few minutes
n_bytes
is always zero, and in some occasionsTimeoutError: Timed out waiting for SPI char
The text was updated successfully, but these errors were encountered: