gpt4 book ai didi

process - Contiki OS 中所有正在运行的进程列表

转载 作者:行者123 更新时间:2023-12-04 15:32:51 26 4
gpt4 key购买 nike

是否有可能在 contiki os 中列出所有正在运行的进程并在调试输出(即 UART)上输出结果?

最佳答案

在 contiki platform.c 和 main() 中插入:

struct process *p;
uint8_t ps;
int n;

int
main(void) /*contiki main() here */
{
n=0;

while(1)
{
//...
//...
/*************************************************************/
if(n==100)
{
uint8_t ps=process_nevents();
PRINTF("there are %u events in the queue", ps);
PRINTF("\n\n");
PRINTF("Processes:");
for(p = PROCESS_LIST(); p != NULL; p = p->next)
{
char namebuf[30];
strncpy(namebuf, PROCESS_NAME_STRING(p), sizeof(namebuf));
PRINTF("%s", namebuf);
PRINTF("\n\n");
n=0;
}
}
n +=1;
/*********************************************************************/
//...
//...
}
return 0;
}

这将在主循环的每 100 次迭代中输出正在运行的进程

如果您使用 UART 作为调试端口,则必须通过即在 上将 PRINTF() 的输出重定向到正确的端口atmega128rfa1
/* Second rs232 port for debugging or slip alternative */
rs232_init(RS232_PORT_1, USART_BAUD_9600,USART_PARITY_NONE |
USART_STOP_BITS_1 | USART_DATA_BITS_8);
/* Redirect stdout */

/* #if RF230BB_CONF_LEDONPORTE1 || defined(RAVEN_LCD_INTERFACE) */
rs232_redirect_stdout(RS232_PORT_1);

contiki shell 源代码包含非常有用的命令,无需使用整个 shell 即可轻松用于调试,请参阅
http://anrg.usc.edu/contiki/index.php/Contiki_Shell

关于process - Contiki OS 中所有正在运行的进程列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33630996/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com