chore: Initial commit (blinky)

This commit is contained in:
2026-03-04 19:04:30 +00:00
commit 4af6192b34
132 changed files with 146774 additions and 0 deletions

3
app/src/CMakeLists.txt Normal file
View File

@@ -0,0 +1,3 @@
target_sources(${EXECUTABLE} PRIVATE
main.c
)

15
app/src/main.c Normal file
View File

@@ -0,0 +1,15 @@
#include "main.h"
#include "stm32f4xx_hal.h"
#include "stm32f4xx_hal_gpio.h"
int my_main()
{
while (1)
{
HAL_GPIO_TogglePin(LD2_GPIO_Port, LD2_Pin);
HAL_Delay(500);
}
return 0;
}