Remove while(true) in nexLoop API. Remove example's dbSerial info.

Signed-off-by: shennongmin <wupangfee@gmail.com>
This commit is contained in:
shennongmin
2015-07-29 12:44:37 +08:00
parent 620345f727
commit ded12ebb98
11 changed files with 42 additions and 54 deletions

View File

@@ -18,7 +18,7 @@
NexButton b0 = NexButton(0, 1, "b0");
char buffer[100] = {0};
NexTouch *nexListenList[] =
NexTouch *nex_listen_list[] =
{
&b0,
NULL
@@ -54,6 +54,5 @@ void setup(void)
void loop(void)
{
dbSerialPrintln("nexLoop");
nexLoop(nexListenList);
nexLoop(nex_listen_list);
}