pvItemToQueue == NULL。这句话是这样解释的,指向将要放到队列的数据指针。item 是队列的一组数据。
* @param pvItemToQueue A pointer to the item that is to be placed on the
* queue. The size of the items the queue will hold was defined when the
* queue was created, so this many bytes will be copied from pvItemToQueue
* into the queue storage area.
pxQueue->uxItemSize 这个参数是什么? 队列保持的每组数据的长度。
UBaseType_t uxItemSize; /*< The size of each items that the queue will hold. */