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

@@ -26,7 +26,7 @@ NexButton b1 = NexButton(0, 3, "b1", b1PopCallback);
char buffer[100] = {0};
NexTouch *nexListenList[] =
NexTouch *nex_listen_list[] =
{
&t0,
&b0,
@@ -87,7 +87,6 @@ void setup(void)
void loop(void)
{
dbSerialPrintln("nexLoop");
nexLoop(nexListenList);
nexLoop(nex_listen_list);
}