rename test app to app.c for clarity

This commit is contained in:
joeycastillo
2024-09-18 12:52:30 -04:00
parent 70637cae75
commit aaa3b55c67
2 changed files with 1 additions and 1 deletions

View File

@@ -1,16 +0,0 @@
#include "app.h"
#include "delay.h"
void app_init(void) {
}
void app_setup(void) {
HAL_GPIO_GREEN_out();
}
bool app_loop(void) {
HAL_GPIO_GREEN_toggle();
delay_ms(500);
return false;
}