minimal blinky sketch

This commit is contained in:
joeycastillo
2024-09-18 08:56:47 -04:00
parent 063fe96ef2
commit f7cf2a6c4d
2 changed files with 33 additions and 0 deletions

16
movement.c Normal file
View File

@@ -0,0 +1,16 @@
#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;
}