git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1200 35acf78f-673a-0410-8e92-d51de3d6d3f4

master
gdisirio 2009-10-03 07:14:57 +00:00
parent 9a08941c1f
commit f67bb7f7d8
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ int main(int argc, char **argv) {
* Creates the blinker and web server threads.
*/
chThdCreateStatic(waThread1, sizeof(waThread1), NORMALPRIO, Thread1, NULL);
chThdCreateStatic(waWebThread, sizeof(waWebThread), NORMALPRIO - 1, WebThread, NULL);
chThdCreateStatic(waWebThread, sizeof(waWebThread), LOWPRIO, WebThread, NULL);
/*
* Normal main() thread activity.