21 lines
357 B
C
21 lines
357 B
C
/*
|
|
* mutex.h
|
|
*
|
|
* Created on: 2024年5月18日
|
|
* Author: 34509
|
|
*/
|
|
|
|
#ifndef SOFTWARE_THREAD_COMMUNICATION_MUTEX_H_
|
|
#define SOFTWARE_THREAD_COMMUNICATION_MUTEX_H_
|
|
|
|
#include "rtthread.h"
|
|
|
|
/* 定义互斥量控制块 */
|
|
/* Rs485数组互斥量 */
|
|
static rt_mutex_t protocol_mux = RT_NULL;
|
|
|
|
|
|
void mutex_Init(void);
|
|
|
|
#endif /* SOFTWARE_THREAD_COMMUNICATION_MUTEX_H_ */
|