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
The datasheet page 89 describes prototype:
uint8 wifi_get_channel(void)
The source code returns int32_t:
int32_t
Arduino/libraries/ESP8266WiFi/src/ESP8266WiFiGeneric.cpp
Line 257 in bc2b13a
Proposal to change prototype to:
uint8_t ESP8266WiFiGenericClass::channel(void);
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The datasheet page 89 describes prototype:
uint8 wifi_get_channel(void)
The source code returns
int32_t
:Arduino/libraries/ESP8266WiFi/src/ESP8266WiFiGeneric.cpp
Line 257 in bc2b13a
Proposal to change prototype to:
The text was updated successfully, but these errors were encountered: