OVMS3-idf/components/bt/bluedroid/osi/include/thread.h

26 lines
499 B
C
Raw Normal View History

#ifndef __THREAD_H__
#define __THREAD_H__
#include "freertos/xtensa_api.h"
#include "freertos/FreeRTOSConfig.h"
#include "freertos/FreeRTOS.h"
#include "freertos/queue.h"
#include "freertos/task.h"
#define portBASE_TYPE int
struct task_evt {
uint32_t sig;
uint32_t par;
};
typedef struct task_evt TaskEvt_t;
void btu_task_post(void);
void hci_host_task_post(void);
void hci_hal_h4_task_post(void);
void hci_drv_task_post(void);
void bt_alarm_task_post(void);
#endif /* __THREAD_H__ */