BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
lvgl
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
lvgl
Commits
c67f5581
Commit
c67f5581
authored
Jun 23, 2017
by
Gabor
Committed by
Kiss-Vamosi Gabor
Jul 09, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
follow wifi modifications
parent
ac3b7631
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lv_app_wifi.c
lv_appx/lv_app_wifi.c
+2
-2
No files found.
lv_appx/lv_app_wifi.c
View file @
c67f5581
...
...
@@ -419,7 +419,7 @@ static void tcp_port_kb_close(lv_obj_t * ta)
static
void
list_cb
(
wifi_state_t
state
,
const
char
*
txt
)
{
if
(
state
==
WIFI_STATE_
READY
)
{
if
(
state
==
WIFI_STATE_
OK
)
{
if
(
txt
[
0
]
==
'\0'
)
{
lv_app_notice_add
(
"WiFi network list ready"
);
return
;
...
...
@@ -444,7 +444,7 @@ static void list_cb(wifi_state_t state, const char * txt)
static
void
tcp_transf_cb
(
wifi_state_t
state
,
const
char
*
txt
)
{
if
(
state
==
WIFI_STATE_
READY
)
{
if
(
state
==
WIFI_STATE_
OK
)
{
uint16_t
size
=
txt
[
0
]
+
((
txt
[
1
]
<<
8
)
&
0xFF00
);
char
buf
[
256
];
memcpy
(
buf
,
&
txt
[
2
],
size
);
...
...
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