diff options
author | barthess <barthess@yandex.ru> | 2016-01-24 20:42:00 +0300 |
---|---|---|
committer | barthess <barthess@yandex.ru> | 2016-01-24 20:42:00 +0300 |
commit | 2bc5a485a970f2ea1a3c7d7b853c6b877fea9a83 (patch) | |
tree | 2918fd57c5907a1444cddcded16253b7f91f7af8 /demos/TIVA | |
parent | 956134d0bae1f34088b222c63d22e3ae7c9ad4cf (diff) | |
parent | 2c7dc44fad1de5ff9ce449aeaf2ff94784d7807f (diff) | |
download | ChibiOS-Contrib-2bc5a485a970f2ea1a3c7d7b853c6b877fea9a83.tar.gz ChibiOS-Contrib-2bc5a485a970f2ea1a3c7d7b853c6b877fea9a83.tar.bz2 ChibiOS-Contrib-2bc5a485a970f2ea1a3c7d7b853c6b877fea9a83.zip |
Merge branch 'master' of github.com:ChibiOS/ChibiOS-Contrib
Diffstat (limited to 'demos/TIVA')
-rw-r--r-- | demos/TIVA/RT-TM4C1294-LAUNCHPAD-LWIP/main.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/demos/TIVA/RT-TM4C1294-LAUNCHPAD-LWIP/main.c b/demos/TIVA/RT-TM4C1294-LAUNCHPAD-LWIP/main.c index 141579a..88b5ea7 100644 --- a/demos/TIVA/RT-TM4C1294-LAUNCHPAD-LWIP/main.c +++ b/demos/TIVA/RT-TM4C1294-LAUNCHPAD-LWIP/main.c @@ -30,9 +30,11 @@ int main(void) * and performs the board-specific initializations. * - Kernel initialization, the main() function becomes a thread and the * RTOS is active. + * - lwIP subsystem initialization using the default configuration. */ halInit(); chSysInit(); + lwipInit(NULL); /* * Start the serial driver with the default configuration. @@ -41,12 +43,6 @@ int main(void) sdStart(&SD1, NULL); /* - * Creates the LWIP threads (it changes priority internally). - */ - chThdCreateStatic(wa_lwip_thread, LWIP_THREAD_STACK_SIZE, NORMALPRIO + 2, - lwip_thread, NULL); - - /* * Creates the HTTP thread (it changes priority internally). */ chThdCreateStatic(wa_http_server, sizeof(wa_http_server), NORMALPRIO + 1, |