Add core firmware modules: input, menu, NRF24L01, OLED, protocol, PWM, storage + UI assets

This commit is contained in:
root
2026-06-25 22:55:41 +08:00
parent 97ab93e93d
commit 5c0ff0ce63
22 changed files with 3671 additions and 17 deletions

View File

@@ -46,6 +46,13 @@ Core/Src/usart.c \
Core/Src/usb.c \
Core/Src/stm32f1xx_it.c \
Core/Src/stm32f1xx_hal_msp.c \
Core/Src/oled.c \
Core/Src/input.c \
Core/Src/menu.c \
Core/Src/storage.c \
Core/Src/pwm_out.c \
Core/Src/nrf24l01.c \
Core/Src/protocol.c \
Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.c \
Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_adc.c \
Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_adc_ex.c \
@@ -131,6 +138,7 @@ AS_INCLUDES =
# C includes
C_INCLUDES = \
-ICore/Inc \
-Iui \
-IDrivers/STM32F1xx_HAL_Driver/Inc \
-IDrivers/STM32F1xx_HAL_Driver/Inc/Legacy \
-IDrivers/CMSIS/Device/ST/STM32F1xx/Include \