You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
436 B
27 lines
436 B
#ifndef __MY_RTOS_H
|
|
#define __MY_RTOS_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "FreeRTOS.h"
|
|
#include "task.h"
|
|
#include "queue.h"
|
|
#include "cmsis_os.h"
|
|
|
|
#include "main.h"
|
|
|
|
|
|
extern osThreadId_t measureTaskHandle;
|
|
extern const osThreadAttr_t measureTask_attributes ;
|
|
|
|
extern osTimerId_t measureTimerHandle;
|
|
extern const osTimerAttr_t measureTimer_attributes ;
|
|
|
|
extern void RTOS_Port(void);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif |