Dual Active Bridge Development Board (Part-No. )
Content
Loading...
Searching...
No Matches
os.h
1
2
//=======================================================================================================
3
// @file os.h
4
//
5
// @brief includes all the other header files that are necessary for the project
6
//
7
// @note adjust the options of the operating system according your needs in main/project_settings.h
8
// @note call the Init function in your main.c
9
// @note call the OS_Scheduler_Run in your main loop or call the RunForever-Function in your main.c
10
//
11
// @version v1.0
12
// @date 2019-08-02
13
// @author M52409
14
//
15
//=======================================================================================================
16
#ifndef OS_H
17
#define OS_H
18
19
#include "os_config.h"
20
#include "os_scheduler.h"
21
22
//=======================================================================================================
23
// @brief Initializes all Operating System Components
24
// @note call this function in your main routine before calling the RunForever function
25
//=======================================================================================================
26
extern
void
OS_Init(
void
);
27
28
29
#endif
// OS_H
© Copyright 1998-2022 Microchip Technology Inc. All rights reserved.