Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
Nodemcu Firmware
Commits
b382a420
Commit
b382a420
authored
Feb 22, 2017
by
dnc40085
Committed by
Arnim Läuger
Feb 22, 2017
Browse files
Fix debug message for wifi.sta.getrssi() (#1814)
parent
0349c1e0
Changes
1
Hide whitespace changes
Inline
Side-by-side
app/modules/wifi.c
View file @
b382a420
...
...
@@ -1168,7 +1168,7 @@ static int wifi_station_status( lua_State* L )
// Lua: wifi.sta.getrssi()
static
int
wifi_station_getrssi
(
lua_State
*
L
){
sint8
rssival
=
wifi_station_get_rssi
();
NODE_DBG
(
"
\n\t
RSSI is %
i
\n
"
,
rssival
);
NODE_DBG
(
"
\n\t
RSSI is %
d
\n
"
,
rssival
);
if
(
rssival
<
10
)
{
lua_pushinteger
(
L
,
rssival
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment