summaryrefslogtreecommitdiff
path: root/app/main.c
diff options
context:
space:
mode:
authorOxore <oxore@protonmail.com>2023-03-06 11:30:08 +0300
committerOxore <oxore@protonmail.com>2023-03-06 11:30:08 +0300
commitdfcf63dded68e7bf1eea2112feb6e993d75c9907 (patch)
tree0d1e3e5f3d00f0f550e3fc1cfc110907cb7ee6ce /app/main.c
parent5e565f35686b41ae5b5a2125213e01d8aa9d0e61 (diff)
Reduce include path pollution
Diffstat (limited to 'app/main.c')
-rw-r--r--app/main.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/app/main.c b/app/main.c
index 4c0881f..e857a38 100644
--- a/app/main.c
+++ b/app/main.c
@@ -46,18 +46,18 @@
#include "queue.h"
#include "semphr.h"
-#include "ltimers.h"
-#include "head_task.h"
-#include "button_task.h"
-#include "button_handler.h"
-#include "nixie_driver_task.h"
-#include "light_sensor_task.h"
+#include "ltimers/ltimers.h"
+#include "head_task/head_task.h"
+#include "button/button_task.h"
+#include "button/button_handler.h"
+#include "nixie_driver/nixie_driver_task.h"
+#include "light_sensor/light_sensor_task.h"
#ifdef LED_DRIVER
-#include "led_driver_task.h"
+#include "led_driver/led_driver_task.h"
#endif
-#include "indicate_modes_task.h"
+#include "indicate/indicate_modes_task.h"
#include "tsl_user.h"
#include "time.h"
#include "stm32f0xx_usart.h"