diff options
Diffstat (limited to '')
| -rw-r--r-- | project/Core/Src/main.c | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/project/Core/Src/main.c b/project/Core/Src/main.c index 0a36667..8eca7db 100644 --- a/project/Core/Src/main.c +++ b/project/Core/Src/main.c @@ -3,20 +3,15 @@ // include project specific header files +#include <stdio.h> #include "error_handler.h" #include "SysClock.h" #include "LED.h" #include "UART.h" #include "demo.h" -#include "activity10.h" -#include <stdio.h> -#include "hw4.h" #include "project.h" -#include "hw8.h" -#include "activity12.h" -#include "song.h" -int main(void){ +int main() { // initialization code System_Clock_Init(); // set System Clock = 80 MHz @@ -25,14 +20,7 @@ int main(void){ // application run function printf("\n\n\n\n\n\n\n\n\r"); -// run_demo(); -// activity4_run(); + project_run(); -// activity10_run(); -// hw6_run(); -// activity12_run(); -// activity13_run(); -// hw8_run(); -// parse_song(get_song(0).p_song + 109); } |
