]> git.leonardobizzoni.com Git - pioneer-stm32/commit
dma tests
authorFederica Di Lauro <federicadilauro1998@gmail.com>
Mon, 10 Feb 2020 14:19:39 +0000 (15:19 +0100)
committerFederica Di Lauro <federicadilauro1998@gmail.com>
Mon, 10 Feb 2020 14:19:39 +0000 (15:19 +0100)
commitfd9a0e2cbb747c45e6c4f63e3971df17303370e2
tree974b9a7f2c01d945ea6dcd9c23030d61ee75789e
parentbe33a1e84ea5bf80b7f1d6387e1a8520ebca2d28
dma tests
90 files changed:
otto_controller/.mxproject
otto_controller/Core/Inc/dma.h [new file with mode: 0644]
otto_controller/Core/Inc/stm32f7xx_it.h
otto_controller/Core/Src/dma.c [new file with mode: 0644]
otto_controller/Core/Src/main.cpp
otto_controller/Core/Src/stm32f7xx_it.c
otto_controller/Core/Src/usart.c
otto_controller/otto_controller.ioc
test_dma/.cproject [new file with mode: 0644]
test_dma/.mxproject [new file with mode: 0644]
test_dma/.project [new file with mode: 0644]
test_dma/.settings/language.settings.xml [new file with mode: 0644]
test_dma/Core/Inc/main.h [new file with mode: 0644]
test_dma/Core/Inc/stm32f7xx_hal_conf.h [new file with mode: 0644]
test_dma/Core/Inc/stm32f7xx_it.h [new file with mode: 0644]
test_dma/Core/Src/main.c [new file with mode: 0644]
test_dma/Core/Src/stm32f7xx_hal_msp.c [new file with mode: 0644]
test_dma/Core/Src/stm32f7xx_it.c [new file with mode: 0644]
test_dma/Core/Src/syscalls.c [new file with mode: 0644]
test_dma/Core/Src/sysmem.c [new file with mode: 0644]
test_dma/Core/Src/system_stm32f7xx.c [new file with mode: 0644]
test_dma/Core/Startup/startup_stm32f767zitx.s [new file with mode: 0644]
test_dma/Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f767xx.h [new file with mode: 0644]
test_dma/Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f7xx.h [new file with mode: 0644]
test_dma/Drivers/CMSIS/Device/ST/STM32F7xx/Include/system_stm32f7xx.h [new file with mode: 0644]
test_dma/Drivers/CMSIS/Include/cmsis_armcc.h [new file with mode: 0644]
test_dma/Drivers/CMSIS/Include/cmsis_armclang.h [new file with mode: 0644]
test_dma/Drivers/CMSIS/Include/cmsis_compiler.h [new file with mode: 0644]
test_dma/Drivers/CMSIS/Include/cmsis_gcc.h [new file with mode: 0644]
test_dma/Drivers/CMSIS/Include/cmsis_iccarm.h [new file with mode: 0644]
test_dma/Drivers/CMSIS/Include/cmsis_version.h [new file with mode: 0644]
test_dma/Drivers/CMSIS/Include/core_armv8mbl.h [new file with mode: 0644]
test_dma/Drivers/CMSIS/Include/core_armv8mml.h [new file with mode: 0644]
test_dma/Drivers/CMSIS/Include/core_cm0.h [new file with mode: 0644]
test_dma/Drivers/CMSIS/Include/core_cm0plus.h [new file with mode: 0644]
test_dma/Drivers/CMSIS/Include/core_cm1.h [new file with mode: 0644]
test_dma/Drivers/CMSIS/Include/core_cm23.h [new file with mode: 0644]
test_dma/Drivers/CMSIS/Include/core_cm3.h [new file with mode: 0644]
test_dma/Drivers/CMSIS/Include/core_cm33.h [new file with mode: 0644]
test_dma/Drivers/CMSIS/Include/core_cm4.h [new file with mode: 0644]
test_dma/Drivers/CMSIS/Include/core_cm7.h [new file with mode: 0644]
test_dma/Drivers/CMSIS/Include/core_sc000.h [new file with mode: 0644]
test_dma/Drivers/CMSIS/Include/core_sc300.h [new file with mode: 0644]
test_dma/Drivers/CMSIS/Include/mpu_armv7.h [new file with mode: 0644]
test_dma/Drivers/CMSIS/Include/mpu_armv8.h [new file with mode: 0644]
test_dma/Drivers/CMSIS/Include/tz_context.h [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_cortex.h [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_def.h [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma.h [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma_ex.h [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_exti.h [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_flash.h [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_flash_ex.h [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_gpio.h [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_gpio_ex.h [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_i2c.h [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_i2c_ex.h [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc_ex.h [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c.c [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_tim.c [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_tim_ex.c [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_uart.c [new file with mode: 0644]
test_dma/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_uart_ex.c [new file with mode: 0644]
test_dma/STM32F767ZITX_FLASH.ld [new file with mode: 0644]
test_dma/STM32F767ZITX_RAM.ld [new file with mode: 0644]
test_dma/test_dma.ioc [new file with mode: 0644]
utils/py_serial_examples/receive.py
utils/py_serial_examples/transmit.py