forked from ROMEO/obsw
further cleanup
This commit is contained in:
@ -43,7 +43,8 @@ void test_hardware() {
|
||||
// to be implemented by bsp (do not return from it!)
|
||||
void done();
|
||||
|
||||
void init_task(void *) {
|
||||
void init_task(void * _) {
|
||||
(void )_;
|
||||
// printf("Starting Mission\n");
|
||||
|
||||
test_hardware();
|
||||
@ -63,9 +64,9 @@ void mission(void) {
|
||||
|
||||
int taskParameters = 0;
|
||||
|
||||
static const size_t stackSizeWords = 102400;
|
||||
StaticTask_t xTaskBuffer;
|
||||
StackType_t xStack[stackSizeWords];
|
||||
// static const size_t stackSizeWords = 102400;
|
||||
// StaticTask_t xTaskBuffer;
|
||||
// StackType_t xStack[stackSizeWords];
|
||||
|
||||
xTaskCreate(init_task, /* The function that implements the task. */
|
||||
"init", /* The text name assigned to the task - for debug only as
|
||||
|
Reference in New Issue
Block a user