Tool/software: TI-RTOS
Hi TI,
beaglebone black, processor SDK RTOS 4.2.0.9, ccs 7.4
I am working on SPI data transfer with TI-RTOS on BBB board, and seeing the following codes in the example project main() function.
Task_Handle task;
Error_Block eb;
Error_init(&eb);
task = Task_create(spi_test, NULL, &eb);
if (task == NULL) {
UART_printf("Task_create() failed!\n");
BIOS_exit(0);
}
I expect the above codes are equivalent to the definition of task0 in app.cfg (ref the attached screen-shot below), and I commented out the above codes in the main() function. Obviously they are different. The compile error message did not reveal too much useful information (also shown on the screen-shot).
Please advise, thanks in advance,