├── .cproject
├── .mxproject
├── .project
├── .settings
└── language.settings.xml
├── Debug
├── .gitignore
├── Drivers
│ ├── CMSIS
│ │ └── Device
│ │ │ └── ST
│ │ │ └── STM32F4xx
│ │ │ └── Source
│ │ │ └── Templates
│ │ │ ├── gcc
│ │ │ └── subdir.mk
│ │ │ ├── subdir.mk
│ │ │ └── system_stm32f4xx.d
│ └── STM32F4xx_HAL_Driver
│ │ └── Src
│ │ ├── stm32f4xx_hal.d
│ │ ├── stm32f4xx_hal_cortex.d
│ │ ├── stm32f4xx_hal_dma.d
│ │ ├── stm32f4xx_hal_dma_ex.d
│ │ ├── stm32f4xx_hal_flash.d
│ │ ├── stm32f4xx_hal_flash_ex.d
│ │ ├── stm32f4xx_hal_flash_ramfunc.d
│ │ ├── stm32f4xx_hal_gpio.d
│ │ ├── stm32f4xx_hal_pwr.d
│ │ ├── stm32f4xx_hal_pwr_ex.d
│ │ ├── stm32f4xx_hal_rcc.d
│ │ ├── stm32f4xx_hal_rcc_ex.d
│ │ ├── stm32f4xx_hal_tim.d
│ │ ├── stm32f4xx_hal_tim_ex.d
│ │ ├── stm32f4xx_hal_uart.d
│ │ └── subdir.mk
├── Src
│ ├── crc32.d
│ ├── frame.d
│ ├── inet.d
│ ├── main.d
│ ├── message.d
│ ├── stm32f4xx_hal_msp.d
│ ├── stm32f4xx_it.d
│ ├── subdir.mk
│ └── syscalls.d
├── USART_INT.bin
├── USART_INT.elf
├── makefile
├── objects.list
├── objects.mk
├── output.map
└── sources.mk
├── Drivers
├── CMSIS
│ ├── Device
│ │ └── ST
│ │ │ └── STM32F4xx
│ │ │ ├── Include
│ │ │ ├── stm32f401xc.h
│ │ │ ├── stm32f401xe.h
│ │ │ ├── stm32f405xx.h
│ │ │ ├── stm32f407xx.h
│ │ │ ├── stm32f410cx.h
│ │ │ ├── stm32f410rx.h
│ │ │ ├── stm32f410tx.h
│ │ │ ├── stm32f411xe.h
│ │ │ ├── stm32f412cx.h
│ │ │ ├── stm32f412rx.h
│ │ │ ├── stm32f412vx.h
│ │ │ ├── stm32f412zx.h
│ │ │ ├── stm32f415xx.h
│ │ │ ├── stm32f417xx.h
│ │ │ ├── stm32f427xx.h
│ │ │ ├── stm32f429xx.h
│ │ │ ├── stm32f437xx.h
│ │ │ ├── stm32f439xx.h
│ │ │ ├── stm32f446xx.h
│ │ │ ├── stm32f469xx.h
│ │ │ ├── stm32f479xx.h
│ │ │ ├── stm32f4xx.h
│ │ │ └── system_stm32f4xx.h
│ │ │ └── Source
│ │ │ └── Templates
│ │ │ ├── gcc
│ │ │ └── startup_stm32f411xe.s
│ │ │ └── system_stm32f4xx.c
│ └── Include
│ │ ├── arm_common_tables.h
│ │ ├── arm_const_structs.h
│ │ ├── arm_math.h
│ │ ├── cmsis_armcc.h
│ │ ├── cmsis_armcc_V6.h
│ │ ├── cmsis_gcc.h
│ │ ├── core_cm0.h
│ │ ├── core_cm0plus.h
│ │ ├── core_cm3.h
│ │ ├── core_cm4.h
│ │ ├── core_cm7.h
│ │ ├── core_cmFunc.h
│ │ ├── core_cmInstr.h
│ │ ├── core_cmSimd.h
│ │ ├── core_sc000.h
│ │ └── core_sc300.h
└── STM32F4xx_HAL_Driver
│ ├── Inc
│ ├── Legacy
│ │ └── stm32_hal_legacy.h
│ ├── stm32f4xx_hal.h
│ ├── stm32f4xx_hal_cortex.h
│ ├── stm32f4xx_hal_def.h
│ ├── stm32f4xx_hal_dma.h
│ ├── stm32f4xx_hal_dma_ex.h
│ ├── stm32f4xx_hal_flash.h
│ ├── stm32f4xx_hal_flash_ex.h
│ ├── stm32f4xx_hal_flash_ramfunc.h
│ ├── stm32f4xx_hal_gpio.h
│ ├── stm32f4xx_hal_gpio_ex.h
│ ├── stm32f4xx_hal_pwr.h
│ ├── stm32f4xx_hal_pwr_ex.h
│ ├── stm32f4xx_hal_rcc.h
│ ├── stm32f4xx_hal_rcc_ex.h
│ ├── stm32f4xx_hal_tim.h
│ ├── stm32f4xx_hal_tim_ex.h
│ └── stm32f4xx_hal_uart.h
│ └── Src
│ ├── stm32f4xx_hal.c
│ ├── stm32f4xx_hal_cortex.c
│ ├── stm32f4xx_hal_dma.c
│ ├── stm32f4xx_hal_dma_ex.c
│ ├── stm32f4xx_hal_flash.c
│ ├── stm32f4xx_hal_flash_ex.c
│ ├── stm32f4xx_hal_flash_ramfunc.c
│ ├── stm32f4xx_hal_gpio.c
│ ├── stm32f4xx_hal_pwr.c
│ ├── stm32f4xx_hal_pwr_ex.c
│ ├── stm32f4xx_hal_rcc.c
│ ├── stm32f4xx_hal_rcc_ex.c
│ ├── stm32f4xx_hal_tim.c
│ ├── stm32f4xx_hal_tim_ex.c
│ └── stm32f4xx_hal_uart.c
├── Inc
├── AccelStepper.h
├── crc32.h
├── frame.h
├── inet.h
├── main.h
├── message.h
├── mxconstants.h
├── stm32f4xx_hal_conf.h
└── stm32f4xx_it.h
├── README.md
├── STM32F411RETx_FLASH.ld
├── Src
├── AccelStepper.c
├── crc32.c
├── frame.c
├── inet.c
├── main.c
├── message.c
├── stm32f4xx_hal_msp.c
├── stm32f4xx_it.c
└── syscalls.c
└── USART_INT.ioc
/.mxproject:
--------------------------------------------------------------------------------
1 | [PreviousLibFiles]
2 | LibFiles=Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h;Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h;Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h;Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h;Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h;Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h;Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h;Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h;Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h;Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h;Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h;Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h;Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h;Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h;Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h;Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h;Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h;Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h;Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c;Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c;Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c;Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c;Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c;Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c;Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c;Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c;Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c;Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c;Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c;Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c;Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c;Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c;Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c;Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/system_stm32f4xx.c;Drivers/CMSIS/Include/arm_common_tables.h;Drivers/CMSIS/Include/arm_const_structs.h;Drivers/CMSIS/Include/arm_math.h;Drivers/CMSIS/Include/cmsis_armcc.h;Drivers/CMSIS/Include/cmsis_armcc_V6.h;Drivers/CMSIS/Include/cmsis_gcc.h;Drivers/CMSIS/Include/core_cm0.h;Drivers/CMSIS/Include/core_cm0plus.h;Drivers/CMSIS/Include/core_cm3.h;Drivers/CMSIS/Include/core_cm4.h;Drivers/CMSIS/Include/core_cm7.h;Drivers/CMSIS/Include/core_cmFunc.h;Drivers/CMSIS/Include/core_cmInstr.h;Drivers/CMSIS/Include/core_cmSimd.h;Drivers/CMSIS/Include/core_sc000.h;Drivers/CMSIS/Include/core_sc300.h;Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xc.h;Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h;Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f405xx.h;Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h;Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f410cx.h;Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f410rx.h;Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f410tx.h;Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h;Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f412cx.h;Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f412rx.h;Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f412vx.h;Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f412zx.h;Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f415xx.h;Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f417xx.h;Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f427xx.h;Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f429xx.h;Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f437xx.h;Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f439xx.h;Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f446xx.h;Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f469xx.h;Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f479xx.h;Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h;Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h;
3 |
4 | [PreviousGenFiles]
5 | HeaderPath=C:/Users/vojis/Documents/stm_projects/USART_INT/Inc
6 | SourcePath=C:/Users/vojis/Documents/stm_projects/USART_INT/Src
7 | SourceFiles=stm32f4xx_it.h;stm32f4xx_hal_conf.h;mxconstants.h;stm32f4xx_it.c;stm32f4xx_hal_msp.c;main.c;
8 | HeaderFiles=stm32f4xx_it.h;stm32f4xx_hal_conf.h;mxconstants.h;
9 |
10 | [PreviousUsedRideFiles]
11 | HeaderPath=..\Drivers\STM32F4xx_HAL_Driver\Inc;..\Drivers\STM32F4xx_HAL_Driver\Inc\Legacy;..\Drivers\CMSIS\Include;..\Drivers\CMSIS\Device\ST\STM32F4xx\Include;
12 | SourceFiles=../Src/main.c;../Src/stm32f4xx_it.c;../Src/stm32f4xx_hal_msp.c;../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c;../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c;../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c;../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c;../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c;../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c;../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c;../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c;../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c;../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c;../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c;../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c;../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c;../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c;../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c;../Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/system_stm32f4xx.c;../Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f411xe.s;
13 |
14 |
--------------------------------------------------------------------------------
/.project:
--------------------------------------------------------------------------------
1 |
2 |
3 | USART_INT
4 |
5 |
6 |
7 |
8 |
9 | org.eclipse.cdt.managedbuilder.core.genmakebuilder
10 | clean,full,incremental,
11 |
12 |
13 |
14 |
15 | org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder
16 | full,incremental,
17 |
18 |
19 |
20 |
21 |
22 | org.eclipse.cdt.core.cnature
23 | org.eclipse.cdt.managedbuilder.core.managedBuildNature
24 | org.eclipse.cdt.managedbuilder.core.ScannerConfigNature
25 | fr.ac6.mcu.ide.core.MCUProjectNature
26 |
27 |
28 |
--------------------------------------------------------------------------------
/.settings/language.settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/Debug/.gitignore:
--------------------------------------------------------------------------------
1 | /Drivers/
2 | /Src/
3 | /makefile
4 | /objects.list
5 | /objects.mk
6 |
--------------------------------------------------------------------------------
/Debug/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/subdir.mk:
--------------------------------------------------------------------------------
1 | ################################################################################
2 | # Automatically-generated file. Do not edit!
3 | ################################################################################
4 |
5 | # Add inputs and outputs from these tool invocations to the build variables
6 | S_SRCS += \
7 | ../Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f411xe.s
8 |
9 | OBJS += \
10 | ./Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f411xe.o
11 |
12 |
13 | # Each subdirectory must supply rules for building sources it contributes
14 | Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/%.o: ../Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/%.s
15 | @echo 'Building file: $<'
16 | @echo 'Invoking: MCU GCC Assembler'
17 | @echo %cd%
18 | arm-none-eabi-as -mcpu=cortex-m4 -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16 -g -o "$@" "$<"
19 | @echo 'Finished building: $<'
20 | @echo ' '
21 |
22 |
23 |
--------------------------------------------------------------------------------
/Debug/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/subdir.mk:
--------------------------------------------------------------------------------
1 | ################################################################################
2 | # Automatically-generated file. Do not edit!
3 | ################################################################################
4 |
5 | # Add inputs and outputs from these tool invocations to the build variables
6 | C_SRCS += \
7 | ../Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/system_stm32f4xx.c
8 |
9 | OBJS += \
10 | ./Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/system_stm32f4xx.o
11 |
12 | C_DEPS += \
13 | ./Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/system_stm32f4xx.d
14 |
15 |
16 | # Each subdirectory must supply rules for building sources it contributes
17 | Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/%.o: ../Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/%.c
18 | @echo 'Building file: $<'
19 | @echo 'Invoking: MCU GCC Compiler'
20 | @echo %cd%
21 | arm-none-eabi-gcc -mcpu=cortex-m4 -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16 -D__weak="__attribute__((weak))" -D__packed="__attribute__((__packed__))" -DUSE_HAL_DRIVER -DSTM32F411xE -DSTM32F4 -DSTM32 -I"C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc" -I"C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc" -I"C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy" -I"C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include" -I"C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include" -Os -g3 -Wall -fmessage-length=0 -ffunction-sections -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" -o "$@" "$<"
22 | @echo 'Finished building: $<'
23 | @echo ' '
24 |
25 |
26 |
--------------------------------------------------------------------------------
/Debug/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/system_stm32f4xx.d:
--------------------------------------------------------------------------------
1 | Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/system_stm32f4xx.o: \
2 | ../Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/system_stm32f4xx.c \
3 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
4 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h \
5 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h \
6 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h \
7 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h \
8 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h \
9 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h \
10 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
11 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
12 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h \
13 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h \
14 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
15 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
16 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
17 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
18 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
19 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
20 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
21 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
22 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
23 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
24 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
25 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
26 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
27 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
28 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h
29 |
30 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
31 |
32 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h:
33 |
34 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h:
35 |
36 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h:
37 |
38 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h:
39 |
40 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h:
41 |
42 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h:
43 |
44 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
45 |
46 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
47 |
48 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h:
49 |
50 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h:
51 |
52 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
53 |
54 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
55 |
56 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
57 |
58 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
59 |
60 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
61 |
62 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
63 |
64 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
65 |
66 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
67 |
68 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
69 |
70 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
71 |
72 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
73 |
74 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
75 |
76 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
77 |
78 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
79 |
80 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h:
81 |
--------------------------------------------------------------------------------
/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.d:
--------------------------------------------------------------------------------
1 | Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o: \
2 | ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c \
3 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
4 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h \
5 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h \
6 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
7 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
8 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
9 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h \
10 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h \
11 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h \
12 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h \
13 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h \
14 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h \
15 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
16 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
17 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
18 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
19 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
20 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
21 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
22 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
23 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
24 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
25 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
26 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
27 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
28 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h
29 |
30 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
31 |
32 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h:
33 |
34 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h:
35 |
36 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
37 |
38 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
39 |
40 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
41 |
42 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h:
43 |
44 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h:
45 |
46 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h:
47 |
48 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h:
49 |
50 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h:
51 |
52 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h:
53 |
54 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
55 |
56 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
57 |
58 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
59 |
60 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
61 |
62 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
63 |
64 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
65 |
66 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
67 |
68 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
69 |
70 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
71 |
72 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
73 |
74 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
75 |
76 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
77 |
78 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
79 |
80 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h:
81 |
--------------------------------------------------------------------------------
/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.d:
--------------------------------------------------------------------------------
1 | Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o: \
2 | ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c \
3 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
4 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h \
5 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h \
6 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
7 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
8 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
9 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h \
10 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h \
11 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h \
12 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h \
13 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h \
14 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h \
15 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
16 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
17 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
18 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
19 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
20 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
21 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
22 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
23 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
24 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
25 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
26 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
27 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
28 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h
29 |
30 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
31 |
32 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h:
33 |
34 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h:
35 |
36 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
37 |
38 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
39 |
40 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
41 |
42 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h:
43 |
44 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h:
45 |
46 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h:
47 |
48 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h:
49 |
50 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h:
51 |
52 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h:
53 |
54 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
55 |
56 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
57 |
58 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
59 |
60 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
61 |
62 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
63 |
64 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
65 |
66 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
67 |
68 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
69 |
70 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
71 |
72 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
73 |
74 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
75 |
76 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
77 |
78 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
79 |
80 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h:
81 |
--------------------------------------------------------------------------------
/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.d:
--------------------------------------------------------------------------------
1 | Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o: \
2 | ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c \
3 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
4 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h \
5 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h \
6 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
7 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
8 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
9 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h \
10 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h \
11 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h \
12 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h \
13 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h \
14 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h \
15 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
16 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
17 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
18 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
19 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
20 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
21 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
22 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
23 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
24 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
25 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
26 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
27 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
28 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h
29 |
30 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
31 |
32 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h:
33 |
34 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h:
35 |
36 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
37 |
38 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
39 |
40 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
41 |
42 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h:
43 |
44 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h:
45 |
46 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h:
47 |
48 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h:
49 |
50 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h:
51 |
52 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h:
53 |
54 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
55 |
56 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
57 |
58 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
59 |
60 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
61 |
62 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
63 |
64 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
65 |
66 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
67 |
68 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
69 |
70 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
71 |
72 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
73 |
74 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
75 |
76 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
77 |
78 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
79 |
80 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h:
81 |
--------------------------------------------------------------------------------
/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.d:
--------------------------------------------------------------------------------
1 | Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.o: \
2 | ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c \
3 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
4 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h \
5 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h \
6 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
7 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
8 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
9 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h \
10 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h \
11 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h \
12 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h \
13 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h \
14 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h \
15 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
16 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
17 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
18 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
19 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
20 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
21 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
22 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
23 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
24 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
25 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
26 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
27 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
28 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h
29 |
30 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
31 |
32 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h:
33 |
34 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h:
35 |
36 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
37 |
38 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
39 |
40 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
41 |
42 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h:
43 |
44 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h:
45 |
46 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h:
47 |
48 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h:
49 |
50 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h:
51 |
52 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h:
53 |
54 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
55 |
56 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
57 |
58 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
59 |
60 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
61 |
62 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
63 |
64 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
65 |
66 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
67 |
68 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
69 |
70 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
71 |
72 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
73 |
74 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
75 |
76 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
77 |
78 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
79 |
80 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h:
81 |
--------------------------------------------------------------------------------
/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.d:
--------------------------------------------------------------------------------
1 | Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.o: \
2 | ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c \
3 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
4 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h \
5 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h \
6 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
7 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
8 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
9 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h \
10 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h \
11 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h \
12 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h \
13 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h \
14 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h \
15 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
16 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
17 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
18 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
19 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
20 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
21 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
22 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
23 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
24 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
25 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
26 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
27 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
28 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h
29 |
30 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
31 |
32 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h:
33 |
34 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h:
35 |
36 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
37 |
38 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
39 |
40 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
41 |
42 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h:
43 |
44 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h:
45 |
46 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h:
47 |
48 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h:
49 |
50 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h:
51 |
52 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h:
53 |
54 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
55 |
56 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
57 |
58 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
59 |
60 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
61 |
62 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
63 |
64 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
65 |
66 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
67 |
68 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
69 |
70 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
71 |
72 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
73 |
74 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
75 |
76 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
77 |
78 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
79 |
80 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h:
81 |
--------------------------------------------------------------------------------
/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.d:
--------------------------------------------------------------------------------
1 | Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.o: \
2 | ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c \
3 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
4 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h \
5 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h \
6 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
7 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
8 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
9 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h \
10 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h \
11 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h \
12 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h \
13 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h \
14 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h \
15 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
16 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
17 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
18 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
19 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
20 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
21 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
22 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
23 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
24 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
25 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
26 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
27 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
28 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h
29 |
30 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
31 |
32 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h:
33 |
34 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h:
35 |
36 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
37 |
38 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
39 |
40 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
41 |
42 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h:
43 |
44 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h:
45 |
46 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h:
47 |
48 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h:
49 |
50 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h:
51 |
52 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h:
53 |
54 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
55 |
56 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
57 |
58 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
59 |
60 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
61 |
62 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
63 |
64 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
65 |
66 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
67 |
68 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
69 |
70 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
71 |
72 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
73 |
74 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
75 |
76 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
77 |
78 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
79 |
80 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h:
81 |
--------------------------------------------------------------------------------
/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.d:
--------------------------------------------------------------------------------
1 | Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.o: \
2 | ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c \
3 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
4 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h \
5 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h \
6 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
7 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
8 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
9 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h \
10 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h \
11 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h \
12 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h \
13 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h \
14 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h \
15 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
16 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
17 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
18 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
19 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
20 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
21 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
22 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
23 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
24 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
25 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
26 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
27 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
28 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h
29 |
30 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
31 |
32 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h:
33 |
34 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h:
35 |
36 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
37 |
38 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
39 |
40 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
41 |
42 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h:
43 |
44 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h:
45 |
46 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h:
47 |
48 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h:
49 |
50 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h:
51 |
52 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h:
53 |
54 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
55 |
56 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
57 |
58 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
59 |
60 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
61 |
62 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
63 |
64 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
65 |
66 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
67 |
68 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
69 |
70 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
71 |
72 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
73 |
74 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
75 |
76 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
77 |
78 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
79 |
80 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h:
81 |
--------------------------------------------------------------------------------
/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.d:
--------------------------------------------------------------------------------
1 | Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o: \
2 | ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c \
3 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
4 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h \
5 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h \
6 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
7 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
8 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
9 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h \
10 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h \
11 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h \
12 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h \
13 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h \
14 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h \
15 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
16 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
17 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
18 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
19 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
20 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
21 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
22 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
23 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
24 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
25 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
26 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
27 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
28 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h
29 |
30 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
31 |
32 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h:
33 |
34 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h:
35 |
36 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
37 |
38 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
39 |
40 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
41 |
42 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h:
43 |
44 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h:
45 |
46 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h:
47 |
48 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h:
49 |
50 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h:
51 |
52 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h:
53 |
54 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
55 |
56 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
57 |
58 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
59 |
60 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
61 |
62 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
63 |
64 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
65 |
66 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
67 |
68 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
69 |
70 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
71 |
72 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
73 |
74 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
75 |
76 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
77 |
78 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
79 |
80 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h:
81 |
--------------------------------------------------------------------------------
/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.d:
--------------------------------------------------------------------------------
1 | Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.o: \
2 | ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c \
3 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
4 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h \
5 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h \
6 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
7 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
8 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
9 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h \
10 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h \
11 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h \
12 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h \
13 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h \
14 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h \
15 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
16 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
17 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
18 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
19 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
20 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
21 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
22 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
23 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
24 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
25 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
26 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
27 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
28 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h
29 |
30 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
31 |
32 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h:
33 |
34 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h:
35 |
36 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
37 |
38 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
39 |
40 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
41 |
42 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h:
43 |
44 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h:
45 |
46 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h:
47 |
48 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h:
49 |
50 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h:
51 |
52 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h:
53 |
54 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
55 |
56 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
57 |
58 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
59 |
60 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
61 |
62 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
63 |
64 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
65 |
66 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
67 |
68 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
69 |
70 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
71 |
72 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
73 |
74 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
75 |
76 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
77 |
78 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
79 |
80 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h:
81 |
--------------------------------------------------------------------------------
/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.d:
--------------------------------------------------------------------------------
1 | Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.o: \
2 | ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c \
3 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
4 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h \
5 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h \
6 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
7 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
8 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
9 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h \
10 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h \
11 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h \
12 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h \
13 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h \
14 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h \
15 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
16 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
17 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
18 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
19 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
20 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
21 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
22 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
23 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
24 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
25 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
26 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
27 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
28 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h
29 |
30 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
31 |
32 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h:
33 |
34 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h:
35 |
36 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
37 |
38 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
39 |
40 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
41 |
42 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h:
43 |
44 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h:
45 |
46 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h:
47 |
48 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h:
49 |
50 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h:
51 |
52 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h:
53 |
54 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
55 |
56 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
57 |
58 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
59 |
60 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
61 |
62 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
63 |
64 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
65 |
66 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
67 |
68 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
69 |
70 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
71 |
72 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
73 |
74 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
75 |
76 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
77 |
78 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
79 |
80 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h:
81 |
--------------------------------------------------------------------------------
/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.d:
--------------------------------------------------------------------------------
1 | Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o: \
2 | ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c \
3 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
4 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h \
5 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h \
6 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
7 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
8 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
9 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h \
10 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h \
11 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h \
12 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h \
13 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h \
14 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h \
15 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
16 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
17 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
18 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
19 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
20 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
21 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
22 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
23 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
24 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
25 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
26 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
27 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
28 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h
29 |
30 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
31 |
32 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h:
33 |
34 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h:
35 |
36 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
37 |
38 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
39 |
40 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
41 |
42 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h:
43 |
44 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h:
45 |
46 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h:
47 |
48 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h:
49 |
50 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h:
51 |
52 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h:
53 |
54 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
55 |
56 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
57 |
58 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
59 |
60 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
61 |
62 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
63 |
64 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
65 |
66 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
67 |
68 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
69 |
70 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
71 |
72 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
73 |
74 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
75 |
76 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
77 |
78 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
79 |
80 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h:
81 |
--------------------------------------------------------------------------------
/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.d:
--------------------------------------------------------------------------------
1 | Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o: \
2 | ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c \
3 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
4 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h \
5 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h \
6 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
7 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
8 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
9 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h \
10 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h \
11 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h \
12 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h \
13 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h \
14 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h \
15 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
16 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
17 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
18 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
19 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
20 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
21 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
22 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
23 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
24 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
25 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
26 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
27 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
28 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h
29 |
30 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
31 |
32 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h:
33 |
34 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h:
35 |
36 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
37 |
38 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
39 |
40 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
41 |
42 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h:
43 |
44 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h:
45 |
46 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h:
47 |
48 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h:
49 |
50 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h:
51 |
52 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h:
53 |
54 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
55 |
56 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
57 |
58 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
59 |
60 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
61 |
62 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
63 |
64 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
65 |
66 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
67 |
68 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
69 |
70 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
71 |
72 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
73 |
74 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
75 |
76 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
77 |
78 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
79 |
80 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h:
81 |
--------------------------------------------------------------------------------
/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.d:
--------------------------------------------------------------------------------
1 | Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o: \
2 | ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c \
3 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
4 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h \
5 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h \
6 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
7 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
8 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
9 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h \
10 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h \
11 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h \
12 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h \
13 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h \
14 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h \
15 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
16 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
17 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
18 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
19 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
20 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
21 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
22 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
23 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
24 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
25 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
26 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
27 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
28 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h
29 |
30 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
31 |
32 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h:
33 |
34 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h:
35 |
36 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
37 |
38 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
39 |
40 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
41 |
42 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h:
43 |
44 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h:
45 |
46 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h:
47 |
48 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h:
49 |
50 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h:
51 |
52 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h:
53 |
54 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
55 |
56 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
57 |
58 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
59 |
60 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
61 |
62 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
63 |
64 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
65 |
66 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
67 |
68 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
69 |
70 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
71 |
72 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
73 |
74 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
75 |
76 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
77 |
78 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
79 |
80 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h:
81 |
--------------------------------------------------------------------------------
/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.d:
--------------------------------------------------------------------------------
1 | Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o: \
2 | ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c \
3 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
4 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h \
5 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h \
6 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
7 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
8 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
9 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h \
10 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h \
11 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h \
12 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h \
13 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h \
14 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h \
15 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
16 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
17 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
18 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
19 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
20 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
21 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
22 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
23 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
24 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
25 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
26 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
27 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
28 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h
29 |
30 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
31 |
32 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h:
33 |
34 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h:
35 |
36 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
37 |
38 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
39 |
40 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
41 |
42 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h:
43 |
44 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h:
45 |
46 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h:
47 |
48 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h:
49 |
50 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h:
51 |
52 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h:
53 |
54 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
55 |
56 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
57 |
58 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
59 |
60 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
61 |
62 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
63 |
64 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
65 |
66 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
67 |
68 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
69 |
70 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
71 |
72 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
73 |
74 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
75 |
76 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
77 |
78 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
79 |
80 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h:
81 |
--------------------------------------------------------------------------------
/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.d:
--------------------------------------------------------------------------------
1 | Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o: \
2 | ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c \
3 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
4 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h \
5 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h \
6 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
7 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
8 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
9 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h \
10 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h \
11 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h \
12 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h \
13 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h \
14 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h \
15 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
16 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
17 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
18 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
19 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
20 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
21 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
22 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
23 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
24 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
25 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
26 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
27 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
28 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h
29 |
30 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
31 |
32 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h:
33 |
34 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h:
35 |
36 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
37 |
38 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
39 |
40 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
41 |
42 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h:
43 |
44 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h:
45 |
46 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h:
47 |
48 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h:
49 |
50 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h:
51 |
52 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h:
53 |
54 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
55 |
56 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
57 |
58 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
59 |
60 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
61 |
62 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
63 |
64 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
65 |
66 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
67 |
68 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
69 |
70 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
71 |
72 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
73 |
74 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
75 |
76 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
77 |
78 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
79 |
80 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h:
81 |
--------------------------------------------------------------------------------
/Debug/Drivers/STM32F4xx_HAL_Driver/Src/subdir.mk:
--------------------------------------------------------------------------------
1 | ################################################################################
2 | # Automatically-generated file. Do not edit!
3 | ################################################################################
4 |
5 | # Add inputs and outputs from these tool invocations to the build variables
6 | C_SRCS += \
7 | ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c \
8 | ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c \
9 | ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c \
10 | ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c \
11 | ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c \
12 | ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c \
13 | ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c \
14 | ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c \
15 | ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c \
16 | ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c \
17 | ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c \
18 | ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c \
19 | ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c \
20 | ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c \
21 | ../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c
22 |
23 | OBJS += \
24 | ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o \
25 | ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o \
26 | ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o \
27 | ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.o \
28 | ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.o \
29 | ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.o \
30 | ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.o \
31 | ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o \
32 | ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.o \
33 | ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.o \
34 | ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o \
35 | ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o \
36 | ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o \
37 | ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o \
38 | ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o
39 |
40 | C_DEPS += \
41 | ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.d \
42 | ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.d \
43 | ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.d \
44 | ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.d \
45 | ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.d \
46 | ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.d \
47 | ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.d \
48 | ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.d \
49 | ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.d \
50 | ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.d \
51 | ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.d \
52 | ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.d \
53 | ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.d \
54 | ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.d \
55 | ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.d
56 |
57 |
58 | # Each subdirectory must supply rules for building sources it contributes
59 | Drivers/STM32F4xx_HAL_Driver/Src/%.o: ../Drivers/STM32F4xx_HAL_Driver/Src/%.c
60 | @echo 'Building file: $<'
61 | @echo 'Invoking: MCU GCC Compiler'
62 | @echo %cd%
63 | arm-none-eabi-gcc -mcpu=cortex-m4 -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16 -D__weak="__attribute__((weak))" -D__packed="__attribute__((__packed__))" -DUSE_HAL_DRIVER -DSTM32F411xE -DSTM32F4 -DSTM32 -I"C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc" -I"C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc" -I"C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy" -I"C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include" -I"C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include" -Os -g3 -Wall -fmessage-length=0 -ffunction-sections -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" -o "$@" "$<"
64 | @echo 'Finished building: $<'
65 | @echo ' '
66 |
67 |
68 |
--------------------------------------------------------------------------------
/Debug/Src/crc32.d:
--------------------------------------------------------------------------------
1 | Src/crc32.o: ../Src/crc32.c \
2 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/crc32.h
3 |
4 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/crc32.h:
5 |
--------------------------------------------------------------------------------
/Debug/Src/frame.d:
--------------------------------------------------------------------------------
1 | Src/frame.o: ../Src/frame.c \
2 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/frame.h \
3 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/message.h \
4 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/message.h
5 |
6 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/frame.h:
7 |
8 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/message.h:
9 |
10 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/message.h:
11 |
--------------------------------------------------------------------------------
/Debug/Src/inet.d:
--------------------------------------------------------------------------------
1 | Src/inet.o: ../Src/inet.c \
2 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/inet.h
3 |
4 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/inet.h:
5 |
--------------------------------------------------------------------------------
/Debug/Src/main.d:
--------------------------------------------------------------------------------
1 | Src/main.o: ../Src/main.c \
2 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
3 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h \
4 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h \
5 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
6 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
7 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
8 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h \
9 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h \
10 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h \
11 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h \
12 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h \
13 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h \
14 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
15 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
16 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
17 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
18 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
19 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
20 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
21 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
22 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
23 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
24 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
25 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
26 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
27 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \
28 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/message.h \
29 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/frame.h \
30 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/message.h \
31 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/AccelStepper.h \
32 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/main.h
33 |
34 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
35 |
36 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h:
37 |
38 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h:
39 |
40 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
41 |
42 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
43 |
44 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
45 |
46 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h:
47 |
48 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h:
49 |
50 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h:
51 |
52 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h:
53 |
54 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h:
55 |
56 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h:
57 |
58 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
59 |
60 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
61 |
62 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
63 |
64 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
65 |
66 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
67 |
68 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
69 |
70 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
71 |
72 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
73 |
74 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
75 |
76 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
77 |
78 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
79 |
80 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
81 |
82 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
83 |
84 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h:
85 |
86 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/message.h:
87 |
88 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/frame.h:
89 |
90 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/message.h:
91 |
92 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/AccelStepper.h:
93 |
94 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/main.h:
95 |
--------------------------------------------------------------------------------
/Debug/Src/message.d:
--------------------------------------------------------------------------------
1 | Src/message.o: ../Src/message.c \
2 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/message.h \
3 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/crc32.h \
4 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/inet.h
5 |
6 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/message.h:
7 |
8 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/crc32.h:
9 |
10 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/inet.h:
11 |
--------------------------------------------------------------------------------
/Debug/Src/stm32f4xx_hal_msp.d:
--------------------------------------------------------------------------------
1 | Src/stm32f4xx_hal_msp.o: ../Src/stm32f4xx_hal_msp.c \
2 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
3 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h \
4 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h \
5 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
6 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
7 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
8 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h \
9 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h \
10 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h \
11 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h \
12 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h \
13 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h \
14 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
15 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
16 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
17 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
18 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
19 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
20 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
21 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
22 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
23 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
24 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
25 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
26 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
27 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h
28 |
29 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
30 |
31 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h:
32 |
33 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h:
34 |
35 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
36 |
37 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
38 |
39 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
40 |
41 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h:
42 |
43 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h:
44 |
45 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h:
46 |
47 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h:
48 |
49 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h:
50 |
51 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h:
52 |
53 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
54 |
55 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
56 |
57 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
58 |
59 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
60 |
61 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
62 |
63 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
64 |
65 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
66 |
67 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
68 |
69 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
70 |
71 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
72 |
73 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
74 |
75 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
76 |
77 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
78 |
79 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h:
80 |
--------------------------------------------------------------------------------
/Debug/Src/stm32f4xx_it.d:
--------------------------------------------------------------------------------
1 | Src/stm32f4xx_it.o: ../Src/stm32f4xx_it.c \
2 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
3 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h \
4 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h \
5 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
6 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \
7 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \
8 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h \
9 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h \
10 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h \
11 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h \
12 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h \
13 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h \
14 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \
15 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
16 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \
17 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \
18 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \
19 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \
20 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \
21 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \
22 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \
23 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \
24 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
25 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
26 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
27 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \
28 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_it.h
29 |
30 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
31 |
32 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_hal_conf.h:
33 |
34 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/mxconstants.h:
35 |
36 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h:
37 |
38 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h:
39 |
40 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
41 |
42 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h:
43 |
44 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cm4.h:
45 |
46 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmInstr.h:
47 |
48 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/cmsis_gcc.h:
49 |
50 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmFunc.h:
51 |
52 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include/core_cmSimd.h:
53 |
54 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
55 |
56 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
57 |
58 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h:
59 |
60 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h:
61 |
62 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h:
63 |
64 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h:
65 |
66 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
67 |
68 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h:
69 |
70 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h:
71 |
72 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h:
73 |
74 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
75 |
76 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
77 |
78 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
79 |
80 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h:
81 |
82 | C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc/stm32f4xx_it.h:
83 |
--------------------------------------------------------------------------------
/Debug/Src/subdir.mk:
--------------------------------------------------------------------------------
1 | ################################################################################
2 | # Automatically-generated file. Do not edit!
3 | ################################################################################
4 |
5 | # Add inputs and outputs from these tool invocations to the build variables
6 | C_SRCS += \
7 | ../Src/AccelStepper.c \
8 | ../Src/crc32.c \
9 | ../Src/frame.c \
10 | ../Src/inet.c \
11 | ../Src/main.c \
12 | ../Src/message.c \
13 | ../Src/stm32f4xx_hal_msp.c \
14 | ../Src/stm32f4xx_it.c \
15 | ../Src/syscalls.c
16 |
17 | OBJS += \
18 | ./Src/AccelStepper.o \
19 | ./Src/crc32.o \
20 | ./Src/frame.o \
21 | ./Src/inet.o \
22 | ./Src/main.o \
23 | ./Src/message.o \
24 | ./Src/stm32f4xx_hal_msp.o \
25 | ./Src/stm32f4xx_it.o \
26 | ./Src/syscalls.o
27 |
28 | C_DEPS += \
29 | ./Src/AccelStepper.d \
30 | ./Src/crc32.d \
31 | ./Src/frame.d \
32 | ./Src/inet.d \
33 | ./Src/main.d \
34 | ./Src/message.d \
35 | ./Src/stm32f4xx_hal_msp.d \
36 | ./Src/stm32f4xx_it.d \
37 | ./Src/syscalls.d
38 |
39 |
40 | # Each subdirectory must supply rules for building sources it contributes
41 | Src/%.o: ../Src/%.c
42 | @echo 'Building file: $<'
43 | @echo 'Invoking: MCU GCC Compiler'
44 | @echo %cd%
45 | arm-none-eabi-gcc -mcpu=cortex-m4 -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16 -D__weak="__attribute__((weak))" -D__packed="__attribute__((__packed__))" -DUSE_HAL_DRIVER -DSTM32F411xE -DSTM32F4 -DSTM32 -I"C:/Users/vojis/Documents/stm_projects/USART_TLV/Inc" -I"C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc" -I"C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy" -I"C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Include" -I"C:/Users/vojis/Documents/stm_projects/USART_TLV/Drivers/CMSIS/Device/ST/STM32F4xx/Include" -Os -g3 -Wall -fmessage-length=0 -ffunction-sections -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" -o "$@" "$<"
46 | @echo 'Finished building: $<'
47 | @echo ' '
48 |
49 |
50 |
--------------------------------------------------------------------------------
/Debug/Src/syscalls.d:
--------------------------------------------------------------------------------
1 | Src/syscalls.o: ../Src/syscalls.c
2 |
--------------------------------------------------------------------------------
/Debug/USART_INT.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VojislavM/UART_TLV/e53f1ba937ba027d8c68ce89e6e11940b29a9d75/Debug/USART_INT.bin
--------------------------------------------------------------------------------
/Debug/USART_INT.elf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VojislavM/UART_TLV/e53f1ba937ba027d8c68ce89e6e11940b29a9d75/Debug/USART_INT.elf
--------------------------------------------------------------------------------
/Debug/makefile:
--------------------------------------------------------------------------------
1 | ################################################################################
2 | # Automatically-generated file. Do not edit!
3 | ################################################################################
4 |
5 | -include ../makefile.init
6 |
7 | RM := rm -rf
8 |
9 | # All of the sources participating in the build are defined here
10 | -include sources.mk
11 | -include Src/subdir.mk
12 | -include Drivers/STM32F4xx_HAL_Driver/Src/subdir.mk
13 | -include Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/subdir.mk
14 | -include Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/subdir.mk
15 | -include subdir.mk
16 | -include objects.mk
17 |
18 | ifneq ($(MAKECMDGOALS),clean)
19 | ifneq ($(strip $(S_UPPER_DEPS)),)
20 | -include $(S_UPPER_DEPS)
21 | endif
22 | ifneq ($(strip $(C_DEPS)),)
23 | -include $(C_DEPS)
24 | endif
25 | endif
26 |
27 | -include ../makefile.defs
28 |
29 | # Add inputs and outputs from these tool invocations to the build variables
30 |
31 | # All Target
32 | all: USART_INT.elf
33 |
34 | # Tool invocations
35 | USART_INT.elf: $(OBJS) $(USER_OBJS)
36 | @echo 'Building target: $@'
37 | @echo 'Invoking: MCU GCC Linker'
38 | arm-none-eabi-gcc -mcpu=cortex-m4 -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16 -specs=nosys.specs -specs=nano.specs -T"../STM32F411RETx_FLASH.ld" -Wl,-Map=output.map -Wl,--gc-sections -o "USART_INT.elf" @"objects.list" $(USER_OBJS) $(LIBS)
39 | @echo 'Finished building target: $@'
40 | @echo ' '
41 | $(MAKE) --no-print-directory post-build
42 |
43 | # Other Targets
44 | clean:
45 | -$(RM) *
46 | -@echo ' '
47 |
48 | post-build:
49 | -@echo 'Generating binary and Printing size information:'
50 | arm-none-eabi-objcopy -O binary "USART_INT.elf" "USART_INT.bin"
51 | arm-none-eabi-size "USART_INT.elf"
52 | -@echo ' '
53 |
54 | .PHONY: all clean dependents
55 | .SECONDARY: post-build
56 |
57 | -include ../makefile.targets
58 |
--------------------------------------------------------------------------------
/Debug/objects.list:
--------------------------------------------------------------------------------
1 | "Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f411xe.o"
2 | "Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/system_stm32f4xx.o"
3 | "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o"
4 | "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o"
5 | "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o"
6 | "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.o"
7 | "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.o"
8 | "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.o"
9 | "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.o"
10 | "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o"
11 | "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.o"
12 | "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.o"
13 | "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o"
14 | "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o"
15 | "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o"
16 | "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o"
17 | "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o"
18 | "Src/AccelStepper.o"
19 | "Src/crc32.o"
20 | "Src/frame.o"
21 | "Src/inet.o"
22 | "Src/main.o"
23 | "Src/message.o"
24 | "Src/stm32f4xx_hal_msp.o"
25 | "Src/stm32f4xx_it.o"
26 | "Src/syscalls.o"
27 |
--------------------------------------------------------------------------------
/Debug/objects.mk:
--------------------------------------------------------------------------------
1 | ################################################################################
2 | # Automatically-generated file. Do not edit!
3 | ################################################################################
4 |
5 | USER_OBJS :=
6 |
7 | LIBS := -lm
8 |
9 |
--------------------------------------------------------------------------------
/Debug/sources.mk:
--------------------------------------------------------------------------------
1 | ################################################################################
2 | # Automatically-generated file. Do not edit!
3 | ################################################################################
4 |
5 | OBJ_SRCS :=
6 | S_SRCS :=
7 | ASM_SRCS :=
8 | C_SRCS :=
9 | S_UPPER_SRCS :=
10 | O_SRCS :=
11 | EXECUTABLES :=
12 | OBJS :=
13 | S_UPPER_DEPS :=
14 | C_DEPS :=
15 |
16 | # Every subdirectory with source files must be described here
17 | SUBDIRS := \
18 | Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc \
19 | Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates \
20 | Drivers/STM32F4xx_HAL_Driver/Src \
21 | Src \
22 |
23 |
--------------------------------------------------------------------------------
/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xc.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VojislavM/UART_TLV/e53f1ba937ba027d8c68ce89e6e11940b29a9d75/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xc.h
--------------------------------------------------------------------------------
/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VojislavM/UART_TLV/e53f1ba937ba027d8c68ce89e6e11940b29a9d75/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h
--------------------------------------------------------------------------------
/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f405xx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VojislavM/UART_TLV/e53f1ba937ba027d8c68ce89e6e11940b29a9d75/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f405xx.h
--------------------------------------------------------------------------------
/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VojislavM/UART_TLV/e53f1ba937ba027d8c68ce89e6e11940b29a9d75/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h
--------------------------------------------------------------------------------
/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f410cx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VojislavM/UART_TLV/e53f1ba937ba027d8c68ce89e6e11940b29a9d75/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f410cx.h
--------------------------------------------------------------------------------
/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f410rx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VojislavM/UART_TLV/e53f1ba937ba027d8c68ce89e6e11940b29a9d75/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f410rx.h
--------------------------------------------------------------------------------
/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f410tx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VojislavM/UART_TLV/e53f1ba937ba027d8c68ce89e6e11940b29a9d75/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f410tx.h
--------------------------------------------------------------------------------
/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VojislavM/UART_TLV/e53f1ba937ba027d8c68ce89e6e11940b29a9d75/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h
--------------------------------------------------------------------------------
/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f412cx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VojislavM/UART_TLV/e53f1ba937ba027d8c68ce89e6e11940b29a9d75/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f412cx.h
--------------------------------------------------------------------------------
/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f412rx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VojislavM/UART_TLV/e53f1ba937ba027d8c68ce89e6e11940b29a9d75/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f412rx.h
--------------------------------------------------------------------------------
/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f412vx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VojislavM/UART_TLV/e53f1ba937ba027d8c68ce89e6e11940b29a9d75/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f412vx.h
--------------------------------------------------------------------------------
/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f412zx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VojislavM/UART_TLV/e53f1ba937ba027d8c68ce89e6e11940b29a9d75/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f412zx.h
--------------------------------------------------------------------------------
/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f415xx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VojislavM/UART_TLV/e53f1ba937ba027d8c68ce89e6e11940b29a9d75/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f415xx.h
--------------------------------------------------------------------------------
/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f417xx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VojislavM/UART_TLV/e53f1ba937ba027d8c68ce89e6e11940b29a9d75/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f417xx.h
--------------------------------------------------------------------------------
/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f427xx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VojislavM/UART_TLV/e53f1ba937ba027d8c68ce89e6e11940b29a9d75/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f427xx.h
--------------------------------------------------------------------------------
/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f429xx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VojislavM/UART_TLV/e53f1ba937ba027d8c68ce89e6e11940b29a9d75/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f429xx.h
--------------------------------------------------------------------------------
/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f437xx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VojislavM/UART_TLV/e53f1ba937ba027d8c68ce89e6e11940b29a9d75/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f437xx.h
--------------------------------------------------------------------------------
/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f439xx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VojislavM/UART_TLV/e53f1ba937ba027d8c68ce89e6e11940b29a9d75/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f439xx.h
--------------------------------------------------------------------------------
/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f446xx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VojislavM/UART_TLV/e53f1ba937ba027d8c68ce89e6e11940b29a9d75/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f446xx.h
--------------------------------------------------------------------------------
/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f469xx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VojislavM/UART_TLV/e53f1ba937ba027d8c68ce89e6e11940b29a9d75/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f469xx.h
--------------------------------------------------------------------------------
/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f479xx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VojislavM/UART_TLV/e53f1ba937ba027d8c68ce89e6e11940b29a9d75/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f479xx.h
--------------------------------------------------------------------------------
/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VojislavM/UART_TLV/e53f1ba937ba027d8c68ce89e6e11940b29a9d75/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h
--------------------------------------------------------------------------------
/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h:
--------------------------------------------------------------------------------
1 | /**
2 | ******************************************************************************
3 | * @file system_stm32f4xx.h
4 | * @author MCD Application Team
5 | * @version V2.5.0
6 | * @date 22-April-2016
7 | * @brief CMSIS Cortex-M4 Device System Source File for STM32F4xx devices.
8 | ******************************************************************************
9 | * @attention
10 | *
11 | *
© COPYRIGHT(c) 2016 STMicroelectronics
12 | *
13 | * Redistribution and use in source and binary forms, with or without modification,
14 | * are permitted provided that the following conditions are met:
15 | * 1. Redistributions of source code must retain the above copyright notice,
16 | * this list of conditions and the following disclaimer.
17 | * 2. Redistributions in binary form must reproduce the above copyright notice,
18 | * this list of conditions and the following disclaimer in the documentation
19 | * and/or other materials provided with the distribution.
20 | * 3. Neither the name of STMicroelectronics nor the names of its contributors
21 | * may be used to endorse or promote products derived from this software
22 | * without specific prior written permission.
23 | *
24 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
27 | * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
28 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
30 | * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
31 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
32 | * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 | *
35 | ******************************************************************************
36 | */
37 |
38 | /** @addtogroup CMSIS
39 | * @{
40 | */
41 |
42 | /** @addtogroup stm32f4xx_system
43 | * @{
44 | */
45 |
46 | /**
47 | * @brief Define to prevent recursive inclusion
48 | */
49 | #ifndef __SYSTEM_STM32F4XX_H
50 | #define __SYSTEM_STM32F4XX_H
51 |
52 | #ifdef __cplusplus
53 | extern "C" {
54 | #endif
55 |
56 | /** @addtogroup STM32F4xx_System_Includes
57 | * @{
58 | */
59 |
60 | /**
61 | * @}
62 | */
63 |
64 |
65 | /** @addtogroup STM32F4xx_System_Exported_types
66 | * @{
67 | */
68 | /* This variable is updated in three ways:
69 | 1) by calling CMSIS function SystemCoreClockUpdate()
70 | 2) by calling HAL API function HAL_RCC_GetSysClockFreq()
71 | 3) each time HAL_RCC_ClockConfig() is called to configure the system clock frequency
72 | Note: If you use this function to configure the system clock; then there
73 | is no need to call the 2 first functions listed above, since SystemCoreClock
74 | variable is updated automatically.
75 | */
76 | extern uint32_t SystemCoreClock; /*!< System Clock Frequency (Core Clock) */
77 |
78 |
79 | /**
80 | * @}
81 | */
82 |
83 | /** @addtogroup STM32F4xx_System_Exported_Constants
84 | * @{
85 | */
86 |
87 | /**
88 | * @}
89 | */
90 |
91 | /** @addtogroup STM32F4xx_System_Exported_Macros
92 | * @{
93 | */
94 |
95 | /**
96 | * @}
97 | */
98 |
99 | /** @addtogroup STM32F4xx_System_Exported_Functions
100 | * @{
101 | */
102 |
103 | extern void SystemInit(void);
104 | extern void SystemCoreClockUpdate(void);
105 | /**
106 | * @}
107 | */
108 |
109 | #ifdef __cplusplus
110 | }
111 | #endif
112 |
113 | #endif /*__SYSTEM_STM32F4XX_H */
114 |
115 | /**
116 | * @}
117 | */
118 |
119 | /**
120 | * @}
121 | */
122 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
123 |
--------------------------------------------------------------------------------
/Drivers/CMSIS/Include/arm_common_tables.h:
--------------------------------------------------------------------------------
1 | /* ----------------------------------------------------------------------
2 | * Copyright (C) 2010-2014 ARM Limited. All rights reserved.
3 | *
4 | * $Date: 19. October 2015
5 | * $Revision: V.1.4.5 a
6 | *
7 | * Project: CMSIS DSP Library
8 | * Title: arm_common_tables.h
9 | *
10 | * Description: This file has extern declaration for common tables like Bitreverse, reciprocal etc which are used across different functions
11 | *
12 | * Target Processor: Cortex-M4/Cortex-M3
13 | *
14 | * Redistribution and use in source and binary forms, with or without
15 | * modification, are permitted provided that the following conditions
16 | * are met:
17 | * - Redistributions of source code must retain the above copyright
18 | * notice, this list of conditions and the following disclaimer.
19 | * - Redistributions in binary form must reproduce the above copyright
20 | * notice, this list of conditions and the following disclaimer in
21 | * the documentation and/or other materials provided with the
22 | * distribution.
23 | * - Neither the name of ARM LIMITED nor the names of its contributors
24 | * may be used to endorse or promote products derived from this
25 | * software without specific prior written permission.
26 | *
27 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
28 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
29 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
30 | * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
31 | * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
32 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
33 | * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
34 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
35 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
37 | * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
38 | * POSSIBILITY OF SUCH DAMAGE.
39 | * -------------------------------------------------------------------- */
40 |
41 | #ifndef _ARM_COMMON_TABLES_H
42 | #define _ARM_COMMON_TABLES_H
43 |
44 | #include "arm_math.h"
45 |
46 | extern const uint16_t armBitRevTable[1024];
47 | extern const q15_t armRecipTableQ15[64];
48 | extern const q31_t armRecipTableQ31[64];
49 | /* extern const q31_t realCoefAQ31[1024]; */
50 | /* extern const q31_t realCoefBQ31[1024]; */
51 | extern const float32_t twiddleCoef_16[32];
52 | extern const float32_t twiddleCoef_32[64];
53 | extern const float32_t twiddleCoef_64[128];
54 | extern const float32_t twiddleCoef_128[256];
55 | extern const float32_t twiddleCoef_256[512];
56 | extern const float32_t twiddleCoef_512[1024];
57 | extern const float32_t twiddleCoef_1024[2048];
58 | extern const float32_t twiddleCoef_2048[4096];
59 | extern const float32_t twiddleCoef_4096[8192];
60 | #define twiddleCoef twiddleCoef_4096
61 | extern const q31_t twiddleCoef_16_q31[24];
62 | extern const q31_t twiddleCoef_32_q31[48];
63 | extern const q31_t twiddleCoef_64_q31[96];
64 | extern const q31_t twiddleCoef_128_q31[192];
65 | extern const q31_t twiddleCoef_256_q31[384];
66 | extern const q31_t twiddleCoef_512_q31[768];
67 | extern const q31_t twiddleCoef_1024_q31[1536];
68 | extern const q31_t twiddleCoef_2048_q31[3072];
69 | extern const q31_t twiddleCoef_4096_q31[6144];
70 | extern const q15_t twiddleCoef_16_q15[24];
71 | extern const q15_t twiddleCoef_32_q15[48];
72 | extern const q15_t twiddleCoef_64_q15[96];
73 | extern const q15_t twiddleCoef_128_q15[192];
74 | extern const q15_t twiddleCoef_256_q15[384];
75 | extern const q15_t twiddleCoef_512_q15[768];
76 | extern const q15_t twiddleCoef_1024_q15[1536];
77 | extern const q15_t twiddleCoef_2048_q15[3072];
78 | extern const q15_t twiddleCoef_4096_q15[6144];
79 | extern const float32_t twiddleCoef_rfft_32[32];
80 | extern const float32_t twiddleCoef_rfft_64[64];
81 | extern const float32_t twiddleCoef_rfft_128[128];
82 | extern const float32_t twiddleCoef_rfft_256[256];
83 | extern const float32_t twiddleCoef_rfft_512[512];
84 | extern const float32_t twiddleCoef_rfft_1024[1024];
85 | extern const float32_t twiddleCoef_rfft_2048[2048];
86 | extern const float32_t twiddleCoef_rfft_4096[4096];
87 |
88 |
89 | /* floating-point bit reversal tables */
90 | #define ARMBITREVINDEXTABLE__16_TABLE_LENGTH ((uint16_t)20 )
91 | #define ARMBITREVINDEXTABLE__32_TABLE_LENGTH ((uint16_t)48 )
92 | #define ARMBITREVINDEXTABLE__64_TABLE_LENGTH ((uint16_t)56 )
93 | #define ARMBITREVINDEXTABLE_128_TABLE_LENGTH ((uint16_t)208 )
94 | #define ARMBITREVINDEXTABLE_256_TABLE_LENGTH ((uint16_t)440 )
95 | #define ARMBITREVINDEXTABLE_512_TABLE_LENGTH ((uint16_t)448 )
96 | #define ARMBITREVINDEXTABLE1024_TABLE_LENGTH ((uint16_t)1800)
97 | #define ARMBITREVINDEXTABLE2048_TABLE_LENGTH ((uint16_t)3808)
98 | #define ARMBITREVINDEXTABLE4096_TABLE_LENGTH ((uint16_t)4032)
99 |
100 | extern const uint16_t armBitRevIndexTable16[ARMBITREVINDEXTABLE__16_TABLE_LENGTH];
101 | extern const uint16_t armBitRevIndexTable32[ARMBITREVINDEXTABLE__32_TABLE_LENGTH];
102 | extern const uint16_t armBitRevIndexTable64[ARMBITREVINDEXTABLE__64_TABLE_LENGTH];
103 | extern const uint16_t armBitRevIndexTable128[ARMBITREVINDEXTABLE_128_TABLE_LENGTH];
104 | extern const uint16_t armBitRevIndexTable256[ARMBITREVINDEXTABLE_256_TABLE_LENGTH];
105 | extern const uint16_t armBitRevIndexTable512[ARMBITREVINDEXTABLE_512_TABLE_LENGTH];
106 | extern const uint16_t armBitRevIndexTable1024[ARMBITREVINDEXTABLE1024_TABLE_LENGTH];
107 | extern const uint16_t armBitRevIndexTable2048[ARMBITREVINDEXTABLE2048_TABLE_LENGTH];
108 | extern const uint16_t armBitRevIndexTable4096[ARMBITREVINDEXTABLE4096_TABLE_LENGTH];
109 |
110 | /* fixed-point bit reversal tables */
111 | #define ARMBITREVINDEXTABLE_FIXED___16_TABLE_LENGTH ((uint16_t)12 )
112 | #define ARMBITREVINDEXTABLE_FIXED___32_TABLE_LENGTH ((uint16_t)24 )
113 | #define ARMBITREVINDEXTABLE_FIXED___64_TABLE_LENGTH ((uint16_t)56 )
114 | #define ARMBITREVINDEXTABLE_FIXED__128_TABLE_LENGTH ((uint16_t)112 )
115 | #define ARMBITREVINDEXTABLE_FIXED__256_TABLE_LENGTH ((uint16_t)240 )
116 | #define ARMBITREVINDEXTABLE_FIXED__512_TABLE_LENGTH ((uint16_t)480 )
117 | #define ARMBITREVINDEXTABLE_FIXED_1024_TABLE_LENGTH ((uint16_t)992 )
118 | #define ARMBITREVINDEXTABLE_FIXED_2048_TABLE_LENGTH ((uint16_t)1984)
119 | #define ARMBITREVINDEXTABLE_FIXED_4096_TABLE_LENGTH ((uint16_t)4032)
120 |
121 | extern const uint16_t armBitRevIndexTable_fixed_16[ARMBITREVINDEXTABLE_FIXED___16_TABLE_LENGTH];
122 | extern const uint16_t armBitRevIndexTable_fixed_32[ARMBITREVINDEXTABLE_FIXED___32_TABLE_LENGTH];
123 | extern const uint16_t armBitRevIndexTable_fixed_64[ARMBITREVINDEXTABLE_FIXED___64_TABLE_LENGTH];
124 | extern const uint16_t armBitRevIndexTable_fixed_128[ARMBITREVINDEXTABLE_FIXED__128_TABLE_LENGTH];
125 | extern const uint16_t armBitRevIndexTable_fixed_256[ARMBITREVINDEXTABLE_FIXED__256_TABLE_LENGTH];
126 | extern const uint16_t armBitRevIndexTable_fixed_512[ARMBITREVINDEXTABLE_FIXED__512_TABLE_LENGTH];
127 | extern const uint16_t armBitRevIndexTable_fixed_1024[ARMBITREVINDEXTABLE_FIXED_1024_TABLE_LENGTH];
128 | extern const uint16_t armBitRevIndexTable_fixed_2048[ARMBITREVINDEXTABLE_FIXED_2048_TABLE_LENGTH];
129 | extern const uint16_t armBitRevIndexTable_fixed_4096[ARMBITREVINDEXTABLE_FIXED_4096_TABLE_LENGTH];
130 |
131 | /* Tables for Fast Math Sine and Cosine */
132 | extern const float32_t sinTable_f32[FAST_MATH_TABLE_SIZE + 1];
133 | extern const q31_t sinTable_q31[FAST_MATH_TABLE_SIZE + 1];
134 | extern const q15_t sinTable_q15[FAST_MATH_TABLE_SIZE + 1];
135 |
136 | #endif /* ARM_COMMON_TABLES_H */
137 |
--------------------------------------------------------------------------------
/Drivers/CMSIS/Include/arm_const_structs.h:
--------------------------------------------------------------------------------
1 | /* ----------------------------------------------------------------------
2 | * Copyright (C) 2010-2014 ARM Limited. All rights reserved.
3 | *
4 | * $Date: 19. March 2015
5 | * $Revision: V.1.4.5
6 | *
7 | * Project: CMSIS DSP Library
8 | * Title: arm_const_structs.h
9 | *
10 | * Description: This file has constant structs that are initialized for
11 | * user convenience. For example, some can be given as
12 | * arguments to the arm_cfft_f32() function.
13 | *
14 | * Target Processor: Cortex-M4/Cortex-M3
15 | *
16 | * Redistribution and use in source and binary forms, with or without
17 | * modification, are permitted provided that the following conditions
18 | * are met:
19 | * - Redistributions of source code must retain the above copyright
20 | * notice, this list of conditions and the following disclaimer.
21 | * - Redistributions in binary form must reproduce the above copyright
22 | * notice, this list of conditions and the following disclaimer in
23 | * the documentation and/or other materials provided with the
24 | * distribution.
25 | * - Neither the name of ARM LIMITED nor the names of its contributors
26 | * may be used to endorse or promote products derived from this
27 | * software without specific prior written permission.
28 | *
29 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
32 | * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
33 | * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
34 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
35 | * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
36 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
37 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
38 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
39 | * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
40 | * POSSIBILITY OF SUCH DAMAGE.
41 | * -------------------------------------------------------------------- */
42 |
43 | #ifndef _ARM_CONST_STRUCTS_H
44 | #define _ARM_CONST_STRUCTS_H
45 |
46 | #include "arm_math.h"
47 | #include "arm_common_tables.h"
48 |
49 | extern const arm_cfft_instance_f32 arm_cfft_sR_f32_len16;
50 | extern const arm_cfft_instance_f32 arm_cfft_sR_f32_len32;
51 | extern const arm_cfft_instance_f32 arm_cfft_sR_f32_len64;
52 | extern const arm_cfft_instance_f32 arm_cfft_sR_f32_len128;
53 | extern const arm_cfft_instance_f32 arm_cfft_sR_f32_len256;
54 | extern const arm_cfft_instance_f32 arm_cfft_sR_f32_len512;
55 | extern const arm_cfft_instance_f32 arm_cfft_sR_f32_len1024;
56 | extern const arm_cfft_instance_f32 arm_cfft_sR_f32_len2048;
57 | extern const arm_cfft_instance_f32 arm_cfft_sR_f32_len4096;
58 |
59 | extern const arm_cfft_instance_q31 arm_cfft_sR_q31_len16;
60 | extern const arm_cfft_instance_q31 arm_cfft_sR_q31_len32;
61 | extern const arm_cfft_instance_q31 arm_cfft_sR_q31_len64;
62 | extern const arm_cfft_instance_q31 arm_cfft_sR_q31_len128;
63 | extern const arm_cfft_instance_q31 arm_cfft_sR_q31_len256;
64 | extern const arm_cfft_instance_q31 arm_cfft_sR_q31_len512;
65 | extern const arm_cfft_instance_q31 arm_cfft_sR_q31_len1024;
66 | extern const arm_cfft_instance_q31 arm_cfft_sR_q31_len2048;
67 | extern const arm_cfft_instance_q31 arm_cfft_sR_q31_len4096;
68 |
69 | extern const arm_cfft_instance_q15 arm_cfft_sR_q15_len16;
70 | extern const arm_cfft_instance_q15 arm_cfft_sR_q15_len32;
71 | extern const arm_cfft_instance_q15 arm_cfft_sR_q15_len64;
72 | extern const arm_cfft_instance_q15 arm_cfft_sR_q15_len128;
73 | extern const arm_cfft_instance_q15 arm_cfft_sR_q15_len256;
74 | extern const arm_cfft_instance_q15 arm_cfft_sR_q15_len512;
75 | extern const arm_cfft_instance_q15 arm_cfft_sR_q15_len1024;
76 | extern const arm_cfft_instance_q15 arm_cfft_sR_q15_len2048;
77 | extern const arm_cfft_instance_q15 arm_cfft_sR_q15_len4096;
78 |
79 | #endif
80 |
--------------------------------------------------------------------------------
/Drivers/CMSIS/Include/core_cmFunc.h:
--------------------------------------------------------------------------------
1 | /**************************************************************************//**
2 | * @file core_cmFunc.h
3 | * @brief CMSIS Cortex-M Core Function Access Header File
4 | * @version V4.30
5 | * @date 20. October 2015
6 | ******************************************************************************/
7 | /* Copyright (c) 2009 - 2015 ARM LIMITED
8 |
9 | All rights reserved.
10 | Redistribution and use in source and binary forms, with or without
11 | modification, are permitted provided that the following conditions are met:
12 | - Redistributions of source code must retain the above copyright
13 | notice, this list of conditions and the following disclaimer.
14 | - Redistributions in binary form must reproduce the above copyright
15 | notice, this list of conditions and the following disclaimer in the
16 | documentation and/or other materials provided with the distribution.
17 | - Neither the name of ARM nor the names of its contributors may be used
18 | to endorse or promote products derived from this software without
19 | specific prior written permission.
20 | *
21 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 | ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE
25 | LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 | POSSIBILITY OF SUCH DAMAGE.
32 | ---------------------------------------------------------------------------*/
33 |
34 |
35 | #if defined ( __ICCARM__ )
36 | #pragma system_include /* treat file as system include file for MISRA check */
37 | #elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050)
38 | #pragma clang system_header /* treat file as system include file */
39 | #endif
40 |
41 | #ifndef __CORE_CMFUNC_H
42 | #define __CORE_CMFUNC_H
43 |
44 |
45 | /* ########################### Core Function Access ########################### */
46 | /** \ingroup CMSIS_Core_FunctionInterface
47 | \defgroup CMSIS_Core_RegAccFunctions CMSIS Core Register Access Functions
48 | @{
49 | */
50 |
51 | /*------------------ RealView Compiler -----------------*/
52 | #if defined ( __CC_ARM )
53 | #include "cmsis_armcc.h"
54 |
55 | /*------------------ ARM Compiler V6 -------------------*/
56 | #elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050)
57 | #include "cmsis_armcc_V6.h"
58 |
59 | /*------------------ GNU Compiler ----------------------*/
60 | #elif defined ( __GNUC__ )
61 | #include "cmsis_gcc.h"
62 |
63 | /*------------------ ICC Compiler ----------------------*/
64 | #elif defined ( __ICCARM__ )
65 | #include
66 |
67 | /*------------------ TI CCS Compiler -------------------*/
68 | #elif defined ( __TMS470__ )
69 | #include
70 |
71 | /*------------------ TASKING Compiler ------------------*/
72 | #elif defined ( __TASKING__ )
73 | /*
74 | * The CMSIS functions have been implemented as intrinsics in the compiler.
75 | * Please use "carm -?i" to get an up to date list of all intrinsics,
76 | * Including the CMSIS ones.
77 | */
78 |
79 | /*------------------ COSMIC Compiler -------------------*/
80 | #elif defined ( __CSMC__ )
81 | #include
82 |
83 | #endif
84 |
85 | /*@} end of CMSIS_Core_RegAccFunctions */
86 |
87 | #endif /* __CORE_CMFUNC_H */
88 |
--------------------------------------------------------------------------------
/Drivers/CMSIS/Include/core_cmInstr.h:
--------------------------------------------------------------------------------
1 | /**************************************************************************//**
2 | * @file core_cmInstr.h
3 | * @brief CMSIS Cortex-M Core Instruction Access Header File
4 | * @version V4.30
5 | * @date 20. October 2015
6 | ******************************************************************************/
7 | /* Copyright (c) 2009 - 2015 ARM LIMITED
8 |
9 | All rights reserved.
10 | Redistribution and use in source and binary forms, with or without
11 | modification, are permitted provided that the following conditions are met:
12 | - Redistributions of source code must retain the above copyright
13 | notice, this list of conditions and the following disclaimer.
14 | - Redistributions in binary form must reproduce the above copyright
15 | notice, this list of conditions and the following disclaimer in the
16 | documentation and/or other materials provided with the distribution.
17 | - Neither the name of ARM nor the names of its contributors may be used
18 | to endorse or promote products derived from this software without
19 | specific prior written permission.
20 | *
21 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 | ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE
25 | LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 | POSSIBILITY OF SUCH DAMAGE.
32 | ---------------------------------------------------------------------------*/
33 |
34 |
35 | #if defined ( __ICCARM__ )
36 | #pragma system_include /* treat file as system include file for MISRA check */
37 | #elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050)
38 | #pragma clang system_header /* treat file as system include file */
39 | #endif
40 |
41 | #ifndef __CORE_CMINSTR_H
42 | #define __CORE_CMINSTR_H
43 |
44 |
45 | /* ########################## Core Instruction Access ######################### */
46 | /** \defgroup CMSIS_Core_InstructionInterface CMSIS Core Instruction Interface
47 | Access to dedicated instructions
48 | @{
49 | */
50 |
51 | /*------------------ RealView Compiler -----------------*/
52 | #if defined ( __CC_ARM )
53 | #include "cmsis_armcc.h"
54 |
55 | /*------------------ ARM Compiler V6 -------------------*/
56 | #elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050)
57 | #include "cmsis_armcc_V6.h"
58 |
59 | /*------------------ GNU Compiler ----------------------*/
60 | #elif defined ( __GNUC__ )
61 | #include "cmsis_gcc.h"
62 |
63 | /*------------------ ICC Compiler ----------------------*/
64 | #elif defined ( __ICCARM__ )
65 | #include
66 |
67 | /*------------------ TI CCS Compiler -------------------*/
68 | #elif defined ( __TMS470__ )
69 | #include
70 |
71 | /*------------------ TASKING Compiler ------------------*/
72 | #elif defined ( __TASKING__ )
73 | /*
74 | * The CMSIS functions have been implemented as intrinsics in the compiler.
75 | * Please use "carm -?i" to get an up to date list of all intrinsics,
76 | * Including the CMSIS ones.
77 | */
78 |
79 | /*------------------ COSMIC Compiler -------------------*/
80 | #elif defined ( __CSMC__ )
81 | #include
82 |
83 | #endif
84 |
85 | /*@}*/ /* end of group CMSIS_Core_InstructionInterface */
86 |
87 | #endif /* __CORE_CMINSTR_H */
88 |
--------------------------------------------------------------------------------
/Drivers/CMSIS/Include/core_cmSimd.h:
--------------------------------------------------------------------------------
1 | /**************************************************************************//**
2 | * @file core_cmSimd.h
3 | * @brief CMSIS Cortex-M SIMD Header File
4 | * @version V4.30
5 | * @date 20. October 2015
6 | ******************************************************************************/
7 | /* Copyright (c) 2009 - 2015 ARM LIMITED
8 |
9 | All rights reserved.
10 | Redistribution and use in source and binary forms, with or without
11 | modification, are permitted provided that the following conditions are met:
12 | - Redistributions of source code must retain the above copyright
13 | notice, this list of conditions and the following disclaimer.
14 | - Redistributions in binary form must reproduce the above copyright
15 | notice, this list of conditions and the following disclaimer in the
16 | documentation and/or other materials provided with the distribution.
17 | - Neither the name of ARM nor the names of its contributors may be used
18 | to endorse or promote products derived from this software without
19 | specific prior written permission.
20 | *
21 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 | ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE
25 | LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 | POSSIBILITY OF SUCH DAMAGE.
32 | ---------------------------------------------------------------------------*/
33 |
34 |
35 | #if defined ( __ICCARM__ )
36 | #pragma system_include /* treat file as system include file for MISRA check */
37 | #elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050)
38 | #pragma clang system_header /* treat file as system include file */
39 | #endif
40 |
41 | #ifndef __CORE_CMSIMD_H
42 | #define __CORE_CMSIMD_H
43 |
44 | #ifdef __cplusplus
45 | extern "C" {
46 | #endif
47 |
48 |
49 | /* ################### Compiler specific Intrinsics ########################### */
50 | /** \defgroup CMSIS_SIMD_intrinsics CMSIS SIMD Intrinsics
51 | Access to dedicated SIMD instructions
52 | @{
53 | */
54 |
55 | /*------------------ RealView Compiler -----------------*/
56 | #if defined ( __CC_ARM )
57 | #include "cmsis_armcc.h"
58 |
59 | /*------------------ ARM Compiler V6 -------------------*/
60 | #elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050)
61 | #include "cmsis_armcc_V6.h"
62 |
63 | /*------------------ GNU Compiler ----------------------*/
64 | #elif defined ( __GNUC__ )
65 | #include "cmsis_gcc.h"
66 |
67 | /*------------------ ICC Compiler ----------------------*/
68 | #elif defined ( __ICCARM__ )
69 | #include
70 |
71 | /*------------------ TI CCS Compiler -------------------*/
72 | #elif defined ( __TMS470__ )
73 | #include
74 |
75 | /*------------------ TASKING Compiler ------------------*/
76 | #elif defined ( __TASKING__ )
77 | /*
78 | * The CMSIS functions have been implemented as intrinsics in the compiler.
79 | * Please use "carm -?i" to get an up to date list of all intrinsics,
80 | * Including the CMSIS ones.
81 | */
82 |
83 | /*------------------ COSMIC Compiler -------------------*/
84 | #elif defined ( __CSMC__ )
85 | #include
86 |
87 | #endif
88 |
89 | /*@} end of group CMSIS_SIMD_intrinsics */
90 |
91 |
92 | #ifdef __cplusplus
93 | }
94 | #endif
95 |
96 | #endif /* __CORE_CMSIMD_H */
97 |
--------------------------------------------------------------------------------
/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h:
--------------------------------------------------------------------------------
1 | /**
2 | ******************************************************************************
3 | * @file stm32f4xx_hal_dma_ex.h
4 | * @author MCD Application Team
5 | * @version V1.5.0
6 | * @date 06-May-2016
7 | * @brief Header file of DMA HAL extension module.
8 | ******************************************************************************
9 | * @attention
10 | *
11 | * © COPYRIGHT(c) 2016 STMicroelectronics
12 | *
13 | * Redistribution and use in source and binary forms, with or without modification,
14 | * are permitted provided that the following conditions are met:
15 | * 1. Redistributions of source code must retain the above copyright notice,
16 | * this list of conditions and the following disclaimer.
17 | * 2. Redistributions in binary form must reproduce the above copyright notice,
18 | * this list of conditions and the following disclaimer in the documentation
19 | * and/or other materials provided with the distribution.
20 | * 3. Neither the name of STMicroelectronics nor the names of its contributors
21 | * may be used to endorse or promote products derived from this software
22 | * without specific prior written permission.
23 | *
24 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
27 | * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
28 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
30 | * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
31 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
32 | * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 | *
35 | ******************************************************************************
36 | */
37 |
38 | /* Define to prevent recursive inclusion -------------------------------------*/
39 | #ifndef __STM32F4xx_HAL_DMA_EX_H
40 | #define __STM32F4xx_HAL_DMA_EX_H
41 |
42 | #ifdef __cplusplus
43 | extern "C" {
44 | #endif
45 |
46 | /* Includes ------------------------------------------------------------------*/
47 | #include "stm32f4xx_hal_def.h"
48 |
49 | /** @addtogroup STM32F4xx_HAL_Driver
50 | * @{
51 | */
52 |
53 | /** @addtogroup DMAEx
54 | * @{
55 | */
56 |
57 | /* Exported types ------------------------------------------------------------*/
58 | /** @defgroup DMAEx_Exported_Types DMAEx Exported Types
59 | * @brief DMAEx Exported types
60 | * @{
61 | */
62 |
63 | /**
64 | * @brief HAL DMA Memory definition
65 | */
66 | typedef enum
67 | {
68 | MEMORY0 = 0x00U, /*!< Memory 0 */
69 | MEMORY1 = 0x01U /*!< Memory 1 */
70 | }HAL_DMA_MemoryTypeDef;
71 |
72 | /**
73 | * @}
74 | */
75 |
76 | /* Exported functions --------------------------------------------------------*/
77 | /** @defgroup DMAEx_Exported_Functions DMAEx Exported Functions
78 | * @brief DMAEx Exported functions
79 | * @{
80 | */
81 |
82 | /** @defgroup DMAEx_Exported_Functions_Group1 Extended features functions
83 | * @brief Extended features functions
84 | * @{
85 | */
86 |
87 | /* IO operation functions *******************************************************/
88 | HAL_StatusTypeDef HAL_DMAEx_MultiBufferStart(DMA_HandleTypeDef *hdma, uint32_t SrcAddress, uint32_t DstAddress, uint32_t SecondMemAddress, uint32_t DataLength);
89 | HAL_StatusTypeDef HAL_DMAEx_MultiBufferStart_IT(DMA_HandleTypeDef *hdma, uint32_t SrcAddress, uint32_t DstAddress, uint32_t SecondMemAddress, uint32_t DataLength);
90 | HAL_StatusTypeDef HAL_DMAEx_ChangeMemory(DMA_HandleTypeDef *hdma, uint32_t Address, HAL_DMA_MemoryTypeDef memory);
91 |
92 | /**
93 | * @}
94 | */
95 | /**
96 | * @}
97 | */
98 |
99 | /* Private functions ---------------------------------------------------------*/
100 | /** @defgroup DMAEx_Private_Functions DMAEx Private Functions
101 | * @brief DMAEx Private functions
102 | * @{
103 | */
104 | /**
105 | * @}
106 | */
107 |
108 | /**
109 | * @}
110 | */
111 |
112 | /**
113 | * @}
114 | */
115 |
116 | #ifdef __cplusplus
117 | }
118 | #endif
119 |
120 | #endif /*__STM32F4xx_HAL_DMA_EX_H*/
121 |
122 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
123 |
--------------------------------------------------------------------------------
/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h:
--------------------------------------------------------------------------------
1 | /**
2 | ******************************************************************************
3 | * @file stm32f4xx_hal_flash_ramfunc.h
4 | * @author MCD Application Team
5 | * @version V1.5.0
6 | * @date 06-May-2016
7 | * @brief Header file of FLASH RAMFUNC driver.
8 | ******************************************************************************
9 | * @attention
10 | *
11 | * © COPYRIGHT(c) 2016 STMicroelectronics
12 | *
13 | * Redistribution and use in source and binary forms, with or without modification,
14 | * are permitted provided that the following conditions are met:
15 | * 1. Redistributions of source code must retain the above copyright notice,
16 | * this list of conditions and the following disclaimer.
17 | * 2. Redistributions in binary form must reproduce the above copyright notice,
18 | * this list of conditions and the following disclaimer in the documentation
19 | * and/or other materials provided with the distribution.
20 | * 3. Neither the name of STMicroelectronics nor the names of its contributors
21 | * may be used to endorse or promote products derived from this software
22 | * without specific prior written permission.
23 | *
24 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
27 | * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
28 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
30 | * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
31 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
32 | * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 | *
35 | ******************************************************************************
36 | */
37 |
38 | /* Define to prevent recursive inclusion -------------------------------------*/
39 | #ifndef __STM32F4xx_FLASH_RAMFUNC_H
40 | #define __STM32F4xx_FLASH_RAMFUNC_H
41 |
42 | #ifdef __cplusplus
43 | extern "C" {
44 | #endif
45 | #if defined(STM32F410Tx) || defined(STM32F410Cx) || defined(STM32F410Rx) || defined(STM32F411xE) || defined(STM32F446xx) || defined(STM32F412Zx) ||\
46 | defined(STM32F412Vx) || defined(STM32F412Rx) || defined(STM32F412Cx)
47 |
48 | /* Includes ------------------------------------------------------------------*/
49 | #include "stm32f4xx_hal_def.h"
50 |
51 | /** @addtogroup STM32F4xx_HAL_Driver
52 | * @{
53 | */
54 |
55 | /** @addtogroup FLASH_RAMFUNC
56 | * @{
57 | */
58 |
59 | /* Exported types ------------------------------------------------------------*/
60 | /* Exported macro ------------------------------------------------------------*/
61 | /* Exported functions --------------------------------------------------------*/
62 | /** @addtogroup FLASH_RAMFUNC_Exported_Functions
63 | * @{
64 | */
65 |
66 | /** @addtogroup FLASH_RAMFUNC_Exported_Functions_Group1
67 | * @{
68 | */
69 | __RAM_FUNC HAL_FLASHEx_StopFlashInterfaceClk(void);
70 | __RAM_FUNC HAL_FLASHEx_StartFlashInterfaceClk(void);
71 | __RAM_FUNC HAL_FLASHEx_EnableFlashSleepMode(void);
72 | __RAM_FUNC HAL_FLASHEx_DisableFlashSleepMode(void);
73 | /**
74 | * @}
75 | */
76 |
77 | /**
78 | * @}
79 | */
80 |
81 | /**
82 | * @}
83 | */
84 |
85 | /**
86 | * @}
87 | */
88 |
89 | #endif /* STM32F410xx || STM32F411xE || STM32F446xx || STM32F412Zx || STM32F412Vx || STM32F412Rx || STM32F412Cx */
90 | #ifdef __cplusplus
91 | }
92 | #endif
93 |
94 |
95 | #endif /* __STM32F4xx_FLASH_RAMFUNC_H */
96 |
97 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
98 |
--------------------------------------------------------------------------------
/Inc/AccelStepper.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VojislavM/UART_TLV/e53f1ba937ba027d8c68ce89e6e11940b29a9d75/Inc/AccelStepper.h
--------------------------------------------------------------------------------
/Inc/crc32.h:
--------------------------------------------------------------------------------
1 | #ifndef KORUZA_CRC32_H
2 | #define KORUZA_CRC32_H
3 |
4 | #include
5 | #include
6 |
7 | /**
8 | * Computes the CRC32 checksum over a buffer.
9 | *
10 | * @param crc Existing CRC32 value to use as a starting point
11 | * @param buf Input buffer
12 | * @param size Size of the input buffer
13 | * @return CRC32 checksum
14 | */
15 | uint32_t crc32(uint32_t crc, const void *buf, size_t size);
16 |
17 | #endif
18 |
--------------------------------------------------------------------------------
/Inc/frame.h:
--------------------------------------------------------------------------------
1 | #ifndef KORUZA_DRIVER_FRAME_H
2 | #define KORUZA_DRIVER_FRAME_H
3 |
4 | #include "message.h"
5 |
6 | /* Uncomment to get debug messages in the UART2 terminal*/
7 | //#define DEBUG_MODE
8 |
9 |
10 | /**
11 | * Parser states.
12 | */
13 | typedef enum {
14 | SERIAL_STATE_WAIT_START,
15 | SERIAL_STATE_WAIT_START_ESCAPE,
16 | SERIAL_STATE_IN_FRAME,
17 | SERIAL_STATE_AFTER_ESCAPE,
18 | } parser_state_t;
19 |
20 | #define FRAME_MAX_LENGTH 131070
21 | #define FRAME_MARKER_START 0xF1
22 | #define FRAME_MARKER_END 0xF2
23 | #define FRAME_MARKER_ESCAPE 0xF3
24 |
25 |
26 | /**
27 | * Parses received buffer
28 | *
29 | * @param frame buffer
30 | * @param message data
31 | */
32 | void frame_parser(uint8_t *buffer, uint8_t length, message_t *msg);
33 |
34 | /**
35 | * Frames the given message.
36 | *
37 | * @param frame Destination buffer
38 | * @param length Destination buffer length
39 | * @param message Message to frame
40 | * @return Size of the output frame
41 | */
42 | ssize_t frame_message(uint8_t *frame, size_t length, const message_t *message);
43 |
44 | #endif
45 |
--------------------------------------------------------------------------------
/Inc/inet.h:
--------------------------------------------------------------------------------
1 | /*
2 | * inet.h
3 | *
4 | * Created on: 29. jun. 2016
5 | * Author: vojis
6 | */
7 |
8 | #ifndef INET_H_
9 | #define INET_H_
10 |
11 | #define LITTLE_ENDIAN
12 |
13 | /* host-to-network short*/
14 | uint16_t htons(uint16_t v);
15 |
16 | /* host-to-network long*/
17 | uint32_t htonl(uint32_t v);
18 |
19 | /* network-to-host short*/
20 | uint16_t ntohs(uint16_t v);
21 |
22 | /* network-to-host long*/
23 | uint32_t ntohl(uint32_t v);
24 |
25 |
26 | #endif /* INET_H_ */
27 |
--------------------------------------------------------------------------------
/Inc/main.h:
--------------------------------------------------------------------------------
1 | /*
2 | * main.h
3 | *
4 | * Created on: 22. jul. 2016
5 | * Author: vojis
6 | */
7 |
8 | #ifndef MAIN_H_
9 | #define MAIN_H_
10 |
11 | #define RXBUFFERSIZE 100
12 | #define True 1
13 | #define False 0
14 |
15 | /* Uncomment to get debug messages in the UART2 terminal*/
16 | //#define DEBUG_MODE
17 |
18 | #define MOTOR_PIN_X_1 GPIO_PIN_13
19 | #define MOTOR_PIN_X_2 GPIO_PIN_14
20 | #define MOTOR_PIN_X_3 GPIO_PIN_15
21 | #define MOTOR_PIN_X_4 GPIO_PIN_9
22 |
23 | #define MOTOR_PORT_X_1 GPIOC
24 | #define MOTOR_PORT_X_2 GPIOC
25 | #define MOTOR_PORT_X_3 GPIOC
26 | #define MOTOR_PORT_X_4 GPIOC
27 |
28 |
29 | #define MOTOR_PIN_Y_1 GPIO_PIN_2
30 | #define MOTOR_PIN_Y_2 GPIO_PIN_3
31 | #define MOTOR_PIN_Y_3 GPIO_PIN_5
32 | #define MOTOR_PIN_Y_4 GPIO_PIN_11
33 |
34 | #define MOTOR_PORT_Y_1 GPIOC
35 | #define MOTOR_PORT_Y_2 GPIOC
36 | #define MOTOR_PORT_Y_3 GPIOC
37 | #define MOTOR_PORT_Y_4 GPIOC
38 |
39 |
40 | #define MOTOR_PIN_Z_1 GPIO_PIN_1
41 | #define MOTOR_PIN_Z_2 GPIO_PIN_2
42 | #define MOTOR_PIN_Z_3 GPIO_PIN_0
43 | #define MOTOR_PIN_Z_4 GPIO_PIN_4
44 |
45 | #define MOTOR_PORT_Z_1 GPIOB
46 | #define MOTOR_PORT_Z_2 GPIOB
47 | #define MOTOR_PORT_Z_3 GPIOA
48 | #define MOTOR_PORT_Z_4 GPIOA
49 |
50 | void SystemClock_Config(void);
51 | void Error_Handler(void);
52 | void MX_GPIO_Init(void);
53 | void MX_USART1_UART_Init(void);
54 | void MX_USART2_UART_Init(void);
55 | void Init_motors(Stepper_t *stepper_x, Stepper_t *stepper_y, Stepper_t *stepper_z);
56 | float fast_sqrt(float number);
57 |
58 | #endif /* MAIN_H_ */
59 |
--------------------------------------------------------------------------------
/Inc/message.h:
--------------------------------------------------------------------------------
1 | /*
2 | * koruza-driver - KORUZA driver
3 | *
4 | * Copyright (C) 2016 Jernej Kos
5 | *
6 | * This program is free software: you can redistribute it and/or modify it
7 | * under the terms of the GNU Affero General Public License as published by the
8 | * Free Software Foundation, either version 3 of the License, or (at your
9 | * option) any later version.
10 | *
11 | * This program is distributed in the hope that it will be useful, but WITHOUT
12 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License
14 | * for more details.
15 | *
16 | * You should have received a copy of the GNU Affero General Public License
17 | * along with this program. If not, see .
18 | */
19 | #ifndef KORUZA_MESSAGE_H
20 | #define KORUZA_MESSAGE_H
21 |
22 | #include
23 | #include
24 |
25 | // Maximum number of TLVs inside a message.
26 | #define MAX_TLV_COUNT 25
27 |
28 | /**
29 | * TLVs supported by the protocol.
30 | */
31 | typedef enum {
32 | TLV_COMMAND = 1,
33 | TLV_REPLY = 2,
34 | TLV_CHECKSUM = 3,
35 | TLV_MOTOR_POSITION = 4,
36 | TLV_CURRENT_READING = 5,
37 | } tlv_type_t;
38 |
39 | /**
40 | * Commands supported by the command TLV.
41 | */
42 | typedef enum {
43 | COMMAND_GET_STATUS = 1,
44 | COMMAND_MOVE_MOTOR = 2,
45 | COMMAND_SEND_IR = 3,
46 | COMMAND_REBOOT = 4,
47 | COMMAND_FIRMWARE_UPGRADE = 5,
48 | } tlv_command_t;
49 |
50 | /**
51 | * Replies supported by the reply TLV.
52 | */
53 | typedef enum {
54 | REPLY_STATUS_REPORT = 1
55 | } tlv_reply_t;
56 |
57 | /**
58 | * Contents of the motor position TLV.
59 | */
60 | typedef struct {
61 | int32_t x;
62 | int32_t y;
63 | int32_t z;
64 | } tlv_motor_position_t;
65 |
66 | /**
67 | * Message operations result codes.
68 | */
69 | typedef enum {
70 | MESSAGE_SUCCESS = 0,
71 | MESSAGE_ERROR_TOO_MANY_TLVS = -1,
72 | MESSAGE_ERROR_OUT_OF_MEMORY = -2,
73 | MESSAGE_ERROR_BUFFER_TOO_SMALL = -3,
74 | MESSAGE_ERROR_PARSE_ERROR = -4,
75 | MESSAGE_ERROR_CHECKSUM_MISMATCH = -5,
76 | MESSAGE_ERROR_TLV_NOT_FOUND = -6
77 | } message_result_t;
78 |
79 | /**
80 | * Representation of a TLV.
81 | */
82 | typedef struct {
83 | uint8_t type;
84 | uint16_t length;
85 | uint8_t *value;
86 | } tlv_t;
87 |
88 | /**
89 | * Representation of a protocol message.
90 | */
91 | typedef struct {
92 | size_t length;
93 | tlv_t tlv[MAX_TLV_COUNT];
94 | } message_t;
95 |
96 | /**
97 | * Initializes a protocol message. This function should be called on any newly
98 | * created message to ensure that the underlying memory is properly initialized.
99 | *
100 | * @param message Message instance to initialize
101 | * @return Operation result code
102 | */
103 | message_result_t message_init(message_t *message);
104 |
105 | /**
106 | * Frees a protocol message.
107 | *
108 | * @param message Message instance to free
109 | */
110 | void message_free(message_t *message);
111 |
112 | /**
113 | * Parses a protocol message.
114 | *
115 | * @param message Destination message instance to parse into
116 | * @param data Raw data to parse
117 | * @param length Size of the data buffer
118 | * @return Operation result code
119 | */
120 | message_result_t message_parse(message_t *message, const uint8_t *data, size_t length);
121 |
122 | /**
123 | * Adds a raw TLV to a protocol message.
124 | *
125 | * @param message Destination message instance to add the TLV to
126 | * @param type TLV type
127 | * @param length TLV length
128 | * @param value TLV value
129 | * @return Operation result code
130 | */
131 | message_result_t message_tlv_add(message_t *message, uint8_t type, uint16_t length, const uint8_t *value);
132 |
133 | /**
134 | * Adds a command TLV to a protocol message.
135 | *
136 | * @param message Destination message instance to add the TLV to
137 | * @param command Command argument
138 | * @return Operation result code
139 | */
140 | message_result_t message_tlv_add_command(message_t *message, tlv_command_t command);
141 |
142 | /**
143 | * Adds a reply TLV to a protocol message.
144 | *
145 | * @param message Destination message instance to add the TLV to
146 | * @param reply Reply argument
147 | * @return Operation result code
148 | */
149 | message_result_t message_tlv_add_reply(message_t *message, tlv_reply_t reply);
150 |
151 | /**
152 | * Adds a motor position TLV to a protocol message.
153 | *
154 | * @param message Destination message instance to add the TLV to
155 | * @param position Motor position structure
156 | * @return Operation result code
157 | */
158 | message_result_t message_tlv_add_motor_position(message_t *message, const tlv_motor_position_t *position);
159 |
160 | /**
161 | * Adds a current reading TLV to a protocol message.
162 | *
163 | * @param message Destination message instance to add the TLV to
164 | * @param current Current reading
165 | * @return Operation result code
166 | */
167 | message_result_t message_tlv_add_current_reading(message_t *message, uint16_t current);
168 |
169 | /**
170 | * Adds a checksum TLV to a protocol message. The checksum value is automatically
171 | * computed over all the TLVs currently contained in the message.
172 | *
173 | * @param message Destination message instance to add the TLV to
174 | * @return Operation result code
175 | */
176 | message_result_t message_tlv_add_checksum(message_t *message);
177 |
178 | /**
179 | * Find the first TLV of a given type in a message and copies it.
180 | *
181 | * @param message Message instance to get the TLV from
182 | * @param type Type of TLV that should be returned
183 | * @param destination Destination buffer
184 | * @param length Length of the destination buffer
185 | * @return Operation result code
186 | */
187 | message_result_t message_tlv_get(const message_t *message, uint8_t type, uint8_t *destination, size_t length);
188 |
189 | /**
190 | * Find the first command TLV in a message and copies it.
191 | *
192 | * @param message Message instance to get the TLV from
193 | * @param command Destination command variable
194 | * @return Operation result code
195 | */
196 | message_result_t message_tlv_get_command(const message_t *message, tlv_command_t *command);
197 |
198 | /**
199 | * Find the first reply TLV in a message and copies it.
200 | *
201 | * @param message Message instance to get the TLV from
202 | * @param reply Destination reply variable
203 | * @return Operation result code
204 | */
205 | message_result_t message_tlv_get_reply(const message_t *message, tlv_reply_t *reply);
206 |
207 | /**
208 | * Find the first motor position TLV in a message and copies it.
209 | *
210 | * @param message Message instance to get the TLV from
211 | * @param position Destination position variable
212 | * @return Operation result code
213 | */
214 | message_result_t message_tlv_get_motor_position(const message_t *message, tlv_motor_position_t *position);
215 |
216 | /**
217 | * Find the first current reading TLV in a message and copies it.
218 | *
219 | * @param message Message instance to get the TLV from
220 | * @param current Destination current variable
221 | * @return Operation result code
222 | */
223 | message_result_t message_tlv_get_current_reading(const message_t *message, uint16_t *current);
224 |
225 | /**
226 | * Returns the size a message would take in its serialized form.
227 | *
228 | * @param message Message instance to calculate the size for
229 | */
230 | size_t message_serialized_size(const message_t *message);
231 |
232 | /**
233 | * Serializes a protocol message into a destination buffer.
234 | *
235 | * @param buffer Destination buffer
236 | * @param length Length of the destination buffer
237 | * @param message Message instance to serialize
238 | * @return Number of bytes written serialized to the buffer or error code
239 | */
240 | ssize_t message_serialize(uint8_t *buffer, size_t length, const message_t *message);
241 |
242 | /**
243 | * Prints a debug representation of a protocol message.
244 | *
245 | * @param message Protocol message to print
246 | */
247 | void message_print(const message_t *message);
248 |
249 | #endif
250 |
--------------------------------------------------------------------------------
/Inc/mxconstants.h:
--------------------------------------------------------------------------------
1 | /**
2 | ******************************************************************************
3 | * File Name : mxconstants.h
4 | * Description : This file contains the common defines of the application
5 | ******************************************************************************
6 | *
7 | * COPYRIGHT(c) 2016 STMicroelectronics
8 | *
9 | * Redistribution and use in source and binary forms, with or without modification,
10 | * are permitted provided that the following conditions are met:
11 | * 1. Redistributions of source code must retain the above copyright notice,
12 | * this list of conditions and the following disclaimer.
13 | * 2. Redistributions in binary form must reproduce the above copyright notice,
14 | * this list of conditions and the following disclaimer in the documentation
15 | * and/or other materials provided with the distribution.
16 | * 3. Neither the name of STMicroelectronics nor the names of its contributors
17 | * may be used to endorse or promote products derived from this software
18 | * without specific prior written permission.
19 | *
20 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23 | * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26 | * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28 | * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 | *
31 | ******************************************************************************
32 | */
33 | /* Define to prevent recursive inclusion -------------------------------------*/
34 | #ifndef __MXCONSTANT_H
35 | #define __MXCONSTANT_H
36 | /* Includes ------------------------------------------------------------------*/
37 |
38 | /* USER CODE BEGIN Includes */
39 |
40 | /* USER CODE END Includes */
41 |
42 | /* Private define ------------------------------------------------------------*/
43 |
44 | #define B1_Pin GPIO_PIN_13
45 | #define B1_GPIO_Port GPIOC
46 | #define USART_TX_Pin GPIO_PIN_2
47 | #define USART_TX_GPIO_Port GPIOA
48 | #define USART_RX_Pin GPIO_PIN_3
49 | #define USART_RX_GPIO_Port GPIOA
50 | #define LD2_Pin GPIO_PIN_5
51 | #define LD2_GPIO_Port GPIOA
52 | #define TMS_Pin GPIO_PIN_13
53 | #define TMS_GPIO_Port GPIOA
54 | #define TCK_Pin GPIO_PIN_14
55 | #define TCK_GPIO_Port GPIOA
56 | #define SWO_Pin GPIO_PIN_3
57 | #define SWO_GPIO_Port GPIOB
58 | /* USER CODE BEGIN Private defines */
59 |
60 | /* USER CODE END Private defines */
61 |
62 | /**
63 | * @}
64 | */
65 |
66 | /**
67 | * @}
68 | */
69 |
70 | #endif /* __MXCONSTANT_H */
71 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
72 |
--------------------------------------------------------------------------------
/Inc/stm32f4xx_it.h:
--------------------------------------------------------------------------------
1 | /**
2 | ******************************************************************************
3 | * @file stm32f4xx_it.h
4 | * @brief This file contains the headers of the interrupt handlers.
5 | ******************************************************************************
6 | *
7 | * COPYRIGHT(c) 2016 STMicroelectronics
8 | *
9 | * Redistribution and use in source and binary forms, with or without modification,
10 | * are permitted provided that the following conditions are met:
11 | * 1. Redistributions of source code must retain the above copyright notice,
12 | * this list of conditions and the following disclaimer.
13 | * 2. Redistributions in binary form must reproduce the above copyright notice,
14 | * this list of conditions and the following disclaimer in the documentation
15 | * and/or other materials provided with the distribution.
16 | * 3. Neither the name of STMicroelectronics nor the names of its contributors
17 | * may be used to endorse or promote products derived from this software
18 | * without specific prior written permission.
19 | *
20 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23 | * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26 | * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28 | * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 | *
31 | ******************************************************************************
32 | */
33 |
34 | /* Define to prevent recursive inclusion -------------------------------------*/
35 | #ifndef __STM32F4xx_IT_H
36 | #define __STM32F4xx_IT_H
37 |
38 | #ifdef __cplusplus
39 | extern "C" {
40 | #endif
41 |
42 | /* Includes ------------------------------------------------------------------*/
43 | /* Exported types ------------------------------------------------------------*/
44 | /* Exported constants --------------------------------------------------------*/
45 | /* Exported macro ------------------------------------------------------------*/
46 | /* Exported functions ------------------------------------------------------- */
47 |
48 | void SysTick_Handler(void);
49 | void USART1_IRQHandler(void);
50 |
51 | #ifdef __cplusplus
52 | }
53 | #endif
54 |
55 | #endif /* __STM32F4xx_IT_H */
56 |
57 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
58 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # UART_TLV
2 |
3 | This repo represents the configuration of TLV protocol over UART with RX interrupt for [STM32F411RET6][MCU_LINK] MCU. This MCU is located on the [STM NUCLEO][BOARD_LINK] board.
4 |
5 | ### Why NUCLEO board?
6 |
7 | Reasons for choosing open Nucleo environment are:
8 |
9 | * it is cheaper then Arduino UNO
10 | * better ARM MCU, a possibility for new features
11 | * open SDK and IDE
12 |
13 |
14 | ### Environment setup
15 |
16 | Programing environment is based on System Workbench for STM32. The System Workbench toolchain, called SW4STM32, is a free multi-OS software development environment based on Eclipse, which supports the full range of STM32 microcontrollers and associated boards. The SW4STM32 toolchain may be obtained from the website www.openstm32.org, which includes forums, blogs, and trainings for technical support. Once registered to this site, users will get installation instructions at the Documentation > System Workbench page to proceed with the download of the free toolchain.
17 |
18 | After sucesful instalation of toolchain, you nead to download git repository:
19 |
20 | ```bash
21 | $ git clone https://github.com/IRNAS/grbl_stm32.git
22 | ```
23 |
24 | Import project to IDE and compile.
25 |
26 | Information on importing project, compiling, and downloading code to the board, can be found here www.openstm32.org
27 |
28 | ### Hardware
29 | Two UART ports are initalize in software. UART1 and UART2.
30 | * UART1 is on port A, pins PA9 (USART1_TX) and PA10 (USART1_RX).
31 | * UART2 is on port A, pins PA2 (USART2_TX) and PA3 (USART2_RX).
32 |
33 |
34 | ### TLV protocol
35 | https://github.com/IRNAS/koruza-driver
36 |
37 |
38 | [MCU_LINK]:
39 | [BOARD_LINK]:
--------------------------------------------------------------------------------
/STM32F411RETx_FLASH.ld:
--------------------------------------------------------------------------------
1 | /*
2 | *****************************************************************************
3 | **
4 |
5 | ** File : LinkerScript.ld
6 | **
7 | ** Abstract : Linker script for STM32F411RETx Device with
8 | ** 512KByte FLASH, 128KByte RAM
9 | **
10 | ** Set heap size, stack size and stack location according
11 | ** to application requirements.
12 | **
13 | ** Set memory bank area and size if external memory is used.
14 | **
15 | ** Target : STMicroelectronics STM32
16 | **
17 | **
18 | ** Distribution: The file is distributed as is, without any warranty
19 | ** of any kind.
20 | **
21 | *****************************************************************************
22 | ** @attention
23 | **
24 | ** © COPYRIGHT(c) 2014 Ac6
25 | **
26 | ** Redistribution and use in source and binary forms, with or without modification,
27 | ** are permitted provided that the following conditions are met:
28 | ** 1. Redistributions of source code must retain the above copyright notice,
29 | ** this list of conditions and the following disclaimer.
30 | ** 2. Redistributions in binary form must reproduce the above copyright notice,
31 | ** this list of conditions and the following disclaimer in the documentation
32 | ** and/or other materials provided with the distribution.
33 | ** 3. Neither the name of Ac6 nor the names of its contributors
34 | ** may be used to endorse or promote products derived from this software
35 | ** without specific prior written permission.
36 | **
37 | ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
38 | ** AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
39 | ** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
40 | ** DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
41 | ** FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
42 | ** DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
43 | ** SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
44 | ** CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
45 | ** OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
46 | ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
47 | **
48 | *****************************************************************************
49 | */
50 |
51 | /* Entry Point */
52 | ENTRY(Reset_Handler)
53 |
54 | /* Highest address of the user mode stack */
55 | _estack = 0x20020000; /* end of RAM */
56 | /* Generate a link error if heap and stack don't fit into RAM */
57 | _Min_Heap_Size = 0x200; /* required amount of heap */
58 | _Min_Stack_Size = 0x400; /* required amount of stack */
59 |
60 | /* Specify the memory areas */
61 | MEMORY
62 | {
63 | FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 512K
64 | RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 128K
65 | }
66 |
67 | /* Define output sections */
68 | SECTIONS
69 | {
70 | /* The startup code goes first into FLASH */
71 | .isr_vector :
72 | {
73 | . = ALIGN(4);
74 | KEEP(*(.isr_vector)) /* Startup code */
75 | . = ALIGN(4);
76 | } >FLASH
77 |
78 | /* The program code and other data goes into FLASH */
79 | .text :
80 | {
81 | . = ALIGN(4);
82 | *(.text) /* .text sections (code) */
83 | *(.text*) /* .text* sections (code) */
84 | *(.glue_7) /* glue arm to thumb code */
85 | *(.glue_7t) /* glue thumb to arm code */
86 | *(.eh_frame)
87 |
88 | KEEP (*(.init))
89 | KEEP (*(.fini))
90 |
91 | . = ALIGN(4);
92 | _etext = .; /* define a global symbols at end of code */
93 | } >FLASH
94 |
95 | /* Constant data goes into FLASH */
96 | .rodata :
97 | {
98 | . = ALIGN(4);
99 | *(.rodata) /* .rodata sections (constants, strings, etc.) */
100 | *(.rodata*) /* .rodata* sections (constants, strings, etc.) */
101 | . = ALIGN(4);
102 | } >FLASH
103 |
104 | .ARM.extab : { *(.ARM.extab* .gnu.linkonce.armextab.*) } >FLASH
105 | .ARM : {
106 | __exidx_start = .;
107 | *(.ARM.exidx*)
108 | __exidx_end = .;
109 | } >FLASH
110 |
111 | .preinit_array :
112 | {
113 | PROVIDE_HIDDEN (__preinit_array_start = .);
114 | KEEP (*(.preinit_array*))
115 | PROVIDE_HIDDEN (__preinit_array_end = .);
116 | } >FLASH
117 | .init_array :
118 | {
119 | PROVIDE_HIDDEN (__init_array_start = .);
120 | KEEP (*(SORT(.init_array.*)))
121 | KEEP (*(.init_array*))
122 | PROVIDE_HIDDEN (__init_array_end = .);
123 | } >FLASH
124 | .fini_array :
125 | {
126 | PROVIDE_HIDDEN (__fini_array_start = .);
127 | KEEP (*(SORT(.fini_array.*)))
128 | KEEP (*(.fini_array*))
129 | PROVIDE_HIDDEN (__fini_array_end = .);
130 | } >FLASH
131 |
132 | /* used by the startup to initialize data */
133 | _sidata = LOADADDR(.data);
134 |
135 | /* Initialized data sections goes into RAM, load LMA copy after code */
136 | .data :
137 | {
138 | . = ALIGN(4);
139 | _sdata = .; /* create a global symbol at data start */
140 | *(.data) /* .data sections */
141 | *(.data*) /* .data* sections */
142 |
143 | . = ALIGN(4);
144 | _edata = .; /* define a global symbol at data end */
145 | } >RAM AT> FLASH
146 |
147 |
148 | /* Uninitialized data section */
149 | . = ALIGN(4);
150 | .bss :
151 | {
152 | /* This is used by the startup in order to initialize the .bss secion */
153 | _sbss = .; /* define a global symbol at bss start */
154 | __bss_start__ = _sbss;
155 | *(.bss)
156 | *(.bss*)
157 | *(COMMON)
158 |
159 | . = ALIGN(4);
160 | _ebss = .; /* define a global symbol at bss end */
161 | __bss_end__ = _ebss;
162 | } >RAM
163 |
164 | /* User_heap_stack section, used to check that there is enough RAM left */
165 | ._user_heap_stack :
166 | {
167 | . = ALIGN(8);
168 | PROVIDE ( end = . );
169 | PROVIDE ( _end = . );
170 | . = . + _Min_Heap_Size;
171 | . = . + _Min_Stack_Size;
172 | . = ALIGN(8);
173 | } >RAM
174 |
175 |
176 |
177 | /* Remove information from the standard libraries */
178 | /DISCARD/ :
179 | {
180 | libc.a ( * )
181 | libm.a ( * )
182 | libgcc.a ( * )
183 | }
184 |
185 | .ARM.attributes 0 : { *(.ARM.attributes) }
186 | }
187 |
188 |
189 |
--------------------------------------------------------------------------------
/Src/AccelStepper.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/VojislavM/UART_TLV/e53f1ba937ba027d8c68ce89e6e11940b29a9d75/Src/AccelStepper.c
--------------------------------------------------------------------------------
/Src/crc32.c:
--------------------------------------------------------------------------------
1 | /*-
2 | * COPYRIGHT (C) 1986 Gary S. Brown. You may use this program, or
3 | * code or tables extracted from it, as desired without restriction.
4 | *
5 | * First, the polynomial itself and its table of feedback terms. The
6 | * polynomial is
7 | * X^32+X^26+X^23+X^22+X^16+X^12+X^11+X^10+X^8+X^7+X^5+X^4+X^2+X^1+X^0
8 | *
9 | * Note that we take it "backwards" and put the highest-order term in
10 | * the lowest-order bit. The X^32 term is "implied"; the LSB is the
11 | * X^31 term, etc. The X^0 term (usually shown as "+1") results in
12 | * the MSB being 1
13 | *
14 | * Note that the usual hardware shift register implementation, which
15 | * is what we're using (we're merely optimizing it by doing eight-bit
16 | * chunks at a time) shifts bits into the lowest-order term. In our
17 | * implementation, that means shifting towards the right. Why do we
18 | * do it this way? Because the calculated CRC must be transmitted in
19 | * order from highest-order term to lowest-order term. UARTs transmit
20 | * characters in order from LSB to MSB. By storing the CRC this way
21 | * we hand it to the UART in the order low-byte to high-byte; the UART
22 | * sends each low-bit to hight-bit; and the result is transmission bit
23 | * by bit from highest- to lowest-order term without requiring any bit
24 | * shuffling on our part. Reception works similarly
25 | *
26 | * The feedback terms table consists of 256, 32-bit entries. Notes
27 | *
28 | * The table can be generated at runtime if desired; code to do so
29 | * is shown later. It might not be obvious, but the feedback
30 | * terms simply represent the results of eight shift/xor opera
31 | * tions for all combinations of data and CRC register values
32 | *
33 | * The values must be right-shifted by eight bits by the "updcrc
34 | * logic; the shift must be unsigned (bring in zeroes). On some
35 | * hardware you could probably optimize the shift in assembler by
36 | * using byte-swap instructions
37 | * polynomial $edb88320
38 | *
39 | *
40 | * CRC32 code derived from work by Gary S. Brown.
41 | */
42 | #include "crc32.h"
43 |
44 | static uint32_t crc32_tab[] = {
45 | 0x00000000, 0x77073096, 0xee0e612c, 0x990951ba, 0x076dc419, 0x706af48f,
46 | 0xe963a535, 0x9e6495a3, 0x0edb8832, 0x79dcb8a4, 0xe0d5e91e, 0x97d2d988,
47 | 0x09b64c2b, 0x7eb17cbd, 0xe7b82d07, 0x90bf1d91, 0x1db71064, 0x6ab020f2,
48 | 0xf3b97148, 0x84be41de, 0x1adad47d, 0x6ddde4eb, 0xf4d4b551, 0x83d385c7,
49 | 0x136c9856, 0x646ba8c0, 0xfd62f97a, 0x8a65c9ec, 0x14015c4f, 0x63066cd9,
50 | 0xfa0f3d63, 0x8d080df5, 0x3b6e20c8, 0x4c69105e, 0xd56041e4, 0xa2677172,
51 | 0x3c03e4d1, 0x4b04d447, 0xd20d85fd, 0xa50ab56b, 0x35b5a8fa, 0x42b2986c,
52 | 0xdbbbc9d6, 0xacbcf940, 0x32d86ce3, 0x45df5c75, 0xdcd60dcf, 0xabd13d59,
53 | 0x26d930ac, 0x51de003a, 0xc8d75180, 0xbfd06116, 0x21b4f4b5, 0x56b3c423,
54 | 0xcfba9599, 0xb8bda50f, 0x2802b89e, 0x5f058808, 0xc60cd9b2, 0xb10be924,
55 | 0x2f6f7c87, 0x58684c11, 0xc1611dab, 0xb6662d3d, 0x76dc4190, 0x01db7106,
56 | 0x98d220bc, 0xefd5102a, 0x71b18589, 0x06b6b51f, 0x9fbfe4a5, 0xe8b8d433,
57 | 0x7807c9a2, 0x0f00f934, 0x9609a88e, 0xe10e9818, 0x7f6a0dbb, 0x086d3d2d,
58 | 0x91646c97, 0xe6635c01, 0x6b6b51f4, 0x1c6c6162, 0x856530d8, 0xf262004e,
59 | 0x6c0695ed, 0x1b01a57b, 0x8208f4c1, 0xf50fc457, 0x65b0d9c6, 0x12b7e950,
60 | 0x8bbeb8ea, 0xfcb9887c, 0x62dd1ddf, 0x15da2d49, 0x8cd37cf3, 0xfbd44c65,
61 | 0x4db26158, 0x3ab551ce, 0xa3bc0074, 0xd4bb30e2, 0x4adfa541, 0x3dd895d7,
62 | 0xa4d1c46d, 0xd3d6f4fb, 0x4369e96a, 0x346ed9fc, 0xad678846, 0xda60b8d0,
63 | 0x44042d73, 0x33031de5, 0xaa0a4c5f, 0xdd0d7cc9, 0x5005713c, 0x270241aa,
64 | 0xbe0b1010, 0xc90c2086, 0x5768b525, 0x206f85b3, 0xb966d409, 0xce61e49f,
65 | 0x5edef90e, 0x29d9c998, 0xb0d09822, 0xc7d7a8b4, 0x59b33d17, 0x2eb40d81,
66 | 0xb7bd5c3b, 0xc0ba6cad, 0xedb88320, 0x9abfb3b6, 0x03b6e20c, 0x74b1d29a,
67 | 0xead54739, 0x9dd277af, 0x04db2615, 0x73dc1683, 0xe3630b12, 0x94643b84,
68 | 0x0d6d6a3e, 0x7a6a5aa8, 0xe40ecf0b, 0x9309ff9d, 0x0a00ae27, 0x7d079eb1,
69 | 0xf00f9344, 0x8708a3d2, 0x1e01f268, 0x6906c2fe, 0xf762575d, 0x806567cb,
70 | 0x196c3671, 0x6e6b06e7, 0xfed41b76, 0x89d32be0, 0x10da7a5a, 0x67dd4acc,
71 | 0xf9b9df6f, 0x8ebeeff9, 0x17b7be43, 0x60b08ed5, 0xd6d6a3e8, 0xa1d1937e,
72 | 0x38d8c2c4, 0x4fdff252, 0xd1bb67f1, 0xa6bc5767, 0x3fb506dd, 0x48b2364b,
73 | 0xd80d2bda, 0xaf0a1b4c, 0x36034af6, 0x41047a60, 0xdf60efc3, 0xa867df55,
74 | 0x316e8eef, 0x4669be79, 0xcb61b38c, 0xbc66831a, 0x256fd2a0, 0x5268e236,
75 | 0xcc0c7795, 0xbb0b4703, 0x220216b9, 0x5505262f, 0xc5ba3bbe, 0xb2bd0b28,
76 | 0x2bb45a92, 0x5cb36a04, 0xc2d7ffa7, 0xb5d0cf31, 0x2cd99e8b, 0x5bdeae1d,
77 | 0x9b64c2b0, 0xec63f226, 0x756aa39c, 0x026d930a, 0x9c0906a9, 0xeb0e363f,
78 | 0x72076785, 0x05005713, 0x95bf4a82, 0xe2b87a14, 0x7bb12bae, 0x0cb61b38,
79 | 0x92d28e9b, 0xe5d5be0d, 0x7cdcefb7, 0x0bdbdf21, 0x86d3d2d4, 0xf1d4e242,
80 | 0x68ddb3f8, 0x1fda836e, 0x81be16cd, 0xf6b9265b, 0x6fb077e1, 0x18b74777,
81 | 0x88085ae6, 0xff0f6a70, 0x66063bca, 0x11010b5c, 0x8f659eff, 0xf862ae69,
82 | 0x616bffd3, 0x166ccf45, 0xa00ae278, 0xd70dd2ee, 0x4e048354, 0x3903b3c2,
83 | 0xa7672661, 0xd06016f7, 0x4969474d, 0x3e6e77db, 0xaed16a4a, 0xd9d65adc,
84 | 0x40df0b66, 0x37d83bf0, 0xa9bcae53, 0xdebb9ec5, 0x47b2cf7f, 0x30b5ffe9,
85 | 0xbdbdf21c, 0xcabac28a, 0x53b39330, 0x24b4a3a6, 0xbad03605, 0xcdd70693,
86 | 0x54de5729, 0x23d967bf, 0xb3667a2e, 0xc4614ab8, 0x5d681b02, 0x2a6f2b94,
87 | 0xb40bbe37, 0xc30c8ea1, 0x5a05df1b, 0x2d02ef8d
88 | };
89 |
90 | uint32_t crc32(uint32_t crc, const void *buf, size_t size)
91 | {
92 | const uint8_t *p;
93 |
94 | p = buf;
95 | crc = crc ^ ~0U;
96 |
97 | while (size--)
98 | crc = crc32_tab[(crc ^ *p++) & 0xFF] ^ (crc >> 8);
99 |
100 | return crc ^ ~0U;
101 | }
102 |
--------------------------------------------------------------------------------
/Src/frame.c:
--------------------------------------------------------------------------------
1 | #include "frame.h"
2 | #include "message.h"
3 |
4 |
5 | #include
6 | #include
7 | #include
8 |
9 |
10 | void frame_parser(uint8_t *buffer, uint8_t length, message_t *msg){
11 | parser_state_t state = SERIAL_STATE_WAIT_START;
12 | uint8_t message[100];
13 | int msg_count = 0;
14 | for (size_t i = 0; i < length; i++){
15 | switch (state) {
16 | case SERIAL_STATE_WAIT_START: {
17 | // Waiting for frame start marker.
18 | if (buffer[i] == FRAME_MARKER_ESCAPE) {
19 | state = SERIAL_STATE_WAIT_START_ESCAPE;
20 | } else if (buffer[i] == FRAME_MARKER_START) {
21 | state = SERIAL_STATE_IN_FRAME;
22 | }
23 | break;
24 | }
25 | case SERIAL_STATE_WAIT_START_ESCAPE: {
26 | state = SERIAL_STATE_WAIT_START;
27 | break;
28 | }
29 | case SERIAL_STATE_IN_FRAME: {
30 | if (buffer[i] == FRAME_MARKER_ESCAPE) {
31 | // Next byte is part of frame content.
32 | state = SERIAL_STATE_AFTER_ESCAPE;
33 | } else if (buffer[i] == FRAME_MARKER_START) {
34 | // Encountered start marker while parsing frame, resynchronize.
35 | length = 0;
36 | } else if (buffer[i] == FRAME_MARKER_END) {
37 | // End of frame.
38 | message_result_t result = message_parse(msg, message, msg_count);
39 | if (result == MESSAGE_SUCCESS) {
40 | #ifdef DEBUG_MODE
41 | printf("Message parsed");
42 | //message_print(msg);
43 | printf("\n");
44 | #endif
45 | } else {
46 | #ifdef DEBUG_MODE
47 | printf("Failed to parse serialized message: %d\n", result);
48 | #endif
49 | }
50 | length = 0;
51 | state = SERIAL_STATE_WAIT_START;
52 | } else {
53 | // Frame content.
54 | message[msg_count++] = buffer[i];
55 | //frame_parser_add_to_frame(parser, byte);
56 | }
57 | break;
58 | }
59 | case SERIAL_STATE_AFTER_ESCAPE: {
60 | message[msg_count++] = buffer[i];
61 | state = SERIAL_STATE_IN_FRAME;
62 | break;
63 | }
64 | }//end switch
65 | }//end for
66 | }//end function
67 |
68 |
69 | ssize_t frame_message(uint8_t *frame, size_t length, const message_t *message){
70 | // First check if there is not enough space in the output buffer. This is
71 | // an optimistic estimate (assumes no escaping is needed).
72 | size_t buffer_size = message_serialized_size(message);
73 | if (length < buffer_size + 2) {
74 | return -1;
75 | }
76 |
77 | // Serialize message into buffer.
78 | uint8_t *buffer = (uint8_t*) malloc(buffer_size);
79 | if (!buffer) {
80 | abort();
81 | }
82 |
83 | ssize_t result = message_serialize(buffer, buffer_size, message);
84 | if (result != buffer_size) {
85 | free(buffer);
86 | return -1;
87 | }
88 |
89 | // Frame the message, inserting escape markers when needed.
90 | size_t index = 0;
91 | frame[index++] = FRAME_MARKER_START;
92 | for (size_t i = 0; i < buffer_size; i++) {
93 | if (index >= length) {
94 | free(buffer);
95 | return -1;
96 | }
97 |
98 | // Escape frame markers.
99 | if (buffer[i] == FRAME_MARKER_START ||
100 | buffer[i] == FRAME_MARKER_END ||
101 | buffer[i] == FRAME_MARKER_ESCAPE) {
102 | frame[index++] = FRAME_MARKER_ESCAPE;
103 | }
104 |
105 | frame[index++] = buffer[i];
106 | }
107 | frame[index++] = FRAME_MARKER_END;
108 |
109 | free(buffer);
110 | return index;
111 | };
112 |
113 |
--------------------------------------------------------------------------------
/Src/inet.c:
--------------------------------------------------------------------------------
1 | /*
2 | * inet.c
3 | *
4 | * Created on: 29. jun. 2016
5 | * Author: vojis
6 | */
7 |
8 |
9 | #include
10 | #include
11 | #include
12 | #include "inet.h"
13 |
14 |
15 | #ifdef LITTLE_ENDIAN
16 |
17 | uint16_t htons(uint16_t v) {
18 | return (v >> 8) | (v << 8);
19 | }
20 | uint32_t htonl(uint32_t v) {
21 | return htons(v >> 16) | (htons((uint16_t) v) << 16);
22 | }
23 |
24 | #else
25 |
26 | uint16_t htons(uint16_t v) {
27 | return v;
28 | }
29 | uint32_t htonl(uint32_t v) {
30 | return v;
31 | }
32 |
33 | #endif
34 |
35 | uint16_t ntohs(uint16_t v) {
36 | return htons(v);
37 | }
38 | uint32_t ntohl(uint32_t v) {
39 | return htonl(v);
40 | }
41 |
--------------------------------------------------------------------------------
/Src/stm32f4xx_hal_msp.c:
--------------------------------------------------------------------------------
1 | /**
2 | ******************************************************************************
3 | * File Name : stm32f4xx_hal_msp.c
4 | * Description : This file provides code for the MSP Initialization
5 | * and de-Initialization codes.
6 | ******************************************************************************
7 | *
8 | * COPYRIGHT(c) 2016 STMicroelectronics
9 | *
10 | * Redistribution and use in source and binary forms, with or without modification,
11 | * are permitted provided that the following conditions are met:
12 | * 1. Redistributions of source code must retain the above copyright notice,
13 | * this list of conditions and the following disclaimer.
14 | * 2. Redistributions in binary form must reproduce the above copyright notice,
15 | * this list of conditions and the following disclaimer in the documentation
16 | * and/or other materials provided with the distribution.
17 | * 3. Neither the name of STMicroelectronics nor the names of its contributors
18 | * may be used to endorse or promote products derived from this software
19 | * without specific prior written permission.
20 | *
21 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24 | * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
25 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27 | * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
28 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
29 | * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 | *
32 | ******************************************************************************
33 | */
34 | /* Includes ------------------------------------------------------------------*/
35 | #include "stm32f4xx_hal.h"
36 |
37 | extern void Error_Handler(void);
38 | /* USER CODE BEGIN 0 */
39 |
40 | /* USER CODE END 0 */
41 |
42 | /**
43 | * Initializes the Global MSP.
44 | */
45 | void HAL_MspInit(void)
46 | {
47 | /* USER CODE BEGIN MspInit 0 */
48 |
49 | /* USER CODE END MspInit 0 */
50 |
51 | HAL_NVIC_SetPriorityGrouping(NVIC_PRIORITYGROUP_0);
52 |
53 | /* System interrupt init*/
54 | /* MemoryManagement_IRQn interrupt configuration */
55 | HAL_NVIC_SetPriority(MemoryManagement_IRQn, 0, 0);
56 | /* BusFault_IRQn interrupt configuration */
57 | HAL_NVIC_SetPriority(BusFault_IRQn, 0, 0);
58 | /* UsageFault_IRQn interrupt configuration */
59 | HAL_NVIC_SetPriority(UsageFault_IRQn, 0, 0);
60 | /* SVCall_IRQn interrupt configuration */
61 | HAL_NVIC_SetPriority(SVCall_IRQn, 0, 0);
62 | /* DebugMonitor_IRQn interrupt configuration */
63 | HAL_NVIC_SetPriority(DebugMonitor_IRQn, 0, 0);
64 | /* PendSV_IRQn interrupt configuration */
65 | HAL_NVIC_SetPriority(PendSV_IRQn, 0, 0);
66 | /* SysTick_IRQn interrupt configuration */
67 | HAL_NVIC_SetPriority(SysTick_IRQn, 0, 0);
68 |
69 | /* USER CODE BEGIN MspInit 1 */
70 |
71 | /* USER CODE END MspInit 1 */
72 | }
73 |
74 | void HAL_UART_MspInit(UART_HandleTypeDef* huart)
75 | {
76 |
77 | GPIO_InitTypeDef GPIO_InitStruct;
78 | if(huart->Instance==USART1)
79 | {
80 | /* USER CODE BEGIN USART1_MspInit 0 */
81 |
82 | /* USER CODE END USART1_MspInit 0 */
83 | /* Peripheral clock enable */
84 | __HAL_RCC_USART1_CLK_ENABLE();
85 |
86 | /**USART1 GPIO Configuration
87 | PA9 ------> USART1_TX
88 | PA10 ------> USART1_RX
89 | */
90 | GPIO_InitStruct.Pin = GPIO_PIN_9|GPIO_PIN_10;
91 | GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
92 | GPIO_InitStruct.Pull = GPIO_PULLUP;
93 | GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH;
94 | GPIO_InitStruct.Alternate = GPIO_AF7_USART1;
95 | HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
96 |
97 | /* Peripheral interrupt init */
98 | HAL_NVIC_SetPriority(USART1_IRQn, 1, 1);
99 | HAL_NVIC_EnableIRQ(USART1_IRQn);
100 | /* USER CODE BEGIN USART1_MspInit 1 */
101 |
102 | /* USER CODE END USART1_MspInit 1 */
103 | }
104 | else if(huart->Instance==USART2)
105 | {
106 | /* USER CODE BEGIN USART2_MspInit 0 */
107 | __HAL_RCC_GPIOA_CLK_ENABLE();
108 | /* USER CODE END USART2_MspInit 0 */
109 | /* Peripheral clock enable */
110 | __HAL_RCC_USART2_CLK_ENABLE();
111 |
112 | /**USART2 GPIO Configuration
113 | PA2 ------> USART2_TX
114 | PA3 ------> USART2_RX
115 | */
116 | GPIO_InitStruct.Pin = USART_TX_Pin|USART_RX_Pin;
117 | GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
118 | GPIO_InitStruct.Pull = GPIO_PULLUP;
119 | GPIO_InitStruct.Speed = GPIO_SPEED_FAST;
120 | GPIO_InitStruct.Alternate = GPIO_AF7_USART2;
121 | HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
122 |
123 | /* USER CODE BEGIN USART2_MspInit 1 */
124 |
125 | /* USER CODE END USART2_MspInit 1 */
126 | }
127 |
128 | }
129 |
130 | void HAL_UART_MspDeInit(UART_HandleTypeDef* huart)
131 | {
132 |
133 | if(huart->Instance==USART1)
134 | {
135 | /* USER CODE BEGIN USART1_MspDeInit 0 */
136 |
137 | /* USER CODE END USART1_MspDeInit 0 */
138 | /* Peripheral clock disable */
139 | __HAL_RCC_USART1_CLK_DISABLE();
140 |
141 | /**USART1 GPIO Configuration
142 | PA9 ------> USART1_TX
143 | PA10 ------> USART1_RX
144 | */
145 | HAL_GPIO_DeInit(GPIOA, GPIO_PIN_9|GPIO_PIN_10);
146 |
147 | /* Peripheral interrupt DeInit*/
148 | HAL_NVIC_DisableIRQ(USART1_IRQn);
149 |
150 | /* USER CODE BEGIN USART1_MspDeInit 1 */
151 |
152 | /* USER CODE END USART1_MspDeInit 1 */
153 | }
154 | else if(huart->Instance==USART2)
155 | {
156 | /* USER CODE BEGIN USART2_MspDeInit 0 */
157 |
158 | /* USER CODE END USART2_MspDeInit 0 */
159 | /* Peripheral clock disable */
160 | __HAL_RCC_USART2_CLK_DISABLE();
161 |
162 | /**USART2 GPIO Configuration
163 | PA2 ------> USART2_TX
164 | PA3 ------> USART2_RX
165 | */
166 | HAL_GPIO_DeInit(GPIOA, USART_TX_Pin|USART_RX_Pin);
167 |
168 | /* USER CODE BEGIN USART2_MspDeInit 1 */
169 |
170 | /* USER CODE END USART2_MspDeInit 1 */
171 | }
172 |
173 | }
174 |
175 | /* USER CODE BEGIN 1 */
176 |
177 | /* USER CODE END 1 */
178 |
179 | /**
180 | * @}
181 | */
182 |
183 | /**
184 | * @}
185 | */
186 |
187 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
188 |
--------------------------------------------------------------------------------
/Src/stm32f4xx_it.c:
--------------------------------------------------------------------------------
1 | /**
2 | ******************************************************************************
3 | * @file stm32f4xx_it.c
4 | * @brief Interrupt Service Routines.
5 | ******************************************************************************
6 | *
7 | * COPYRIGHT(c) 2016 STMicroelectronics
8 | *
9 | * Redistribution and use in source and binary forms, with or without modification,
10 | * are permitted provided that the following conditions are met:
11 | * 1. Redistributions of source code must retain the above copyright notice,
12 | * this list of conditions and the following disclaimer.
13 | * 2. Redistributions in binary form must reproduce the above copyright notice,
14 | * this list of conditions and the following disclaimer in the documentation
15 | * and/or other materials provided with the distribution.
16 | * 3. Neither the name of STMicroelectronics nor the names of its contributors
17 | * may be used to endorse or promote products derived from this software
18 | * without specific prior written permission.
19 | *
20 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23 | * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26 | * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28 | * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 | *
31 | ******************************************************************************
32 | */
33 | /* Includes ------------------------------------------------------------------*/
34 | #include "stm32f4xx_hal.h"
35 | #include "stm32f4xx.h"
36 | #include "stm32f4xx_it.h"
37 |
38 | /* USER CODE BEGIN 0 */
39 |
40 | /* USER CODE END 0 */
41 |
42 | /* External variables --------------------------------------------------------*/
43 | extern UART_HandleTypeDef huart1;
44 |
45 | /******************************************************************************/
46 | /* Cortex-M4 Processor Interruption and Exception Handlers */
47 | /******************************************************************************/
48 |
49 | /**
50 | * @brief This function handles System tick timer.
51 | */
52 | void SysTick_Handler(void)
53 | {
54 | /* USER CODE BEGIN SysTick_IRQn 0 */
55 |
56 | /* USER CODE END SysTick_IRQn 0 */
57 | HAL_IncTick();
58 | HAL_SYSTICK_IRQHandler();
59 | /* USER CODE BEGIN SysTick_IRQn 1 */
60 |
61 | /* USER CODE END SysTick_IRQn 1 */
62 | }
63 |
64 | /******************************************************************************/
65 | /* STM32F4xx Peripheral Interrupt Handlers */
66 | /* Add here the Interrupt Handlers for the used peripherals. */
67 | /* For the available peripheral interrupt handler names, */
68 | /* please refer to the startup file (startup_stm32f4xx.s). */
69 | /******************************************************************************/
70 |
71 | /**
72 | * @brief This function handles USART1 global interrupt.
73 | */
74 | void USART1_IRQHandler(void)
75 | {
76 | /* USER CODE BEGIN USART1_IRQn 0 */
77 |
78 | /* USER CODE END USART1_IRQn 0 */
79 | HAL_UART_IRQHandler(&huart1);
80 | /* USER CODE BEGIN USART1_IRQn 1 */
81 |
82 | /* USER CODE END USART1_IRQn 1 */
83 | }
84 |
85 | /* USER CODE BEGIN 1 */
86 |
87 | /* USER CODE END 1 */
88 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
89 |
--------------------------------------------------------------------------------
/Src/syscalls.c:
--------------------------------------------------------------------------------
1 | #include
2 | #include
3 | #include
4 | #include
5 | #include
6 | #include
7 | #include
8 | #include
9 |
10 | #undef errno
11 | extern int errno;
12 |
13 | register char * stack_ptr asm("sp");
14 |
15 | char *__env[1] = { 0 };
16 | char **environ = __env;
17 |
18 | void initialise_monitor_handles()
19 | {
20 | }
21 |
22 | int _getpid(void)
23 | {
24 | return 1;
25 | }
26 |
27 | int _kill(int pid, int sig)
28 | {
29 | errno = EINVAL;
30 | return -1;
31 | }
32 |
33 | void _exit (int status)
34 | {
35 | _kill(status, -1);
36 | while (1) {} /* Make sure we hang here */
37 | }
38 |
39 | int _write(int file, char *ptr, int len)
40 | {
41 | int todo;
42 |
43 | for (todo = 0; todo < len; todo++)
44 | {
45 | __io_putchar( *ptr++ );
46 | }
47 |
48 | /* Implement your write code here, this is used by puts and printf for example */
49 | return len;
50 | }
51 |
52 | caddr_t _sbrk(int incr)
53 | {
54 | extern char end asm("end");
55 | static char *heap_end;
56 | char *prev_heap_end;
57 |
58 | if (heap_end == 0)
59 | heap_end = &end;
60 |
61 | prev_heap_end = heap_end;
62 | if (heap_end + incr > stack_ptr)
63 | {
64 | // write(1, "Heap and stack collision\n", 25);
65 | // abort();
66 | errno = ENOMEM;
67 | return (caddr_t) -1;
68 | }
69 |
70 | heap_end += incr;
71 |
72 | return (caddr_t) prev_heap_end;
73 | }
74 |
75 | int _close(int file)
76 | {
77 | return -1;
78 | }
79 |
80 |
81 | int _fstat(int file, struct stat *st)
82 | {
83 | st->st_mode = S_IFCHR;
84 | return 0;
85 | }
86 |
87 | int _isatty(int file)
88 | {
89 | return 1;
90 | }
91 |
92 | int _lseek(int file, int ptr, int dir)
93 | {
94 | return 0;
95 | }
96 |
97 | int _read(int file, char *ptr, int len)
98 | {
99 | return 0;
100 | }
101 |
102 | int _open(char *path, int flags, ...)
103 | {
104 | /* Pretend like we always fail */
105 | return -1;
106 | }
107 |
108 | int _wait(int *status)
109 | {
110 | errno = ECHILD;
111 | return -1;
112 | }
113 |
114 | int _unlink(char *name)
115 | {
116 | errno = ENOENT;
117 | return -1;
118 | }
119 |
120 | int _times(struct tms *buf)
121 | {
122 | return -1;
123 | }
124 |
125 | int _stat(char *file, struct stat *st)
126 | {
127 | st->st_mode = S_IFCHR;
128 | return 0;
129 | }
130 |
131 | int _link(char *old, char *new)
132 | {
133 | errno = EMLINK;
134 | return -1;
135 | }
136 |
137 | int _fork(void)
138 | {
139 | errno = EAGAIN;
140 | return -1;
141 | }
142 |
143 | int _execve(char *name, char **argv, char **env)
144 | {
145 | errno = ENOMEM;
146 | return -1;
147 | }
148 |
--------------------------------------------------------------------------------
/USART_INT.ioc:
--------------------------------------------------------------------------------
1 | #MicroXplorer Configuration settings - do not modify
2 | File.Version=6
3 | KeepUserPlacement=true
4 | Mcu.Family=STM32F4
5 | Mcu.IP0=NVIC
6 | Mcu.IP1=RCC
7 | Mcu.IP2=SYS
8 | Mcu.IP3=USART1
9 | Mcu.IP4=USART2
10 | Mcu.IPNb=5
11 | Mcu.Name=STM32F411R(C-E)Tx
12 | Mcu.Package=LQFP64
13 | Mcu.Pin0=PC13-ANTI_TAMP
14 | Mcu.Pin1=PC14-OSC32_IN
15 | Mcu.Pin10=PA13
16 | Mcu.Pin11=PA14
17 | Mcu.Pin12=PB3
18 | Mcu.Pin13=VP_SYS_VS_Systick
19 | Mcu.Pin2=PC15-OSC32_OUT
20 | Mcu.Pin3=PH0 - OSC_IN
21 | Mcu.Pin4=PH1 - OSC_OUT
22 | Mcu.Pin5=PA2
23 | Mcu.Pin6=PA3
24 | Mcu.Pin7=PA5
25 | Mcu.Pin8=PA9
26 | Mcu.Pin9=PA10
27 | Mcu.PinsNb=14
28 | Mcu.UserConstants=
29 | Mcu.UserName=STM32F411RETx
30 | MxCube.Version=4.15.1
31 | MxDb.Version=DB.4.0.151
32 | NVIC.BusFault_IRQn=true\:0\:0\:false\:false\:false
33 | NVIC.DebugMonitor_IRQn=true\:0\:0\:false\:false\:false
34 | NVIC.HardFault_IRQn=true\:0\:0\:false\:false\:false
35 | NVIC.MemoryManagement_IRQn=true\:0\:0\:false\:false\:false
36 | NVIC.NonMaskableInt_IRQn=true\:0\:0\:false\:false\:false
37 | NVIC.PendSV_IRQn=true\:0\:0\:false\:false\:false
38 | NVIC.PriorityGroup=NVIC_PRIORITYGROUP_0
39 | NVIC.SVCall_IRQn=true\:0\:0\:false\:false\:false
40 | NVIC.SysTick_IRQn=true\:0\:0\:false\:false\:true
41 | NVIC.USART1_IRQn=true\:0\:0\:false\:false\:true
42 | NVIC.UsageFault_IRQn=true\:0\:0\:false\:false\:false
43 | PA10.Mode=Asynchronous
44 | PA10.Signal=USART1_RX
45 | PA13.GPIOParameters=GPIO_Label
46 | PA13.GPIO_Label=TMS
47 | PA13.Locked=true
48 | PA13.Signal=SYS_JTMS-SWDIO
49 | PA14.GPIOParameters=GPIO_Label
50 | PA14.GPIO_Label=TCK
51 | PA14.Locked=true
52 | PA14.Signal=SYS_JTCK-SWCLK
53 | PA2.GPIOParameters=GPIO_Label
54 | PA2.GPIO_Label=USART_TX
55 | PA2.Locked=true
56 | PA2.Mode=Asynchronous
57 | PA2.Signal=USART2_TX
58 | PA3.GPIOParameters=GPIO_Label
59 | PA3.GPIO_Label=USART_RX
60 | PA3.Locked=true
61 | PA3.Mode=Asynchronous
62 | PA3.Signal=USART2_RX
63 | PA5.GPIOParameters=GPIO_Label
64 | PA5.GPIO_Label=LD2 [Green Led]
65 | PA5.Locked=true
66 | PA5.Signal=GPIO_Output
67 | PA9.Mode=Asynchronous
68 | PA9.Signal=USART1_TX
69 | PB3.GPIOParameters=GPIO_Label
70 | PB3.GPIO_Label=SWO
71 | PB3.Locked=true
72 | PB3.Signal=SYS_JTDO-SWO
73 | PC13-ANTI_TAMP.GPIOParameters=GPIO_Label,GPIO_ModeDefaultEXTI
74 | PC13-ANTI_TAMP.GPIO_Label=B1 [Blue PushButton]
75 | PC13-ANTI_TAMP.GPIO_ModeDefaultEXTI=GPIO_MODE_EVT_RISING
76 | PC13-ANTI_TAMP.Locked=true
77 | PC13-ANTI_TAMP.Signal=GPXTI13
78 | PC14-OSC32_IN.Locked=true
79 | PC14-OSC32_IN.Signal=RCC_OSC32_IN
80 | PC15-OSC32_OUT.Locked=true
81 | PC15-OSC32_OUT.Signal=RCC_OSC32_OUT
82 | PCC.Checker=false
83 | PCC.Line=STM32F411
84 | PCC.MCU=STM32F411R(C-E)Tx
85 | PCC.MXVersion=4.15.1
86 | PCC.PartNumber=STM32F411RETx
87 | PCC.Seq0=0
88 | PCC.Series=STM32F4
89 | PCC.Temperature=25
90 | PCC.Vdd=null
91 | PH0\ -\ OSC_IN.Locked=true
92 | PH0\ -\ OSC_IN.Signal=RCC_OSC_IN
93 | PH1\ -\ OSC_OUT.Locked=true
94 | PH1\ -\ OSC_OUT.Signal=RCC_OSC_OUT
95 | ProjectManager.AskForMigrate=true
96 | ProjectManager.BackupPrevious=false
97 | ProjectManager.CompilerOptimize=2
98 | ProjectManager.ComputerToolchain=false
99 | ProjectManager.CoupleFile=false
100 | ProjectManager.DeletePrevious=true
101 | ProjectManager.DeviceId=STM32F411RETx
102 | ProjectManager.FirmwarePackage=STM32Cube FW_F4 V1.12.0
103 | ProjectManager.FreePins=false
104 | ProjectManager.HalAssertFull=false
105 | ProjectManager.HeapSize=0x200
106 | ProjectManager.KeepUserCode=true
107 | ProjectManager.LastFirmware=true
108 | ProjectManager.LibraryCopy=1
109 | ProjectManager.PreviousToolchain=SW4STM32
110 | ProjectManager.ProjectBuild=false
111 | ProjectManager.ProjectFileName=USART_INT.ioc
112 | ProjectManager.ProjectName=USART_INT
113 | ProjectManager.StackSize=0x400
114 | ProjectManager.TargetToolchain=SW4STM32
115 | ProjectManager.ToolChainLocation=C\:\\Users\\vojis\\Documents\\stm_projects\\USART_INT
116 | ProjectManager.UnderRoot=true
117 | ProjectManager.functionlistsort=1-MX_GPIO_Init-GPIO-false,2-MX_USART1_UART_Init-USART1-false,3-MX_USART2_UART_Init-USART2-false
118 | RCC.48MHZClocksFreq_Value=84000000
119 | RCC.AHBFreq_Value=84000000
120 | RCC.APB1CLKDivider=RCC_HCLK_DIV2
121 | RCC.APB1Freq_Value=42000000
122 | RCC.APB1TimFreq_Value=84000000
123 | RCC.APB2Freq_Value=84000000
124 | RCC.APB2TimFreq_Value=84000000
125 | RCC.CortexFreq_Value=84000000
126 | RCC.EthernetFreq_Value=84000000
127 | RCC.FCLKCortexFreq_Value=84000000
128 | RCC.FLatency-AdvancedSettings=FLASH_LATENCY_2
129 | RCC.FamilyName=M
130 | RCC.HCLKFreq_Value=84000000
131 | RCC.HSE_VALUE=8000000
132 | RCC.HSI_VALUE=16000000
133 | RCC.I2SClocksFreq_Value=96000000
134 | RCC.IPParameters=48MHZClocksFreq_Value,AHBFreq_Value,APB1CLKDivider,APB1Freq_Value,APB1TimFreq_Value,APB2Freq_Value,APB2TimFreq_Value,CortexFreq_Value,EthernetFreq_Value,FCLKCortexFreq_Value,FLatency-AdvancedSettings,FamilyName,HCLKFreq_Value,HSE_VALUE,HSI_VALUE,I2SClocksFreq_Value,LSE_VALUE,LSI_VALUE,MCO2PinFreq_Value,PLLCLKFreq_Value,PLLN,PLLP,PLLQCLKFreq_Value,RTCFreq_Value,RTCHSEDivFreq_Value,SYSCLKFreq_VALUE,SYSCLKSource,VCOI2SOutputFreq_Value,VCOInputFreq_Value,VCOInputMFreq_Value,VCOOutputFreq_Value,VcooutputI2S
135 | RCC.LSE_VALUE=32768
136 | RCC.LSI_VALUE=32000
137 | RCC.MCO2PinFreq_Value=84000000
138 | RCC.PLLCLKFreq_Value=84000000
139 | RCC.PLLN=336
140 | RCC.PLLP=RCC_PLLP_DIV4
141 | RCC.PLLQCLKFreq_Value=84000000
142 | RCC.RTCFreq_Value=32000
143 | RCC.RTCHSEDivFreq_Value=4000000
144 | RCC.SYSCLKFreq_VALUE=84000000
145 | RCC.SYSCLKSource=RCC_SYSCLKSOURCE_PLLCLK
146 | RCC.VCOI2SOutputFreq_Value=192000000
147 | RCC.VCOInputFreq_Value=1000000
148 | RCC.VCOInputMFreq_Value=1000000
149 | RCC.VCOOutputFreq_Value=336000000
150 | RCC.VcooutputI2S=96000000
151 | SH.GPXTI13.0=GPIO_EXTI13
152 | SH.GPXTI13.ConfNb=1
153 | VP_SYS_VS_Systick.Mode=SysTick
154 | VP_SYS_VS_Systick.Signal=SYS_VS_Systick
155 | board=NUCLEO-F411RE
156 | boardIOC=true
157 |
--------------------------------------------------------------------------------