CC1310 创建任务问题
请问这段创建任务的代码,函数体taskFxn(UArg a0, UArg a1),里面的参数值a0,a1,是什么意思啊,为啥用在这里呀,我看下面也没有调用呀?求解答啊,谢谢啦
//static void taskFxn(UArg a0, UArg a1)
//{
/* Locals */
// PIN_State pinState;
// PIN_Handle hPin;
// uint_t currentOutputVal;
// uint32_t standbyDurationUs = 5000000;
/* Allocate LED pins */
// hPin = PIN_open(&pinState, LedPinTable);
/* Loop forever */
// while(TRUE)
// {
/* Sleep, to let the power policy transition the device to standby */
// Task_sleep(standbyDurationUs / Clock_tickPeriod);
/* Read current output value for all pins */
// currentOutputVal = PIN_getPortOutputValue(hPin);
/* Toggle the LEDs, configuring all LEDs at once */
// PIN_setPortOutputValue(hPin, ~currentOutputVal);
// }
//}
TI RTOS是多任务的实时操作系统,每个task都可以有相关的参入传入。
只是说一般都不用而已。