微波EDA网,见证研发工程师的成长!
首页 > 研发问答 > 无线和射频 > TI蓝牙设计交流 > 关于2640的任务间消息传递

关于2640的任务间消息传递

时间:10-02 整理:3721RD 点击:

static void Serail_enqueueMsg(uint8_t event, uint8_t *str)

{

  sbpEvt_t *pMsg;

  // Create dynamic pointer to message.

  if (pMsg = ICall_malloc(sizeof(sbpEvt_t)))

  {

    pMsg->event = event;

    pMsg->value = str;

    // Enqueue the message.

    Util_enqueueMsg(appMsgQueue, sem, (uint8*)pMsg);

    UartWrite("send\r\n",6);

  }  

}

我这么写有么有问题啊,这个是npi_task里的

这个是SimpleBLEPeripheral.c里的一个消息队列

我想npi_task.c中将串口消息发到SimpleBLEPeripheral.c这个任务中

shuaishuai,

理论上是可以的。关键是你要把appMsgQueue 和 sem连接到app的task的queue和sem上去。

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

网站地图

Top