Small improvement.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7385 35acf78f-673a-0410-8e92-d51de3d6d3f4master
parent
366ed30eea
commit
6110e63719
|
@ -33,11 +33,15 @@ static void Thread1(void const *arg) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Thread definition block.
|
||||||
|
*/
|
||||||
|
osThreadDef(Thread1, osPriorityAboveNormal, 1, 128);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Application entry point.
|
* Application entry point.
|
||||||
*/
|
*/
|
||||||
int main(void) {
|
int main(void) {
|
||||||
osThreadDef(Thread1, osPriorityAboveNormal, 1, 128);
|
|
||||||
|
|
||||||
/* HAL initialization, this also initializes the configured device drivers
|
/* HAL initialization, this also initializes the configured device drivers
|
||||||
and performs the board-specific initializations.*/
|
and performs the board-specific initializations.*/
|
||||||
|
|
Loading…
Reference in New Issue