# Add your source files here.
SRCS += \
- ./movement.c \
+ ./app.c \
# Finally, leave this line at the bottom of the file.
include $(GOSSAMER_PATH)/rules.mk
--- /dev/null
+#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;
+}
\ No newline at end of file
+++ /dev/null
-#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;
-}
\ No newline at end of file