微波EDA网,见证研发工程师的成长!
首页 > 研发问答 > 无线和射频 > TI无线射频设计 > CC1310 创建任务问题

CC1310 创建任务问题

时间:12-23 整理:3721RD 点击:

请问这段创建任务的代码,函数体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都可以有相关的参入传入。

只是说一般都不用而已。

Copyright © 2017-2020 微波EDA网 版权所有

网站地图

Top