From e8ee04348605d61534ac8297f7050a328614021d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20=C5=BDaitl=C3=ADk?= Date: Thu, 15 Jul 2021 15:58:26 +0200 Subject: [PATCH] deleted the led driver (it wad using HAL). --- fw/.cproject | 4 +- fw/.settings/language.settings.xml | 73 +- fw/Core/Inc/led.h | 48 - fw/Core/Inc/main.h | 1 - fw/Core/Src/led.c | 121 - fw/Core/Src/main.c | 36 +- fw/Core/Src/stm32l0xx_it.c | 2 - fw/Debug/Core/Src/led.su | 0 fw/Debug/Core/Src/main.d | 60 + fw/Debug/Core/Src/main.o | Bin 0 -> 345452 bytes fw/Debug/Core/Src/main.su | 5 + fw/Debug/Core/Src/stm32l0xx_it.d | 63 + fw/Debug/Core/Src/stm32l0xx_it.o | Bin 0 -> 324172 bytes fw/Debug/Core/Src/stm32l0xx_it.su | 6 + fw/Debug/Core/Src/subdir.mk | 40 + fw/Debug/Core/Src/syscalls.d | 1 + fw/Debug/Core/Src/syscalls.o | Bin 0 -> 84588 bytes fw/Debug/Core/Src/syscalls.su | 18 + fw/Debug/Core/Src/sysmem.d | 1 + fw/Debug/Core/Src/sysmem.o | Bin 0 -> 51944 bytes fw/Debug/Core/Src/sysmem.su | 1 + fw/Debug/Core/Src/system_stm32l0xx.d | 22 + fw/Debug/Core/Src/system_stm32l0xx.o | Bin 0 -> 287704 bytes fw/Debug/Core/Src/system_stm32l0xx.su | 2 + fw/Debug/Core/Startup/startup_stm32l011f4ux.d | 2 + fw/Debug/Core/Startup/startup_stm32l011f4ux.o | Bin 0 -> 4096 bytes fw/Debug/Core/Startup/subdir.mk | 20 + .../Src/stm32l0xx_ll_dma.d | 29 + .../Src/stm32l0xx_ll_dma.o | Bin 0 -> 303396 bytes .../Src/stm32l0xx_ll_dma.su | 3 + .../Src/stm32l0xx_ll_exti.d | 26 + .../Src/stm32l0xx_ll_exti.o | Bin 0 -> 291492 bytes .../Src/stm32l0xx_ll_exti.su | 3 + .../Src/stm32l0xx_ll_gpio.d | 29 + .../Src/stm32l0xx_ll_gpio.o | Bin 0 -> 296888 bytes .../Src/stm32l0xx_ll_gpio.su | 3 + .../Src/stm32l0xx_ll_i2c.d | 29 + .../Src/stm32l0xx_ll_i2c.o | Bin 0 -> 298656 bytes .../Src/stm32l0xx_ll_i2c.su | 3 + .../Src/stm32l0xx_ll_lpuart.d | 32 + .../Src/stm32l0xx_ll_lpuart.o | Bin 0 -> 306444 bytes .../Src/stm32l0xx_ll_lpuart.su | 3 + .../Src/stm32l0xx_ll_pwr.d | 29 + .../Src/stm32l0xx_ll_pwr.o | Bin 0 -> 289828 bytes .../Src/stm32l0xx_ll_pwr.su | 1 + .../Src/stm32l0xx_ll_rcc.d | 26 + .../Src/stm32l0xx_ll_rcc.o | Bin 0 -> 309360 bytes .../Src/stm32l0xx_ll_rcc.su | 13 + .../Src/stm32l0xx_ll_utils.d | 35 + .../Src/stm32l0xx_ll_utils.o | Bin 0 -> 318156 bytes .../Src/stm32l0xx_ll_utils.su | 7 + .../STM32L0xx_HAL_Driver/Src/subdir.mk | 55 + fw/Debug/iaq_wired_sensor.bin | Bin 0 -> 3144 bytes fw/Debug/iaq_wired_sensor.elf | Bin 0 -> 469736 bytes fw/Debug/iaq_wired_sensor.list | 2140 +++++++++++++++++ fw/Debug/iaq_wired_sensor.map | 1345 +++++++++++ fw/Debug/makefile | 101 + fw/Debug/objects.list | 14 + fw/Debug/objects.mk | 9 + fw/Debug/sources.mk | 26 + fw/iaq_wired_sensor.ioc | 24 +- 61 files changed, 4274 insertions(+), 237 deletions(-) delete mode 100644 fw/Core/Inc/led.h delete mode 100644 fw/Core/Src/led.c create mode 100644 fw/Debug/Core/Src/led.su create mode 100644 fw/Debug/Core/Src/main.d create mode 100644 fw/Debug/Core/Src/main.o create mode 100644 fw/Debug/Core/Src/main.su create mode 100644 fw/Debug/Core/Src/stm32l0xx_it.d create mode 100644 fw/Debug/Core/Src/stm32l0xx_it.o create mode 100644 fw/Debug/Core/Src/stm32l0xx_it.su create mode 100644 fw/Debug/Core/Src/subdir.mk create mode 100644 fw/Debug/Core/Src/syscalls.d create mode 100644 fw/Debug/Core/Src/syscalls.o create mode 100644 fw/Debug/Core/Src/syscalls.su create mode 100644 fw/Debug/Core/Src/sysmem.d create mode 100644 fw/Debug/Core/Src/sysmem.o create mode 100644 fw/Debug/Core/Src/sysmem.su create mode 100644 fw/Debug/Core/Src/system_stm32l0xx.d create mode 100644 fw/Debug/Core/Src/system_stm32l0xx.o create mode 100644 fw/Debug/Core/Src/system_stm32l0xx.su create mode 100644 fw/Debug/Core/Startup/startup_stm32l011f4ux.d create mode 100644 fw/Debug/Core/Startup/startup_stm32l011f4ux.o create mode 100644 fw/Debug/Core/Startup/subdir.mk create mode 100644 fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.d create mode 100644 fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o create mode 100644 fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.su create mode 100644 fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.d create mode 100644 fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o create mode 100644 fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.su create mode 100644 fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.d create mode 100644 fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o create mode 100644 fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.su create mode 100644 fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.d create mode 100644 fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o create mode 100644 fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.su create mode 100644 fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.d create mode 100644 fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o create mode 100644 fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.su create mode 100644 fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_pwr.d create mode 100644 fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_pwr.o create mode 100644 fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_pwr.su create mode 100644 fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.d create mode 100644 fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o create mode 100644 fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.su create mode 100644 fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.d create mode 100644 fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o create mode 100644 fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.su create mode 100644 fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/subdir.mk create mode 100755 fw/Debug/iaq_wired_sensor.bin create mode 100755 fw/Debug/iaq_wired_sensor.elf create mode 100644 fw/Debug/iaq_wired_sensor.list create mode 100644 fw/Debug/iaq_wired_sensor.map create mode 100644 fw/Debug/makefile create mode 100644 fw/Debug/objects.list create mode 100644 fw/Debug/objects.mk create mode 100644 fw/Debug/sources.mk diff --git a/fw/.cproject b/fw/.cproject index e5db677..6968ac3 100644 --- a/fw/.cproject +++ b/fw/.cproject @@ -47,7 +47,7 @@