-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
37 lines (26 loc) · 961 Bytes
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/******************************************************************************************
Filename : main.c
Core : RV32IMAC
MCU : FE310-G002 (SiFive)
Author : Chalandi Amine
Owner : Chalandi Amine
Date : 04.06.2021
Description : main application implementation
******************************************************************************************/
//=========================================================================================
// Includes
//=========================================================================================
#include "OsTcb.h"
#include "OsAPIs.h"
//-----------------------------------------------------------------------------------------
/// \brief
///
/// \param
///
/// \return
//-----------------------------------------------------------------------------------------
int main(void)
{
OS_StartOS(APP_MODE_DEFAULT);
return(0);
}