diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-10-08 13:18:59 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-10-08 13:18:59 +0000 |
commit | a549cb2cd878ab083e56dba827a78f13f965f65c (patch) | |
tree | 238cba14eb00bc7c6ba8367ad174f74713f6b4e1 /demos/STM32/RT-STM32F746G-DISCOVERY-LWIP-FATFS-USB/main.c | |
parent | 13691d8e0c115e1cfe755067c51ca2305e26730d (diff) | |
download | ChibiOS-a549cb2cd878ab083e56dba827a78f13f965f65c.tar.gz ChibiOS-a549cb2cd878ab083e56dba827a78f13f965f65c.tar.bz2 ChibiOS-a549cb2cd878ab083e56dba827a78f13f965f65c.zip |
Switched demo to lwip HTTP server for testing.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10798 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/STM32/RT-STM32F746G-DISCOVERY-LWIP-FATFS-USB/main.c')
-rw-r--r-- | demos/STM32/RT-STM32F746G-DISCOVERY-LWIP-FATFS-USB/main.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/demos/STM32/RT-STM32F746G-DISCOVERY-LWIP-FATFS-USB/main.c b/demos/STM32/RT-STM32F746G-DISCOVERY-LWIP-FATFS-USB/main.c index 2e8286383..87b0cc385 100644 --- a/demos/STM32/RT-STM32F746G-DISCOVERY-LWIP-FATFS-USB/main.c +++ b/demos/STM32/RT-STM32F746G-DISCOVERY-LWIP-FATFS-USB/main.c @@ -322,10 +322,8 @@ int main(void) { chThdCreateStatic(waThread1, sizeof(waThread1), NORMALPRIO, Thread1, NULL);
/*
- * Creates the HTTP thread (it changes priority internally).
+ * Starts the HTTP server.
*/
-// chThdCreateStatic(wa_http_server, sizeof(wa_http_server), NORMALPRIO + 1,
-// http_server, NULL);
httpd_init();
/*
|