创建了基本工程

This commit is contained in:
2021-09-17 22:25:54 +08:00
parent c59faff4bc
commit 31f70a306a
16 changed files with 2078 additions and 1818 deletions
+17
View File
@@ -0,0 +1,17 @@
/*
* my_main.c
*
* Created on: 2021年9月17日
* Author: wuwenfeng
*/
#include "my_main.h"
void mymain()
{
while(1)
{
}
}
+16
View File
@@ -0,0 +1,16 @@
/*
* my_main.h
*
* Created on: 2021年9月17日
* Author: wuwenfeng
*/
#ifndef MY_MAIN_H_
#define MY_MAIN_H_
#include "main.h"
void mymain();
#endif /* MY_MAIN_H_ */