Skip to content
New issue

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

wifi.radio.listen_interval not available #10170

Open
blackketter opened this issue Mar 23, 2025 · 1 comment
Open

wifi.radio.listen_interval not available #10170

blackketter opened this issue Mar 23, 2025 · 1 comment
Milestone

Comments

@blackketter
Copy link

CircuitPython version and board name

Adafruit CircuitPython 9.2.5 on 2025-03-19; M5Stack Atom Echo with ESP32
Board ID:m5stack_atom_echo
UID:052019F95D04

Code/REPL

import wifi
wifi.radio.listen_interval = -1

Behavior

code.py output:
Traceback (most recent call last):
  File "code.py", line 42, in <module>
AttributeError: can't set attribute 'listen_interval'

Description

I'm trying to disable wifi power savings, which seems to improve reliability of ESP32 connections on some wifi networks. According to the documentation, as far as I can tell, this should be available. And I think by setting it to less than zero wifi power saving should be disabled. In any case, the api seems to be missing on this platform. It was apparently added in #9476.

First circuitpython bug report, could be I am holding it wrong. Thanks.

Additional information

No response

@dhalbert dhalbert changed the title wifi.radio.listen_interval not available on M5Stack Atom Echo wifi.radio.listen_interval not available Mar 23, 2025
@dhalbert
Copy link
Collaborator

I looked at this, and found that listen_interval had not been added to the Radio class dictionary. When I added this:

+    { MP_ROM_QSTR(MP_QSTR_listen_interval),    MP_ROM_PTR(&wifi_radio_listen_interval_obj) },

it showed up.

@EternityForest (author of #9476) not sure how we all missed that, but no one else had tried to use it.

I wonder if we should see if the RP2 WiFi impl has some power-saving implementation that is similar, and maybe come up with a more general API that would be applicable to both.

@dhalbert dhalbert added this to the 10.0.0 milestone Mar 25, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants