mirror of
https://github.com/No-Chicken/Power-Pico.git
synced 2026-04-03 13:02:36 +08:00
24 lines
379 B
C
24 lines
379 B
C
|
|
#ifndef __USER_TASKSINIT_H__
|
||
|
|
#define __USER_TASKSINIT_H__
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#include "FreeRTOS.h"
|
||
|
|
#include "cmsis_os.h"
|
||
|
|
|
||
|
|
extern osMessageQueueId_t Key_MessageQueue;
|
||
|
|
extern osMessageQueueId_t PD_cmd_MessageQueue;
|
||
|
|
extern osMessageQueueId_t PD_handle_event_MsgQueue;
|
||
|
|
|
||
|
|
void User_Tasks_Init(void);
|
||
|
|
void TaskTickHook(void);
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif
|
||
|
|
|