├── .gitattributes ├── .gitignore ├── NUCLEO-F401RE ├── AI │ ├── AI_SYSTEM_PERFORMANCE │ │ ├── .gitignore │ │ ├── .mxproject │ │ ├── .project │ │ ├── AI_SYSTEM_PERFORMANCE.ioc │ │ ├── Drivers │ │ │ ├── CMSIS │ │ │ │ ├── DSP_Lib │ │ │ │ │ └── Source │ │ │ │ │ │ └── BasicMathFunctions │ │ │ │ │ │ └── arm_dot_prod_f32.c │ │ │ │ ├── Device │ │ │ │ │ └── ST │ │ │ │ │ │ └── STM32F4xx │ │ │ │ │ │ └── Include │ │ │ │ │ │ ├── stm32f401xe.h │ │ │ │ │ │ ├── stm32f4xx.h │ │ │ │ │ │ └── system_stm32f4xx.h │ │ │ │ └── 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_crc.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_crc.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 │ │ │ ├── RTE_Components.h │ │ │ ├── app_x-cube-ai.h │ │ │ ├── bsp_ai.h │ │ │ ├── constants_ai.h │ │ │ ├── crc.h │ │ │ ├── gpio.h │ │ │ ├── main.h │ │ │ ├── stm32f4xx_hal_conf.h │ │ │ ├── stm32f4xx_it.h │ │ │ └── usart.h │ │ ├── Middlewares │ │ │ └── ST │ │ │ │ ├── AI │ │ │ │ └── AI │ │ │ │ │ ├── data │ │ │ │ │ ├── network_data.c │ │ │ │ │ └── network_data.h │ │ │ │ │ ├── include │ │ │ │ │ ├── ai_common_config.h │ │ │ │ │ ├── ai_datatypes_defines.h │ │ │ │ │ ├── ai_datatypes_format.h │ │ │ │ │ ├── ai_datatypes_internal.h │ │ │ │ │ ├── ai_math_helpers.h │ │ │ │ │ ├── ai_memory_manager.h │ │ │ │ │ ├── ai_network_inspector.h │ │ │ │ │ ├── ai_platform.h │ │ │ │ │ ├── ai_platform_interface.h │ │ │ │ │ ├── core_common.h │ │ │ │ │ ├── core_conv2d_kernels_float.h │ │ │ │ │ ├── core_datatypes.h │ │ │ │ │ ├── core_lists.h │ │ │ │ │ ├── core_log.h │ │ │ │ │ ├── core_net_inspect.h │ │ │ │ │ ├── core_net_inspect_interface.h │ │ │ │ │ ├── core_utils.h │ │ │ │ │ ├── datatypes_network.h │ │ │ │ │ ├── formats_list.h │ │ │ │ │ ├── layers.h │ │ │ │ │ ├── layers_common.h │ │ │ │ │ ├── layers_conv2d.h │ │ │ │ │ ├── layers_cycles_estimation.h │ │ │ │ │ ├── layers_generic.h │ │ │ │ │ ├── layers_lambda.h │ │ │ │ │ ├── layers_list.h │ │ │ │ │ ├── layers_nl.h │ │ │ │ │ ├── layers_norm.h │ │ │ │ │ ├── layers_override.h │ │ │ │ │ ├── layers_pool.h │ │ │ │ │ ├── layers_rnn.h │ │ │ │ │ ├── log.h │ │ │ │ │ ├── network.h │ │ │ │ │ └── platform_config.h │ │ │ │ │ └── src │ │ │ │ │ └── network.c │ │ │ │ └── Application │ │ │ │ └── SystemPerformance │ │ │ │ ├── Inc │ │ │ │ └── aiSystemPerformance.h │ │ │ │ └── Src │ │ │ │ └── aiSystemPerformance.c │ │ ├── STM32F401RE_FLASH.ld │ │ ├── Src │ │ │ ├── app_x-cube-ai.c │ │ │ ├── crc.c │ │ │ ├── gpio.c │ │ │ ├── main.c │ │ │ ├── stm32f4xx_hal_msp.c │ │ │ ├── stm32f4xx_it.c │ │ │ ├── system_stm32f4xx.c │ │ │ └── usart.c │ │ ├── startup │ │ │ └── startup_stm32f401xe.s │ │ └── syscalls.c │ ├── AI_THERMOGRAPHY │ │ ├── .gitignore │ │ ├── .mxproject │ │ ├── .project │ │ ├── AI_THERMOGRAPHY.ioc │ │ ├── Drivers │ │ │ ├── CMSIS │ │ │ │ ├── DSP_Lib │ │ │ │ │ └── Source │ │ │ │ │ │ └── BasicMathFunctions │ │ │ │ │ │ └── arm_dot_prod_f32.c │ │ │ │ ├── Device │ │ │ │ │ └── ST │ │ │ │ │ │ └── STM32F4xx │ │ │ │ │ │ └── Include │ │ │ │ │ │ ├── stm32f401xe.h │ │ │ │ │ │ ├── stm32f4xx.h │ │ │ │ │ │ └── system_stm32f4xx.h │ │ │ │ ├── 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 │ │ │ │ └── Lib │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── libarm_cortexM4lf_math.a │ │ │ └── STM32F4xx_HAL_Driver │ │ │ │ ├── Inc │ │ │ │ ├── Legacy │ │ │ │ │ └── stm32_hal_legacy.h │ │ │ │ ├── stm32f4xx_hal.h │ │ │ │ ├── stm32f4xx_hal_cortex.h │ │ │ │ ├── stm32f4xx_hal_crc.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_i2c.h │ │ │ │ ├── stm32f4xx_hal_i2c_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_crc.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_i2c.c │ │ │ │ ├── stm32f4xx_hal_i2c_ex.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 │ │ │ ├── RTE_Components.h │ │ │ ├── ai.h │ │ │ ├── amg8833.h │ │ │ ├── app_x-cube-ai.h │ │ │ ├── bsp_ai.h │ │ │ ├── constants_ai.h │ │ │ ├── crc.h │ │ │ ├── dct.h │ │ │ ├── gpio.h │ │ │ ├── i2c.h │ │ │ ├── lcd.h │ │ │ ├── main.h │ │ │ ├── stm32f4xx_hal_conf.h │ │ │ ├── stm32f4xx_it.h │ │ │ └── usart.h │ │ ├── Middlewares │ │ │ └── ST │ │ │ │ └── AI │ │ │ │ └── AI │ │ │ │ ├── data │ │ │ │ ├── network_data.c │ │ │ │ └── network_data.h │ │ │ │ ├── include │ │ │ │ ├── ai_common_config.h │ │ │ │ ├── ai_datatypes_defines.h │ │ │ │ ├── ai_datatypes_format.h │ │ │ │ ├── ai_datatypes_internal.h │ │ │ │ ├── ai_math_helpers.h │ │ │ │ ├── ai_memory_manager.h │ │ │ │ ├── ai_network_inspector.h │ │ │ │ ├── ai_platform.h │ │ │ │ ├── ai_platform_interface.h │ │ │ │ ├── core_common.h │ │ │ │ ├── core_conv2d_kernels_float.h │ │ │ │ ├── core_datatypes.h │ │ │ │ ├── core_lists.h │ │ │ │ ├── core_log.h │ │ │ │ ├── core_net_inspect.h │ │ │ │ ├── core_net_inspect_interface.h │ │ │ │ ├── core_utils.h │ │ │ │ ├── datatypes_network.h │ │ │ │ ├── formats_list.h │ │ │ │ ├── layers.h │ │ │ │ ├── layers_common.h │ │ │ │ ├── layers_conv2d.h │ │ │ │ ├── layers_cycles_estimation.h │ │ │ │ ├── layers_generic.h │ │ │ │ ├── layers_lambda.h │ │ │ │ ├── layers_list.h │ │ │ │ ├── layers_nl.h │ │ │ │ ├── layers_norm.h │ │ │ │ ├── layers_override.h │ │ │ │ ├── layers_pool.h │ │ │ │ ├── layers_rnn.h │ │ │ │ ├── log.h │ │ │ │ ├── network.h │ │ │ │ └── platform_config.h │ │ │ │ └── src │ │ │ │ └── network.c │ │ ├── STM32F401RE_FLASH.ld │ │ ├── Src │ │ │ ├── ai.c │ │ │ ├── amg8833.c │ │ │ ├── app_x-cube-ai.c │ │ │ ├── crc.c │ │ │ ├── dct.c │ │ │ ├── dsp.c │ │ │ ├── gpio.c │ │ │ ├── i2c.c │ │ │ ├── lcd.c │ │ │ ├── main.c │ │ │ ├── stm32f4xx_hal_msp.c │ │ │ ├── stm32f4xx_it.c │ │ │ ├── system_stm32f4xx.c │ │ │ └── usart.c │ │ ├── startup │ │ │ └── startup_stm32f401xe.s │ │ └── syscalls.c │ ├── AI_VALIDATION │ │ ├── .gitignore │ │ ├── .mxproject │ │ ├── .project │ │ ├── AI_VALIDATION.ioc │ │ ├── Drivers │ │ │ ├── CMSIS │ │ │ │ ├── DSP_Lib │ │ │ │ │ └── Source │ │ │ │ │ │ └── BasicMathFunctions │ │ │ │ │ │ └── arm_dot_prod_f32.c │ │ │ │ ├── Device │ │ │ │ │ └── ST │ │ │ │ │ │ └── STM32F4xx │ │ │ │ │ │ └── Include │ │ │ │ │ │ ├── stm32f401xe.h │ │ │ │ │ │ ├── stm32f4xx.h │ │ │ │ │ │ └── system_stm32f4xx.h │ │ │ │ └── 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_crc.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_crc.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 │ │ │ ├── RTE_Components.h │ │ │ ├── app_x-cube-ai.h │ │ │ ├── bsp_ai.h │ │ │ ├── constants_ai.h │ │ │ ├── crc.h │ │ │ ├── gpio.h │ │ │ ├── main.h │ │ │ ├── stm32f4xx_hal_conf.h │ │ │ ├── stm32f4xx_it.h │ │ │ └── usart.h │ │ ├── Middlewares │ │ │ └── ST │ │ │ │ ├── AI │ │ │ │ └── AI │ │ │ │ │ ├── data │ │ │ │ │ ├── network_data.c │ │ │ │ │ └── network_data.h │ │ │ │ │ ├── include │ │ │ │ │ ├── ai_common_config.h │ │ │ │ │ ├── ai_datatypes_defines.h │ │ │ │ │ ├── ai_datatypes_format.h │ │ │ │ │ ├── ai_datatypes_internal.h │ │ │ │ │ ├── ai_math_helpers.h │ │ │ │ │ ├── ai_memory_manager.h │ │ │ │ │ ├── ai_network_inspector.h │ │ │ │ │ ├── ai_platform.h │ │ │ │ │ ├── ai_platform_interface.h │ │ │ │ │ ├── core_common.h │ │ │ │ │ ├── core_conv2d_kernels_float.h │ │ │ │ │ ├── core_datatypes.h │ │ │ │ │ ├── core_lists.h │ │ │ │ │ ├── core_log.h │ │ │ │ │ ├── core_net_inspect.h │ │ │ │ │ ├── core_net_inspect_interface.h │ │ │ │ │ ├── core_utils.h │ │ │ │ │ ├── datatypes_network.h │ │ │ │ │ ├── formats_list.h │ │ │ │ │ ├── layers.h │ │ │ │ │ ├── layers_common.h │ │ │ │ │ ├── layers_conv2d.h │ │ │ │ │ ├── layers_cycles_estimation.h │ │ │ │ │ ├── layers_generic.h │ │ │ │ │ ├── layers_lambda.h │ │ │ │ │ ├── layers_list.h │ │ │ │ │ ├── layers_nl.h │ │ │ │ │ ├── layers_norm.h │ │ │ │ │ ├── layers_override.h │ │ │ │ │ ├── layers_pool.h │ │ │ │ │ ├── layers_rnn.h │ │ │ │ │ ├── log.h │ │ │ │ │ ├── network.h │ │ │ │ │ └── platform_config.h │ │ │ │ │ └── src │ │ │ │ │ └── network.c │ │ │ │ └── Application │ │ │ │ └── Validation │ │ │ │ ├── Inc │ │ │ │ ├── aiPbMgr.h │ │ │ │ ├── aiTestUtility.h │ │ │ │ ├── aiValidation.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── pb_encode.h │ │ │ │ └── stm32msg.pb.h │ │ │ │ └── Src │ │ │ │ ├── aiPbMgr.c │ │ │ │ ├── aiTestUtility.c │ │ │ │ ├── aiValidation.c │ │ │ │ ├── pb_common.c │ │ │ │ ├── pb_decode.c │ │ │ │ ├── pb_encode.c │ │ │ │ └── stm32msg.pb.c │ │ ├── STM32F401RE_FLASH.ld │ │ ├── Src │ │ │ ├── app_x-cube-ai.c │ │ │ ├── crc.c │ │ │ ├── gpio.c │ │ │ ├── main.c │ │ │ ├── stm32f4xx_hal_msp.c │ │ │ ├── stm32f4xx_it.c │ │ │ ├── system_stm32f4xx.c │ │ │ └── usart.c │ │ ├── startup │ │ │ └── startup_stm32f401xe.s │ │ └── syscalls.c │ ├── CODE_READING.md │ └── README.md ├── BLE │ ├── ApplicationSample │ │ ├── .gitignore │ │ ├── .mxproject │ │ ├── .project │ │ ├── ApplicationSample.ioc │ │ ├── Drivers │ │ │ ├── CMSIS │ │ │ │ ├── Device │ │ │ │ │ └── ST │ │ │ │ │ │ └── STM32F4xx │ │ │ │ │ │ └── Include │ │ │ │ │ │ ├── stm32f401xe.h │ │ │ │ │ │ ├── stm32f4xx.h │ │ │ │ │ │ └── system_stm32f4xx.h │ │ │ │ └── Include │ │ │ │ │ ├── cmsis_armcc.h │ │ │ │ │ ├── cmsis_armclang.h │ │ │ │ │ ├── cmsis_compiler.h │ │ │ │ │ ├── cmsis_gcc.h │ │ │ │ │ ├── cmsis_iccarm.h │ │ │ │ │ ├── cmsis_version.h │ │ │ │ │ ├── core_armv8mbl.h │ │ │ │ │ ├── core_armv8mml.h │ │ │ │ │ ├── core_cm0.h │ │ │ │ │ ├── core_cm0plus.h │ │ │ │ │ ├── core_cm1.h │ │ │ │ │ ├── core_cm23.h │ │ │ │ │ ├── core_cm3.h │ │ │ │ │ ├── core_cm33.h │ │ │ │ │ ├── core_cm4.h │ │ │ │ │ ├── core_cm7.h │ │ │ │ │ ├── core_sc000.h │ │ │ │ │ ├── core_sc300.h │ │ │ │ │ ├── mpu_armv7.h │ │ │ │ │ ├── mpu_armv8.h │ │ │ │ │ └── tz_context.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_exti.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_spi.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_exti.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_spi.c │ │ │ │ ├── stm32f4xx_hal_tim.c │ │ │ │ ├── stm32f4xx_hal_tim_ex.c │ │ │ │ └── stm32f4xx_hal_uart.c │ │ ├── Inc │ │ │ ├── RTE_Components.h │ │ │ ├── app_x-cube-ble1.h │ │ │ ├── ble_list_utils.h │ │ │ ├── bluenrg_conf.h │ │ │ ├── gpio.h │ │ │ ├── hci_tl_interface.h │ │ │ ├── main.h │ │ │ ├── nucleo_f401re_bus.h │ │ │ ├── nucleo_f401re_conf.h │ │ │ ├── nucleo_f401re_errno.h │ │ │ ├── role_type.h │ │ │ ├── sample_service.h │ │ │ ├── stm32f4_nucleo_f401re.h │ │ │ ├── stm32f4xx_hal_conf.h │ │ │ └── stm32f4xx_it.h │ │ ├── Middlewares │ │ │ └── ST │ │ │ │ ├── Application │ │ │ │ └── Projects │ │ │ │ │ └── Board_PN │ │ │ │ │ └── Applications │ │ │ │ │ └── SampleApp │ │ │ │ │ └── readme.txt │ │ │ │ └── BlueNRG-MS │ │ │ │ ├── doc │ │ │ │ └── BlueNRG-MS_UserManual.chm │ │ │ │ ├── hci │ │ │ │ ├── controller │ │ │ │ │ ├── bluenrg_gap_aci.c │ │ │ │ │ ├── bluenrg_gatt_aci.c │ │ │ │ │ ├── bluenrg_hal_aci.c │ │ │ │ │ ├── bluenrg_l2cap_aci.c │ │ │ │ │ ├── bluenrg_updater_aci.c │ │ │ │ │ └── bluenrg_utils_small.c │ │ │ │ ├── hci_le.c │ │ │ │ └── hci_tl_patterns │ │ │ │ │ └── Basic │ │ │ │ │ ├── hci_tl.c │ │ │ │ │ └── hci_tl.h │ │ │ │ ├── includes │ │ │ │ ├── bluenrg_aci.h │ │ │ │ ├── bluenrg_aci_const.h │ │ │ │ ├── bluenrg_conf_template.h │ │ │ │ ├── bluenrg_def.h │ │ │ │ ├── bluenrg_gap.h │ │ │ │ ├── bluenrg_gap_aci.h │ │ │ │ ├── bluenrg_gatt_aci.h │ │ │ │ ├── bluenrg_gatt_server.h │ │ │ │ ├── bluenrg_hal_aci.h │ │ │ │ ├── bluenrg_l2cap_aci.h │ │ │ │ ├── bluenrg_types.h │ │ │ │ ├── bluenrg_updater_aci.h │ │ │ │ ├── bluenrg_utils.h │ │ │ │ ├── compiler.h │ │ │ │ ├── hci.h │ │ │ │ ├── hci_const.h │ │ │ │ ├── hci_le.h │ │ │ │ ├── link_layer.h │ │ │ │ └── sm.h │ │ │ │ └── utils │ │ │ │ ├── ble_list.c │ │ │ │ ├── ble_list.h │ │ │ │ └── ble_list_utils_template.h │ │ ├── STM32F401RE_FLASH.ld │ │ ├── Src │ │ │ ├── app_x-cube-ble1.c │ │ │ ├── gpio.c │ │ │ ├── hci_tl_interface.c │ │ │ ├── main.c │ │ │ ├── nucleo_f401re_bus.c │ │ │ ├── sample_service.c │ │ │ ├── stm32f4_nucleo_f401re.c │ │ │ ├── stm32f4xx_hal_msp.c │ │ │ ├── stm32f4xx_it.c │ │ │ ├── syscalls.c │ │ │ └── system_stm32f4xx.c │ │ └── startup │ │ │ └── startup_stm32f401xe.s │ ├── Beacon │ │ ├── .gitignore │ │ ├── .mxproject │ │ ├── .project │ │ ├── Beacon.ioc │ │ ├── Drivers │ │ │ ├── CMSIS │ │ │ │ ├── Device │ │ │ │ │ └── ST │ │ │ │ │ │ └── STM32F4xx │ │ │ │ │ │ └── Include │ │ │ │ │ │ ├── stm32f401xe.h │ │ │ │ │ │ ├── stm32f4xx.h │ │ │ │ │ │ └── system_stm32f4xx.h │ │ │ │ └── Include │ │ │ │ │ ├── cmsis_armcc.h │ │ │ │ │ ├── cmsis_armclang.h │ │ │ │ │ ├── cmsis_compiler.h │ │ │ │ │ ├── cmsis_gcc.h │ │ │ │ │ ├── cmsis_iccarm.h │ │ │ │ │ ├── cmsis_version.h │ │ │ │ │ ├── core_armv8mbl.h │ │ │ │ │ ├── core_armv8mml.h │ │ │ │ │ ├── core_cm0.h │ │ │ │ │ ├── core_cm0plus.h │ │ │ │ │ ├── core_cm1.h │ │ │ │ │ ├── core_cm23.h │ │ │ │ │ ├── core_cm3.h │ │ │ │ │ ├── core_cm33.h │ │ │ │ │ ├── core_cm4.h │ │ │ │ │ ├── core_cm7.h │ │ │ │ │ ├── core_sc000.h │ │ │ │ │ ├── core_sc300.h │ │ │ │ │ ├── mpu_armv7.h │ │ │ │ │ ├── mpu_armv8.h │ │ │ │ │ └── tz_context.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_exti.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_spi.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_exti.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_spi.c │ │ │ │ ├── stm32f4xx_hal_tim.c │ │ │ │ ├── stm32f4xx_hal_tim_ex.c │ │ │ │ └── stm32f4xx_hal_uart.c │ │ ├── Inc │ │ │ ├── RTE_Components.h │ │ │ ├── app_x-cube-ble1.h │ │ │ ├── beacon_utils.h │ │ │ ├── ble_list_utils.h │ │ │ ├── bluenrg_conf.h │ │ │ ├── eddystone_beacon.h │ │ │ ├── gpio.h │ │ │ ├── hci_tl_interface.h │ │ │ ├── main.h │ │ │ ├── nucleo_f401re_bus.h │ │ │ ├── nucleo_f401re_conf.h │ │ │ ├── nucleo_f401re_errno.h │ │ │ ├── sensor_service.h │ │ │ ├── stm32f4_nucleo_f401re.h │ │ │ ├── stm32f4xx_hal_conf.h │ │ │ └── stm32f4xx_it.h │ │ ├── Middlewares │ │ │ └── ST │ │ │ │ ├── Application │ │ │ │ └── Projects │ │ │ │ │ └── Board_PN │ │ │ │ │ └── Applications │ │ │ │ │ └── Beacon │ │ │ │ │ └── readme.txt │ │ │ │ └── BlueNRG-MS │ │ │ │ ├── doc │ │ │ │ └── BlueNRG-MS_UserManual.chm │ │ │ │ ├── hci │ │ │ │ ├── controller │ │ │ │ │ ├── bluenrg_gap_aci.c │ │ │ │ │ ├── bluenrg_gatt_aci.c │ │ │ │ │ ├── bluenrg_hal_aci.c │ │ │ │ │ ├── bluenrg_l2cap_aci.c │ │ │ │ │ ├── bluenrg_updater_aci.c │ │ │ │ │ └── bluenrg_utils_small.c │ │ │ │ ├── hci_le.c │ │ │ │ └── hci_tl_patterns │ │ │ │ │ └── Basic │ │ │ │ │ ├── hci_tl.c │ │ │ │ │ └── hci_tl.h │ │ │ │ ├── includes │ │ │ │ ├── bluenrg_aci.h │ │ │ │ ├── bluenrg_aci_const.h │ │ │ │ ├── bluenrg_conf_template.h │ │ │ │ ├── bluenrg_def.h │ │ │ │ ├── bluenrg_gap.h │ │ │ │ ├── bluenrg_gap_aci.h │ │ │ │ ├── bluenrg_gatt_aci.h │ │ │ │ ├── bluenrg_gatt_server.h │ │ │ │ ├── bluenrg_hal_aci.h │ │ │ │ ├── bluenrg_l2cap_aci.h │ │ │ │ ├── bluenrg_types.h │ │ │ │ ├── bluenrg_updater_aci.h │ │ │ │ ├── bluenrg_utils.h │ │ │ │ ├── compiler.h │ │ │ │ ├── hci.h │ │ │ │ ├── hci_const.h │ │ │ │ ├── hci_le.h │ │ │ │ ├── link_layer.h │ │ │ │ └── sm.h │ │ │ │ └── utils │ │ │ │ ├── ble_list.c │ │ │ │ ├── ble_list.h │ │ │ │ └── ble_list_utils_template.h │ │ ├── STM32F401RE_FLASH.ld │ │ ├── Src │ │ │ ├── app_x-cube-ble1.c │ │ │ ├── eddystone_beacon.c │ │ │ ├── gpio.c │ │ │ ├── hci_tl_interface.c │ │ │ ├── main.c │ │ │ ├── nucleo_f401re_bus.c │ │ │ ├── sensor_service.c │ │ │ ├── stm32f4_nucleo_f401re.c │ │ │ ├── stm32f4xx_hal_msp.c │ │ │ ├── stm32f4xx_it.c │ │ │ ├── syscalls.c │ │ │ └── system_stm32f4xx.c │ │ └── startup │ │ │ └── startup_stm32f401xe.s │ ├── README.md │ ├── Template │ │ ├── .gitignore │ │ ├── .mxproject │ │ ├── .project │ │ ├── Drivers │ │ │ ├── CMSIS │ │ │ │ ├── Device │ │ │ │ │ └── ST │ │ │ │ │ │ └── STM32F4xx │ │ │ │ │ │ └── Include │ │ │ │ │ │ ├── stm32f401xe.h │ │ │ │ │ │ ├── stm32f4xx.h │ │ │ │ │ │ └── system_stm32f4xx.h │ │ │ │ └── Include │ │ │ │ │ ├── cmsis_armcc.h │ │ │ │ │ ├── cmsis_armclang.h │ │ │ │ │ ├── cmsis_compiler.h │ │ │ │ │ ├── cmsis_gcc.h │ │ │ │ │ ├── cmsis_iccarm.h │ │ │ │ │ ├── cmsis_version.h │ │ │ │ │ ├── core_armv8mbl.h │ │ │ │ │ ├── core_armv8mml.h │ │ │ │ │ ├── core_cm0.h │ │ │ │ │ ├── core_cm0plus.h │ │ │ │ │ ├── core_cm1.h │ │ │ │ │ ├── core_cm23.h │ │ │ │ │ ├── core_cm3.h │ │ │ │ │ ├── core_cm33.h │ │ │ │ │ ├── core_cm4.h │ │ │ │ │ ├── core_cm7.h │ │ │ │ │ ├── core_sc000.h │ │ │ │ │ ├── core_sc300.h │ │ │ │ │ ├── mpu_armv7.h │ │ │ │ │ ├── mpu_armv8.h │ │ │ │ │ └── tz_context.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_exti.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_spi.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_exti.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_spi.c │ │ │ │ ├── stm32f4xx_hal_tim.c │ │ │ │ ├── stm32f4xx_hal_tim_ex.c │ │ │ │ └── stm32f4xx_hal_uart.c │ │ ├── Inc │ │ │ ├── RTE_Components.h │ │ │ ├── app_x-cube-ble1.h │ │ │ ├── ble_list_utils.h │ │ │ ├── bluenrg_conf.h │ │ │ ├── gpio.h │ │ │ ├── hci_tl_interface.h │ │ │ ├── inference_service.h │ │ │ ├── main.h │ │ │ ├── nucleo_f401re_bus.h │ │ │ ├── nucleo_f401re_conf.h │ │ │ ├── nucleo_f401re_errno.h │ │ │ ├── stm32f4xx_hal_conf.h │ │ │ ├── stm32f4xx_it.h │ │ │ └── usart.h │ │ ├── Middlewares │ │ │ └── ST │ │ │ │ └── BlueNRG-MS │ │ │ │ ├── doc │ │ │ │ └── BlueNRG-MS_UserManual.chm │ │ │ │ ├── hci │ │ │ │ ├── controller │ │ │ │ │ ├── bluenrg_IFR.c │ │ │ │ │ ├── bluenrg_gap_aci.c │ │ │ │ │ ├── bluenrg_gatt_aci.c │ │ │ │ │ ├── bluenrg_hal_aci.c │ │ │ │ │ ├── bluenrg_l2cap_aci.c │ │ │ │ │ ├── bluenrg_updater_aci.c │ │ │ │ │ └── bluenrg_utils_small.c │ │ │ │ ├── hci_le.c │ │ │ │ └── hci_tl_patterns │ │ │ │ │ └── Basic │ │ │ │ │ ├── hci_tl.c │ │ │ │ │ └── hci_tl.h │ │ │ │ ├── includes │ │ │ │ ├── bluenrg_aci.h │ │ │ │ ├── bluenrg_aci_const.h │ │ │ │ ├── bluenrg_conf_template.h │ │ │ │ ├── bluenrg_def.h │ │ │ │ ├── bluenrg_gap.h │ │ │ │ ├── bluenrg_gap_aci.h │ │ │ │ ├── bluenrg_gatt_aci.h │ │ │ │ ├── bluenrg_gatt_server.h │ │ │ │ ├── bluenrg_hal_aci.h │ │ │ │ ├── bluenrg_l2cap_aci.h │ │ │ │ ├── bluenrg_types.h │ │ │ │ ├── bluenrg_updater_aci.h │ │ │ │ ├── bluenrg_utils.h │ │ │ │ ├── compiler.h │ │ │ │ ├── hci.h │ │ │ │ ├── hci_const.h │ │ │ │ ├── hci_le.h │ │ │ │ ├── link_layer.h │ │ │ │ └── sm.h │ │ │ │ └── utils │ │ │ │ ├── ble_list.c │ │ │ │ ├── ble_list.h │ │ │ │ └── ble_list_utils_template.h │ │ ├── STM32F401RE_FLASH.ld │ │ ├── Src │ │ │ ├── app_x-cube-ble1.c │ │ │ ├── gpio.c │ │ │ ├── hci_tl_interface.c │ │ │ ├── inference_service.c │ │ │ ├── main.c │ │ │ ├── nucleo_f401re_bus.c │ │ │ ├── stm32f4xx_hal_msp.c │ │ │ ├── stm32f4xx_it.c │ │ │ ├── syscalls.c │ │ │ ├── system_stm32f4xx.c │ │ │ └── usart.c │ │ ├── Template.ioc │ │ └── startup │ │ │ └── startup_stm32f401xe.s │ └── doc │ │ ├── X-CUBE-BLE1.jpg │ │ ├── X-CUBE-BLE1_2.jpg │ │ └── X-CUBE-BLE1_3.jpg ├── DCT │ ├── README.md │ ├── ipynb │ │ ├── DCT.ipynb │ │ └── Zigzag_scan.ipynb │ └── stm32 │ │ ├── .gitignore │ │ ├── .mxproject │ │ ├── .project │ │ ├── DCT.ioc │ │ ├── Drivers │ │ ├── CMSIS │ │ │ ├── Device │ │ │ │ └── ST │ │ │ │ │ └── STM32F4xx │ │ │ │ │ └── Include │ │ │ │ │ ├── stm32f401xe.h │ │ │ │ │ ├── stm32f4xx.h │ │ │ │ │ └── system_stm32f4xx.h │ │ │ ├── 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 │ │ │ └── Lib │ │ │ │ ├── LICENSE.txt │ │ │ │ └── libarm_cortexM4lf_math.a │ │ └── 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 │ │ ├── dct.h │ │ ├── gpio.h │ │ ├── main.h │ │ ├── stm32f4xx_hal_conf.h │ │ ├── stm32f4xx_it.h │ │ └── usart.h │ │ ├── STM32F401RE_FLASH.ld │ │ ├── Src │ │ ├── dct.c │ │ ├── gpio.c │ │ ├── main.c │ │ ├── stm32f4xx_hal_msp.c │ │ ├── stm32f4xx_it.c │ │ ├── system_stm32f4xx.c │ │ └── usart.c │ │ ├── startup │ │ └── startup_stm32f401xe.s │ │ └── syscalls.c ├── NFC │ ├── .gitattributes │ ├── .gitignore │ ├── README.md │ ├── home_appliances │ │ ├── README.md │ │ ├── index.html │ │ ├── server.cert │ │ ├── server.key │ │ ├── signage.js │ │ ├── signage_player │ │ │ ├── css │ │ │ │ └── display.css │ │ │ ├── display.html │ │ │ └── images │ │ │ │ ├── korean_noodles1.jpg │ │ │ │ └── korean_noodles2.jpg │ │ ├── video_player │ │ │ ├── css │ │ │ │ └── video.css │ │ │ ├── index.html │ │ │ ├── video │ │ │ │ └── yokohama_osanbashi.mp4 │ │ │ └── yokohama_osanbashi.html │ │ └── webapp.js │ ├── kicad │ │ ├── ant7_t_st25dv04k-B.Cu.gbr │ │ ├── ant7_t_st25dv04k-B.SilkS.gbr │ │ ├── ant7_t_st25dv04k-F.Cu.gbr │ │ ├── ant7_t_st25dv04k-F.SilkS.gbr │ │ ├── ant7_t_st25dv04k.kicad_pcb │ │ ├── ant7_t_st25dv04k.kicad_pcb-bak │ │ ├── ant7_t_st25dv04k.pdf │ │ ├── ant7_t_st25dv04k.pro │ │ ├── ant7_t_st25dv04k.sch │ │ ├── arduino_shield_ant7_t_st25dv04k.jpg │ │ ├── arduino_shield_ant7_t_st25dv04k.pdf │ │ ├── fp-lib-table │ │ ├── mcu.bck │ │ ├── mcu.dcm │ │ └── mcu.pretty │ │ │ ├── Capacitor.kicad_mod │ │ │ ├── LED.kicad_mod │ │ │ ├── MEMS_mic.kicad_mod │ │ │ ├── Pin Header 10P.kicad_mod │ │ │ ├── Pin Header 2P.kicad_mod │ │ │ ├── Pin Header 4P.kicad_mod │ │ │ ├── Pin Header 6P.kicad_mod │ │ │ ├── Pin Header 8P.kicad_mod │ │ │ ├── Pin_Header_3P.kicad_mod │ │ │ ├── Pin_Header_5P.kicad_mod │ │ │ ├── Pin_Socket_6P.kicad_mod │ │ │ ├── Pin_header_1P.kicad_mod │ │ │ ├── Register.kicad_mod │ │ │ ├── audio_capacitor.kicad_mod │ │ │ ├── audio_jack_3.5mm.kicad_mod │ │ │ ├── ic-pinsocket-14pins.kicad_mod │ │ │ ├── ic-pinsocket-8pins.kicad_mod │ │ │ ├── pin-socket-4p.kicad_mod │ │ │ ├── pin_socket_10P.kicad_mod │ │ │ └── tactile_sw_4p.kicad_mod │ ├── start.sh │ ├── stm32 │ │ ├── .mxproject │ │ ├── BSP │ │ │ ├── Components │ │ │ │ └── ST25DV │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ ├── st25dv.c │ │ │ │ │ ├── st25dv.h │ │ │ │ │ ├── st25dv_reg.c │ │ │ │ │ └── st25dv_reg.h │ │ │ └── NFC04A1 │ │ │ │ ├── Release_Notes.html │ │ │ │ ├── nfc04a1.c │ │ │ │ ├── nfc04a1.h │ │ │ │ ├── nfc04a1_conf_template.h │ │ │ │ ├── nfc04a1_nfctag.c │ │ │ │ └── nfc04a1_nfctag.h │ │ ├── Debug │ │ │ ├── Drivers │ │ │ │ ├── BSP │ │ │ │ │ ├── Components │ │ │ │ │ │ └── ST25DV │ │ │ │ │ │ │ └── subdir.mk │ │ │ │ │ └── NFC04A1 │ │ │ │ │ │ └── subdir.mk │ │ │ │ └── STM32F4xx_HAL_Driver │ │ │ │ │ └── Src │ │ │ │ │ └── subdir.mk │ │ │ ├── Dynamic_NFC_tag.list │ │ │ ├── Middlewares │ │ │ │ └── ST │ │ │ │ │ └── lib_nfc │ │ │ │ │ └── lib_NDEF │ │ │ │ │ └── Core │ │ │ │ │ └── src │ │ │ │ │ └── subdir.mk │ │ │ ├── Src │ │ │ │ └── subdir.mk │ │ │ ├── Startup │ │ │ │ └── subdir.mk │ │ │ ├── makefile │ │ │ ├── objects.list │ │ │ ├── objects.mk │ │ │ └── sources.mk │ │ ├── Drivers │ │ │ ├── BSP │ │ │ │ ├── Components │ │ │ │ │ └── ST25DV │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── st25dv.c │ │ │ │ │ │ ├── st25dv.h │ │ │ │ │ │ ├── st25dv_reg.c │ │ │ │ │ │ └── st25dv_reg.h │ │ │ │ └── NFC04A1 │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ ├── nfc04a1.c │ │ │ │ │ ├── nfc04a1.h │ │ │ │ │ ├── nfc04a1_conf_template.h │ │ │ │ │ ├── nfc04a1_nfctag.c │ │ │ │ │ └── nfc04a1_nfctag.h │ │ │ ├── CMSIS │ │ │ │ ├── Device │ │ │ │ │ └── ST │ │ │ │ │ │ └── STM32F4xx │ │ │ │ │ │ └── Include │ │ │ │ │ │ ├── stm32f401xe.h │ │ │ │ │ │ ├── stm32f4xx.h │ │ │ │ │ │ └── system_stm32f4xx.h │ │ │ │ └── Include │ │ │ │ │ ├── cmsis_armcc.h │ │ │ │ │ ├── cmsis_armclang.h │ │ │ │ │ ├── cmsis_compiler.h │ │ │ │ │ ├── cmsis_gcc.h │ │ │ │ │ ├── cmsis_iccarm.h │ │ │ │ │ ├── cmsis_version.h │ │ │ │ │ ├── core_armv8mbl.h │ │ │ │ │ ├── core_armv8mml.h │ │ │ │ │ ├── core_cm0.h │ │ │ │ │ ├── core_cm0plus.h │ │ │ │ │ ├── core_cm1.h │ │ │ │ │ ├── core_cm23.h │ │ │ │ │ ├── core_cm3.h │ │ │ │ │ ├── core_cm33.h │ │ │ │ │ ├── core_cm4.h │ │ │ │ │ ├── core_cm7.h │ │ │ │ │ ├── core_sc000.h │ │ │ │ │ ├── core_sc300.h │ │ │ │ │ ├── mpu_armv7.h │ │ │ │ │ ├── mpu_armv8.h │ │ │ │ │ └── tz_context.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_exti.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_i2c.h │ │ │ │ ├── stm32f4xx_hal_i2c_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_exti.c │ │ │ │ ├── stm32f4xx_hal_flash.c │ │ │ │ ├── stm32f4xx_hal_flash_ex.c │ │ │ │ ├── stm32f4xx_hal_flash_ramfunc.c │ │ │ │ ├── stm32f4xx_hal_gpio.c │ │ │ │ ├── stm32f4xx_hal_i2c.c │ │ │ │ ├── stm32f4xx_hal_i2c_ex.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 │ │ ├── Dynamic_NFC_tag.ioc │ │ ├── Inc │ │ │ ├── RTE_Components.h │ │ │ ├── app_nfc_uri.h │ │ │ ├── app_x-cube-nfc4.h │ │ │ ├── common.h │ │ │ ├── gpio.h │ │ │ ├── main.h │ │ │ ├── nfc04a1_conf.h │ │ │ ├── rn4020.h │ │ │ ├── stm32f4xx_hal_conf.h │ │ │ ├── stm32f4xx_it.h │ │ │ ├── stm32f4xx_nucleo_bus.h │ │ │ ├── stm32f4xx_nucleo_conf.h │ │ │ ├── stm32f4xx_nucleo_errno.h │ │ │ └── usart.h │ │ ├── Middlewares │ │ │ └── ST │ │ │ │ └── lib_nfc │ │ │ │ ├── common │ │ │ │ └── inc │ │ │ │ │ ├── lib_95HF.h │ │ │ │ │ ├── lib_95HFConfigManager.h │ │ │ │ │ ├── lib_iso14443A.h │ │ │ │ │ ├── tagtype3_wrapper.h │ │ │ │ │ ├── tagtype4_wrapper.h │ │ │ │ │ └── tagtype5_wrapper.h │ │ │ │ └── lib_NDEF │ │ │ │ └── Core │ │ │ │ ├── inc │ │ │ │ ├── lib_NDEF.h │ │ │ │ ├── lib_NDEF_AAR.h │ │ │ │ ├── lib_NDEF_Bluetooth.h │ │ │ │ ├── lib_NDEF_Email.h │ │ │ │ ├── lib_NDEF_Geo.h │ │ │ │ ├── lib_NDEF_Handover.h │ │ │ │ ├── lib_NDEF_MyApp.h │ │ │ │ ├── lib_NDEF_SMS.h │ │ │ │ ├── lib_NDEF_Text.h │ │ │ │ ├── lib_NDEF_URI.h │ │ │ │ ├── lib_NDEF_Vcard.h │ │ │ │ ├── lib_NDEF_Wifi.h │ │ │ │ ├── lib_NDEF_config.h │ │ │ │ ├── lib_flash_ndef.h │ │ │ │ └── lib_wrapper.h │ │ │ │ └── src │ │ │ │ ├── lib_NDEF.c │ │ │ │ ├── lib_NDEF_AAR.c │ │ │ │ ├── lib_NDEF_Bluetooth.c │ │ │ │ ├── lib_NDEF_Email.c │ │ │ │ ├── lib_NDEF_Geo.c │ │ │ │ ├── lib_NDEF_Handover.c │ │ │ │ ├── lib_NDEF_MyApp.c │ │ │ │ ├── lib_NDEF_SMS.c │ │ │ │ ├── lib_NDEF_Text.c │ │ │ │ ├── lib_NDEF_URI.c │ │ │ │ ├── lib_NDEF_Vcard.c │ │ │ │ ├── lib_NDEF_Wifi.c │ │ │ │ ├── lib_wrapper.c │ │ │ │ ├── tagtype3_wrapper.c │ │ │ │ ├── tagtype4_wrapper.c │ │ │ │ └── tagtype5_wrapper.c │ │ ├── STM32F401RETX_FLASH.ld │ │ ├── STM32F401RETX_RAM.ld │ │ ├── Src │ │ │ ├── app_nfc_uri.c │ │ │ ├── app_x-cube-nfc4.c │ │ │ ├── gpio.c │ │ │ ├── lib_NDEF_config.c │ │ │ ├── main.c │ │ │ ├── rn4020.c │ │ │ ├── stm32f4xx_hal_msp.c │ │ │ ├── stm32f4xx_it.c │ │ │ ├── stm32f4xx_nucleo_bus.c │ │ │ ├── syscalls.c │ │ │ ├── system_stm32f4xx.c │ │ │ └── usart.c │ │ └── Startup │ │ │ └── startup_stm32f401retx.s │ ├── stop.sh │ ├── util │ │ └── base_url │ │ │ ├── base_url.py │ │ │ ├── section1_l476rg.sh │ │ │ ├── section2_f401re.sh │ │ │ ├── section3_l476rg.sh │ │ │ └── yokohama_osanbashi.sh │ └── webapp │ │ ├── README.md │ │ ├── server.cert │ │ ├── server.key │ │ ├── views │ │ ├── bootstrap.ejs │ │ ├── css │ │ │ └── video.css │ │ ├── debug.ejs │ │ └── menu.ejs │ │ └── webapp.js └── Thermography │ ├── README.md │ ├── device.jpg │ ├── kicad │ ├── arduino_board.kicad_pcb │ ├── arduino_board.pdf │ ├── arduino_board.pro │ ├── arduino_board.sch │ ├── mcu.bck │ └── mcu.dcm │ ├── tensorflow │ ├── rock_paper_scissors_cnn.ipynb │ ├── rock_paper_scissors_cnn_20190111093630.h5 │ ├── rock_paper_scissors_dct.ipynb │ ├── rock_paper_scissors_dct_20190111095504.h5 │ ├── rock_paper_scissors_raw_data.ipynb │ ├── rock_paper_scissors_raw_data_20190111093559.h5 │ └── zigzag.py │ └── thermography │ ├── data │ ├── class_labels.yaml │ ├── paper-20190104211500.csv │ ├── paper-20190104211504.csv │ ├── paper-20190104211507.csv │ ├── paper-20190104211510.csv │ ├── paper-20190104211516.csv │ ├── paper-20190104211519.csv │ ├── paper-20190104211522.csv │ ├── paper-20190104211530.csv │ ├── paper-20190104211536.csv │ ├── paper-20190104211540.csv │ ├── paper-20190104211546.csv │ ├── paper-20190104211551.csv │ ├── paper-20190104211559.csv │ ├── paper-20190104211602.csv │ ├── paper-20190104211608.csv │ ├── paper-20190104211611.csv │ ├── paper-20190104211615.csv │ ├── paper-20190104211618.csv │ ├── paper-20190104211621.csv │ ├── paper-20190104211624.csv │ ├── paper-20190104211628.csv │ ├── paper-20190104211631.csv │ ├── paper-20190104211635.csv │ ├── paper-20190104211639.csv │ ├── paper-20190106130339.csv │ ├── paper-20190106130342.csv │ ├── paper-20190106130346.csv │ ├── paper-20190106130349.csv │ ├── paper-20190106130352.csv │ ├── paper-20190106130359.csv │ ├── paper-20190106130401.csv │ ├── paper-20190106130404.csv │ ├── paper-20190106130407.csv │ ├── paper-20190106130410.csv │ ├── paper-20190106130413.csv │ ├── paper-20190106130416.csv │ ├── paper-20190106130419.csv │ ├── paper-20190106130421.csv │ ├── paper-20190106130425.csv │ ├── paper-20190106130428.csv │ ├── paper-20190106130432.csv │ ├── paper-20190106130435.csv │ ├── paper-20190106130437.csv │ ├── paper-20190106130441.csv │ ├── paper-20190106130448.csv │ ├── paper-20190106130451.csv │ ├── paper-20190106130456.csv │ ├── rock-20190104211302.csv │ ├── rock-20190104211306.csv │ ├── rock-20190104211310.csv │ ├── rock-20190104211314.csv │ ├── rock-20190104211316.csv │ ├── rock-20190104211319.csv │ ├── rock-20190104211322.csv │ ├── rock-20190104211325.csv │ ├── rock-20190104211327.csv │ ├── rock-20190104211330.csv │ ├── rock-20190104211332.csv │ ├── rock-20190104211335.csv │ ├── rock-20190104211343.csv │ ├── rock-20190104211352.csv │ ├── rock-20190104211402.csv │ ├── rock-20190104211405.csv │ ├── rock-20190104211408.csv │ ├── rock-20190104211410.csv │ ├── rock-20190104211412.csv │ ├── rock-20190104211427.csv │ ├── rock-20190104211430.csv │ ├── rock-20190104211433.csv │ ├── rock-20190104211436.csv │ ├── rock-20190104211438.csv │ ├── rock-20190106130128.csv │ ├── rock-20190106130132.csv │ ├── rock-20190106130135.csv │ ├── rock-20190106130139.csv │ ├── rock-20190106130143.csv │ ├── rock-20190106130147.csv │ ├── rock-20190106130151.csv │ ├── rock-20190106130156.csv │ ├── rock-20190106130200.csv │ ├── rock-20190106130204.csv │ ├── rock-20190106130208.csv │ ├── rock-20190106130213.csv │ ├── rock-20190106130221.csv │ ├── rock-20190106130225.csv │ ├── rock-20190106130228.csv │ ├── rock-20190106130235.csv │ ├── rock-20190106130239.csv │ ├── rock-20190106130241.csv │ ├── rock-20190106130245.csv │ ├── rock-20190106130249.csv │ ├── rock-20190106130253.csv │ ├── rock-20190106130257.csv │ ├── rock-20190106130301.csv │ ├── rock-20190106130305.csv │ ├── scissors-20190104211703.csv │ ├── scissors-20190104211707.csv │ ├── scissors-20190104211710.csv │ ├── scissors-20190104211714.csv │ ├── scissors-20190104211716.csv │ ├── scissors-20190104211720.csv │ ├── scissors-20190104211725.csv │ ├── scissors-20190104211728.csv │ ├── scissors-20190104211732.csv │ ├── scissors-20190104211734.csv │ ├── scissors-20190104211737.csv │ ├── scissors-20190104211742.csv │ ├── scissors-20190104211746.csv │ ├── scissors-20190104211749.csv │ ├── scissors-20190104211752.csv │ ├── scissors-20190104211755.csv │ ├── scissors-20190104211758.csv │ ├── scissors-20190104211802.csv │ ├── scissors-20190104211807.csv │ ├── scissors-20190104211810.csv │ ├── scissors-20190104211814.csv │ ├── scissors-20190104211817.csv │ ├── scissors-20190104211820.csv │ ├── scissors-20190104211823.csv │ ├── scissors-20190106130509.csv │ ├── scissors-20190106130513.csv │ ├── scissors-20190106130516.csv │ ├── scissors-20190106130520.csv │ ├── scissors-20190106130525.csv │ ├── scissors-20190106130530.csv │ ├── scissors-20190106130533.csv │ ├── scissors-20190106130538.csv │ ├── scissors-20190106130545.csv │ ├── scissors-20190106130548.csv │ ├── scissors-20190106130551.csv │ ├── scissors-20190106130555.csv │ ├── scissors-20190106130558.csv │ ├── scissors-20190106130601.csv │ ├── scissors-20190106130607.csv │ ├── scissors-20190106130611.csv │ ├── scissors-20190106130614.csv │ ├── scissors-20190106130617.csv │ ├── scissors-20190106130620.csv │ ├── scissors-20190106130624.csv │ ├── scissors-20190106130626.csv │ ├── scissors-20190106130630.csv │ └── scissors-20190106130635.csv │ ├── heatmap.py │ ├── interface.py │ ├── run.bat │ ├── run_interpolated.bat │ ├── screen_shot.png │ ├── screenshots │ ├── dct.jpg │ ├── interpolated.jpg │ └── this_is_me.png │ └── thermography.py ├── NUCLEO-L476RG ├── ADC │ ├── .gitignore │ ├── .mxproject │ ├── .project │ ├── Drivers │ │ ├── CMSIS │ │ │ ├── Device │ │ │ │ └── ST │ │ │ │ │ └── STM32L4xx │ │ │ │ │ └── Include │ │ │ │ │ ├── stm32l476xx.h │ │ │ │ │ ├── stm32l4xx.h │ │ │ │ │ └── system_stm32l4xx.h │ │ │ └── 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 │ │ └── STM32L4xx_HAL_Driver │ │ │ ├── Inc │ │ │ ├── Legacy │ │ │ │ └── stm32_hal_legacy.h │ │ │ ├── stm32l4xx_hal.h │ │ │ ├── stm32l4xx_hal_adc.h │ │ │ ├── stm32l4xx_hal_adc_ex.h │ │ │ ├── stm32l4xx_hal_cortex.h │ │ │ ├── stm32l4xx_hal_def.h │ │ │ ├── stm32l4xx_hal_dma.h │ │ │ ├── stm32l4xx_hal_dma_ex.h │ │ │ ├── stm32l4xx_hal_flash.h │ │ │ ├── stm32l4xx_hal_flash_ex.h │ │ │ ├── stm32l4xx_hal_flash_ramfunc.h │ │ │ ├── stm32l4xx_hal_gpio.h │ │ │ ├── stm32l4xx_hal_gpio_ex.h │ │ │ ├── stm32l4xx_hal_i2c.h │ │ │ ├── stm32l4xx_hal_i2c_ex.h │ │ │ ├── stm32l4xx_hal_pwr.h │ │ │ ├── stm32l4xx_hal_pwr_ex.h │ │ │ ├── stm32l4xx_hal_rcc.h │ │ │ ├── stm32l4xx_hal_rcc_ex.h │ │ │ ├── stm32l4xx_hal_tim.h │ │ │ ├── stm32l4xx_hal_tim_ex.h │ │ │ ├── stm32l4xx_hal_uart.h │ │ │ ├── stm32l4xx_hal_uart_ex.h │ │ │ └── stm32l4xx_ll_adc.h │ │ │ └── Src │ │ │ ├── stm32l4xx_hal.c │ │ │ ├── stm32l4xx_hal_adc.c │ │ │ ├── stm32l4xx_hal_adc_ex.c │ │ │ ├── stm32l4xx_hal_cortex.c │ │ │ ├── stm32l4xx_hal_dma.c │ │ │ ├── stm32l4xx_hal_dma_ex.c │ │ │ ├── stm32l4xx_hal_flash.c │ │ │ ├── stm32l4xx_hal_flash_ex.c │ │ │ ├── stm32l4xx_hal_flash_ramfunc.c │ │ │ ├── stm32l4xx_hal_gpio.c │ │ │ ├── stm32l4xx_hal_i2c.c │ │ │ ├── stm32l4xx_hal_i2c_ex.c │ │ │ ├── stm32l4xx_hal_pwr.c │ │ │ ├── stm32l4xx_hal_pwr_ex.c │ │ │ ├── stm32l4xx_hal_rcc.c │ │ │ ├── stm32l4xx_hal_rcc_ex.c │ │ │ ├── stm32l4xx_hal_tim.c │ │ │ ├── stm32l4xx_hal_tim_ex.c │ │ │ ├── stm32l4xx_hal_uart.c │ │ │ └── stm32l4xx_hal_uart_ex.c │ ├── Inc │ │ ├── adc.h │ │ ├── dma.h │ │ ├── gpio.h │ │ ├── main.h │ │ ├── stm32l4xx_hal_conf.h │ │ ├── stm32l4xx_it.h │ │ └── usart.h │ ├── README.md │ ├── STM32L476RG_FLASH.ld │ ├── Src │ │ ├── adc.c │ │ ├── dma.c │ │ ├── gpio.c │ │ ├── main.c │ │ ├── stm32l4xx_hal_msp.c │ │ ├── stm32l4xx_it.c │ │ ├── system_stm32l4xx.c │ │ └── usart.c │ ├── adc.ioc │ └── startup │ │ └── startup_stm32l476xx.s ├── CAN │ ├── .gitignore │ ├── .mxproject │ ├── .project │ ├── CAN.ioc │ ├── Drivers │ │ ├── CMSIS │ │ │ ├── Device │ │ │ │ └── ST │ │ │ │ │ └── STM32L4xx │ │ │ │ │ └── Include │ │ │ │ │ ├── stm32l476xx.h │ │ │ │ │ ├── stm32l4xx.h │ │ │ │ │ └── system_stm32l4xx.h │ │ │ └── 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 │ │ └── STM32L4xx_HAL_Driver │ │ │ ├── Inc │ │ │ ├── Legacy │ │ │ │ └── stm32_hal_legacy.h │ │ │ ├── stm32l4xx_hal.h │ │ │ ├── stm32l4xx_hal_can.h │ │ │ ├── stm32l4xx_hal_cortex.h │ │ │ ├── stm32l4xx_hal_def.h │ │ │ ├── stm32l4xx_hal_dma.h │ │ │ ├── stm32l4xx_hal_dma_ex.h │ │ │ ├── stm32l4xx_hal_flash.h │ │ │ ├── stm32l4xx_hal_flash_ex.h │ │ │ ├── stm32l4xx_hal_flash_ramfunc.h │ │ │ ├── stm32l4xx_hal_gpio.h │ │ │ ├── stm32l4xx_hal_gpio_ex.h │ │ │ ├── stm32l4xx_hal_i2c.h │ │ │ ├── stm32l4xx_hal_i2c_ex.h │ │ │ ├── stm32l4xx_hal_pwr.h │ │ │ ├── stm32l4xx_hal_pwr_ex.h │ │ │ ├── stm32l4xx_hal_rcc.h │ │ │ ├── stm32l4xx_hal_rcc_ex.h │ │ │ ├── stm32l4xx_hal_tim.h │ │ │ ├── stm32l4xx_hal_tim_ex.h │ │ │ ├── stm32l4xx_hal_uart.h │ │ │ └── stm32l4xx_hal_uart_ex.h │ │ │ └── Src │ │ │ ├── stm32l4xx_hal.c │ │ │ ├── stm32l4xx_hal_can.c │ │ │ ├── stm32l4xx_hal_cortex.c │ │ │ ├── stm32l4xx_hal_dma.c │ │ │ ├── stm32l4xx_hal_dma_ex.c │ │ │ ├── stm32l4xx_hal_flash.c │ │ │ ├── stm32l4xx_hal_flash_ex.c │ │ │ ├── stm32l4xx_hal_flash_ramfunc.c │ │ │ ├── stm32l4xx_hal_gpio.c │ │ │ ├── stm32l4xx_hal_i2c.c │ │ │ ├── stm32l4xx_hal_i2c_ex.c │ │ │ ├── stm32l4xx_hal_pwr.c │ │ │ ├── stm32l4xx_hal_pwr_ex.c │ │ │ ├── stm32l4xx_hal_rcc.c │ │ │ ├── stm32l4xx_hal_rcc_ex.c │ │ │ ├── stm32l4xx_hal_tim.c │ │ │ ├── stm32l4xx_hal_tim_ex.c │ │ │ ├── stm32l4xx_hal_uart.c │ │ │ └── stm32l4xx_hal_uart_ex.c │ ├── Inc │ │ ├── main.h │ │ ├── stm32l4xx_hal_conf.h │ │ └── stm32l4xx_it.h │ ├── README.md │ ├── STM32L476RG_FLASH.ld │ ├── Src │ │ ├── main.c │ │ ├── stm32l4xx_hal_msp.c │ │ ├── stm32l4xx_it.c │ │ └── system_stm32l4xx.c │ ├── mx.scratch │ └── startup │ │ └── startup_stm32l476xx.s ├── Chirp_Compression │ ├── .gitattributes │ ├── .gitignore │ ├── README.md │ ├── ipynb │ │ ├── Chirp tone generator.ipynb │ │ ├── Formula.ipynb │ │ └── Radar system.ipynb │ ├── lib │ │ └── dsp.py │ ├── oscilloscope │ │ ├── dsp.py │ │ ├── oscilloscope.py │ │ ├── run.bat │ │ └── screenshots │ │ │ └── chirp_compression.jpg │ └── stm32 │ │ ├── .gitignore │ │ ├── .mxproject │ │ ├── .project │ │ ├── Drivers │ │ ├── CMSIS │ │ │ ├── Device │ │ │ │ └── ST │ │ │ │ │ └── STM32L4xx │ │ │ │ │ └── Include │ │ │ │ │ ├── stm32l476xx.h │ │ │ │ │ ├── stm32l4xx.h │ │ │ │ │ └── system_stm32l4xx.h │ │ │ ├── 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 │ │ │ └── Lib │ │ │ │ └── LICENSE.txt │ │ └── STM32L4xx_HAL_Driver │ │ │ ├── Inc │ │ │ ├── Legacy │ │ │ │ └── stm32_hal_legacy.h │ │ │ ├── stm32l4xx_hal.h │ │ │ ├── stm32l4xx_hal_cortex.h │ │ │ ├── stm32l4xx_hal_def.h │ │ │ ├── stm32l4xx_hal_dfsdm.h │ │ │ ├── stm32l4xx_hal_dma.h │ │ │ ├── stm32l4xx_hal_dma_ex.h │ │ │ ├── stm32l4xx_hal_flash.h │ │ │ ├── stm32l4xx_hal_flash_ex.h │ │ │ ├── stm32l4xx_hal_flash_ramfunc.h │ │ │ ├── stm32l4xx_hal_gpio.h │ │ │ ├── stm32l4xx_hal_gpio_ex.h │ │ │ ├── stm32l4xx_hal_i2c.h │ │ │ ├── stm32l4xx_hal_i2c_ex.h │ │ │ ├── stm32l4xx_hal_pwr.h │ │ │ ├── stm32l4xx_hal_pwr_ex.h │ │ │ ├── stm32l4xx_hal_rcc.h │ │ │ ├── stm32l4xx_hal_rcc_ex.h │ │ │ ├── stm32l4xx_hal_tim.h │ │ │ ├── stm32l4xx_hal_tim_ex.h │ │ │ ├── stm32l4xx_hal_uart.h │ │ │ └── stm32l4xx_hal_uart_ex.h │ │ │ └── Src │ │ │ ├── stm32l4xx_hal.c │ │ │ ├── stm32l4xx_hal_cortex.c │ │ │ ├── stm32l4xx_hal_dfsdm.c │ │ │ ├── stm32l4xx_hal_dma.c │ │ │ ├── stm32l4xx_hal_dma_ex.c │ │ │ ├── stm32l4xx_hal_flash.c │ │ │ ├── stm32l4xx_hal_flash_ex.c │ │ │ ├── stm32l4xx_hal_flash_ramfunc.c │ │ │ ├── stm32l4xx_hal_gpio.c │ │ │ ├── stm32l4xx_hal_i2c.c │ │ │ ├── stm32l4xx_hal_i2c_ex.c │ │ │ ├── stm32l4xx_hal_pwr.c │ │ │ ├── stm32l4xx_hal_pwr_ex.c │ │ │ ├── stm32l4xx_hal_rcc.c │ │ │ ├── stm32l4xx_hal_rcc_ex.c │ │ │ ├── stm32l4xx_hal_tim.c │ │ │ ├── stm32l4xx_hal_tim_ex.c │ │ │ ├── stm32l4xx_hal_uart.c │ │ │ └── stm32l4xx_hal_uart_ex.c │ │ ├── Inc │ │ ├── chirp.h │ │ ├── dfsdm.h │ │ ├── dma.h │ │ ├── gpio.h │ │ ├── main.h │ │ ├── stm32l4xx_hal_conf.h │ │ ├── stm32l4xx_it.h │ │ └── usart.h │ │ ├── README.md │ │ ├── STM32L476RG_FLASH.ld │ │ ├── Src │ │ ├── chirp.c │ │ ├── dfsdm.c │ │ ├── dma.c │ │ ├── gpio.c │ │ ├── main.c │ │ ├── stm32l4xx_hal_msp.c │ │ ├── stm32l4xx_it.c │ │ ├── system_stm32l4xx.c │ │ └── usart.c │ │ ├── chirp_compression.ioc │ │ ├── chirp_compression.pdf │ │ ├── chirp_compression.txt │ │ ├── startup │ │ └── startup_stm32l476xx.s │ │ └── syscalls.c ├── Clock │ ├── .gitignore │ ├── .mxproject │ ├── .project │ ├── Clock.ioc │ ├── Clock.jpg │ ├── Drivers │ │ ├── CMSIS │ │ │ ├── Device │ │ │ │ └── ST │ │ │ │ │ └── STM32L4xx │ │ │ │ │ └── Include │ │ │ │ │ ├── stm32l476xx.h │ │ │ │ │ ├── stm32l4xx.h │ │ │ │ │ └── system_stm32l4xx.h │ │ │ └── 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 │ │ └── STM32L4xx_HAL_Driver │ │ │ ├── Inc │ │ │ ├── Legacy │ │ │ │ └── stm32_hal_legacy.h │ │ │ ├── stm32l4xx_hal.h │ │ │ ├── stm32l4xx_hal_cortex.h │ │ │ ├── stm32l4xx_hal_def.h │ │ │ ├── stm32l4xx_hal_dma.h │ │ │ ├── stm32l4xx_hal_dma_ex.h │ │ │ ├── stm32l4xx_hal_flash.h │ │ │ ├── stm32l4xx_hal_flash_ex.h │ │ │ ├── stm32l4xx_hal_flash_ramfunc.h │ │ │ ├── stm32l4xx_hal_gpio.h │ │ │ ├── stm32l4xx_hal_gpio_ex.h │ │ │ ├── stm32l4xx_hal_i2c.h │ │ │ ├── stm32l4xx_hal_i2c_ex.h │ │ │ ├── stm32l4xx_hal_pwr.h │ │ │ ├── stm32l4xx_hal_pwr_ex.h │ │ │ ├── stm32l4xx_hal_rcc.h │ │ │ ├── stm32l4xx_hal_rcc_ex.h │ │ │ ├── stm32l4xx_hal_rtc.h │ │ │ ├── stm32l4xx_hal_rtc_ex.h │ │ │ ├── stm32l4xx_hal_tim.h │ │ │ ├── stm32l4xx_hal_tim_ex.h │ │ │ ├── stm32l4xx_hal_uart.h │ │ │ └── stm32l4xx_hal_uart_ex.h │ │ │ └── Src │ │ │ ├── stm32l4xx_hal.c │ │ │ ├── stm32l4xx_hal_cortex.c │ │ │ ├── stm32l4xx_hal_dma.c │ │ │ ├── stm32l4xx_hal_dma_ex.c │ │ │ ├── stm32l4xx_hal_flash.c │ │ │ ├── stm32l4xx_hal_flash_ex.c │ │ │ ├── stm32l4xx_hal_flash_ramfunc.c │ │ │ ├── stm32l4xx_hal_gpio.c │ │ │ ├── stm32l4xx_hal_i2c.c │ │ │ ├── stm32l4xx_hal_i2c_ex.c │ │ │ ├── stm32l4xx_hal_pwr.c │ │ │ ├── stm32l4xx_hal_pwr_ex.c │ │ │ ├── stm32l4xx_hal_rcc.c │ │ │ ├── stm32l4xx_hal_rcc_ex.c │ │ │ ├── stm32l4xx_hal_rtc.c │ │ │ ├── stm32l4xx_hal_rtc_ex.c │ │ │ ├── stm32l4xx_hal_tim.c │ │ │ ├── stm32l4xx_hal_tim_ex.c │ │ │ ├── stm32l4xx_hal_uart.c │ │ │ └── stm32l4xx_hal_uart_ex.c │ ├── Inc │ │ ├── lcd.h │ │ ├── main.h │ │ ├── stm32l4xx_hal_conf.h │ │ └── stm32l4xx_it.h │ ├── NUCLEO-L476RG-Clock-Wiring.jpg │ ├── NUCLEO-L476RG-Clock.jpg │ ├── README.md │ ├── STM32L476RG_FLASH.ld │ ├── Src │ │ ├── lcd.c │ │ ├── main.c │ │ ├── stm32l4xx_hal_msp.c │ │ ├── stm32l4xx_it.c │ │ └── system_stm32l4xx.c │ ├── clock.kicad_pcb │ ├── clock.pro │ ├── clock.sch │ ├── mx.scratch │ └── startup │ │ └── startup_stm32l476xx.s ├── DAC │ ├── README.md │ ├── Sine wave generation.ipynb │ ├── sine_wave.BMP │ ├── sine_wave │ │ ├── .gitignore │ │ ├── .mxproject │ │ ├── .project │ │ ├── Drivers │ │ │ ├── CMSIS │ │ │ │ ├── Device │ │ │ │ │ └── ST │ │ │ │ │ │ └── STM32L4xx │ │ │ │ │ │ └── Include │ │ │ │ │ │ ├── stm32l476xx.h │ │ │ │ │ │ ├── stm32l4xx.h │ │ │ │ │ │ └── system_stm32l4xx.h │ │ │ │ ├── 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 │ │ │ │ └── Lib │ │ │ │ │ └── LICENSE.txt │ │ │ └── STM32L4xx_HAL_Driver │ │ │ │ ├── Inc │ │ │ │ ├── Legacy │ │ │ │ │ └── stm32_hal_legacy.h │ │ │ │ ├── stm32l4xx_hal.h │ │ │ │ ├── stm32l4xx_hal_cortex.h │ │ │ │ ├── stm32l4xx_hal_dac.h │ │ │ │ ├── stm32l4xx_hal_dac_ex.h │ │ │ │ ├── stm32l4xx_hal_def.h │ │ │ │ ├── stm32l4xx_hal_dma.h │ │ │ │ ├── stm32l4xx_hal_dma_ex.h │ │ │ │ ├── stm32l4xx_hal_flash.h │ │ │ │ ├── stm32l4xx_hal_flash_ex.h │ │ │ │ ├── stm32l4xx_hal_flash_ramfunc.h │ │ │ │ ├── stm32l4xx_hal_gpio.h │ │ │ │ ├── stm32l4xx_hal_gpio_ex.h │ │ │ │ ├── stm32l4xx_hal_i2c.h │ │ │ │ ├── stm32l4xx_hal_i2c_ex.h │ │ │ │ ├── stm32l4xx_hal_pwr.h │ │ │ │ ├── stm32l4xx_hal_pwr_ex.h │ │ │ │ ├── stm32l4xx_hal_rcc.h │ │ │ │ ├── stm32l4xx_hal_rcc_ex.h │ │ │ │ ├── stm32l4xx_hal_tim.h │ │ │ │ ├── stm32l4xx_hal_tim_ex.h │ │ │ │ ├── stm32l4xx_hal_uart.h │ │ │ │ └── stm32l4xx_hal_uart_ex.h │ │ │ │ └── Src │ │ │ │ ├── stm32l4xx_hal.c │ │ │ │ ├── stm32l4xx_hal_cortex.c │ │ │ │ ├── stm32l4xx_hal_dac.c │ │ │ │ ├── stm32l4xx_hal_dac_ex.c │ │ │ │ ├── stm32l4xx_hal_dma.c │ │ │ │ ├── stm32l4xx_hal_dma_ex.c │ │ │ │ ├── stm32l4xx_hal_flash.c │ │ │ │ ├── stm32l4xx_hal_flash_ex.c │ │ │ │ ├── stm32l4xx_hal_flash_ramfunc.c │ │ │ │ ├── stm32l4xx_hal_gpio.c │ │ │ │ ├── stm32l4xx_hal_i2c.c │ │ │ │ ├── stm32l4xx_hal_i2c_ex.c │ │ │ │ ├── stm32l4xx_hal_pwr.c │ │ │ │ ├── stm32l4xx_hal_pwr_ex.c │ │ │ │ ├── stm32l4xx_hal_rcc.c │ │ │ │ ├── stm32l4xx_hal_rcc_ex.c │ │ │ │ ├── stm32l4xx_hal_tim.c │ │ │ │ ├── stm32l4xx_hal_tim_ex.c │ │ │ │ ├── stm32l4xx_hal_uart.c │ │ │ │ └── stm32l4xx_hal_uart_ex.c │ │ ├── Inc │ │ │ ├── dac.h │ │ │ ├── dma.h │ │ │ ├── gpio.h │ │ │ ├── main.h │ │ │ ├── stm32l4xx_hal_conf.h │ │ │ ├── stm32l4xx_it.h │ │ │ ├── tim.h │ │ │ └── usart.h │ │ ├── STM32L476RG_FLASH.ld │ │ ├── Src │ │ │ ├── dac.c │ │ │ ├── dma.c │ │ │ ├── gpio.c │ │ │ ├── main.c │ │ │ ├── stm32l4xx_hal_msp.c │ │ │ ├── stm32l4xx_it.c │ │ │ ├── system_stm32l4xx.c │ │ │ ├── tim.c │ │ │ └── usart.c │ │ ├── sine_wave.ioc │ │ └── startup │ │ │ └── startup_stm32l476xx.s │ ├── trianglular_wave.BMP │ └── triangular_wave │ │ ├── .gitignore │ │ ├── .mxproject │ │ ├── .project │ │ ├── Drivers │ │ ├── CMSIS │ │ │ ├── Device │ │ │ │ └── ST │ │ │ │ │ └── STM32L4xx │ │ │ │ │ └── Include │ │ │ │ │ ├── stm32l476xx.h │ │ │ │ │ ├── stm32l4xx.h │ │ │ │ │ └── system_stm32l4xx.h │ │ │ └── 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 │ │ └── STM32L4xx_HAL_Driver │ │ │ ├── Inc │ │ │ ├── Legacy │ │ │ │ └── stm32_hal_legacy.h │ │ │ ├── stm32l4xx_hal.h │ │ │ ├── stm32l4xx_hal_cortex.h │ │ │ ├── stm32l4xx_hal_dac.h │ │ │ ├── stm32l4xx_hal_dac_ex.h │ │ │ ├── stm32l4xx_hal_def.h │ │ │ ├── stm32l4xx_hal_dma.h │ │ │ ├── stm32l4xx_hal_dma_ex.h │ │ │ ├── stm32l4xx_hal_flash.h │ │ │ ├── stm32l4xx_hal_flash_ex.h │ │ │ ├── stm32l4xx_hal_flash_ramfunc.h │ │ │ ├── stm32l4xx_hal_gpio.h │ │ │ ├── stm32l4xx_hal_gpio_ex.h │ │ │ ├── stm32l4xx_hal_i2c.h │ │ │ ├── stm32l4xx_hal_i2c_ex.h │ │ │ ├── stm32l4xx_hal_pwr.h │ │ │ ├── stm32l4xx_hal_pwr_ex.h │ │ │ ├── stm32l4xx_hal_rcc.h │ │ │ ├── stm32l4xx_hal_rcc_ex.h │ │ │ ├── stm32l4xx_hal_tim.h │ │ │ ├── stm32l4xx_hal_tim_ex.h │ │ │ ├── stm32l4xx_hal_uart.h │ │ │ └── stm32l4xx_hal_uart_ex.h │ │ │ └── Src │ │ │ ├── stm32l4xx_hal.c │ │ │ ├── stm32l4xx_hal_cortex.c │ │ │ ├── stm32l4xx_hal_dac.c │ │ │ ├── stm32l4xx_hal_dac_ex.c │ │ │ ├── stm32l4xx_hal_dma.c │ │ │ ├── stm32l4xx_hal_dma_ex.c │ │ │ ├── stm32l4xx_hal_flash.c │ │ │ ├── stm32l4xx_hal_flash_ex.c │ │ │ ├── stm32l4xx_hal_flash_ramfunc.c │ │ │ ├── stm32l4xx_hal_gpio.c │ │ │ ├── stm32l4xx_hal_i2c.c │ │ │ ├── stm32l4xx_hal_i2c_ex.c │ │ │ ├── stm32l4xx_hal_pwr.c │ │ │ ├── stm32l4xx_hal_pwr_ex.c │ │ │ ├── stm32l4xx_hal_rcc.c │ │ │ ├── stm32l4xx_hal_rcc_ex.c │ │ │ ├── stm32l4xx_hal_tim.c │ │ │ ├── stm32l4xx_hal_tim_ex.c │ │ │ ├── stm32l4xx_hal_uart.c │ │ │ └── stm32l4xx_hal_uart_ex.c │ │ ├── Inc │ │ ├── dac.h │ │ ├── gpio.h │ │ ├── main.h │ │ ├── stm32l4xx_hal_conf.h │ │ ├── stm32l4xx_it.h │ │ ├── tim.h │ │ └── usart.h │ │ ├── STM32L476RG_FLASH.ld │ │ ├── Src │ │ ├── dac.c │ │ ├── gpio.c │ │ ├── main.c │ │ ├── stm32l4xx_hal_msp.c │ │ ├── stm32l4xx_it.c │ │ ├── system_stm32l4xx.c │ │ ├── tim.c │ │ └── usart.c │ │ ├── dac.ioc │ │ ├── mx.scratch │ │ └── startup │ │ └── startup_stm32l476xx.s ├── GPIO_Interrupt │ ├── .gitignore │ ├── .mxproject │ ├── .project │ ├── Drivers │ │ ├── CMSIS │ │ │ ├── Device │ │ │ │ └── ST │ │ │ │ │ └── STM32L4xx │ │ │ │ │ └── Include │ │ │ │ │ ├── stm32l476xx.h │ │ │ │ │ ├── stm32l4xx.h │ │ │ │ │ └── system_stm32l4xx.h │ │ │ └── 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 │ │ └── STM32L4xx_HAL_Driver │ │ │ ├── Inc │ │ │ ├── Legacy │ │ │ │ └── stm32_hal_legacy.h │ │ │ ├── stm32l4xx_hal.h │ │ │ ├── stm32l4xx_hal_cortex.h │ │ │ ├── stm32l4xx_hal_def.h │ │ │ ├── stm32l4xx_hal_dma.h │ │ │ ├── stm32l4xx_hal_dma_ex.h │ │ │ ├── stm32l4xx_hal_flash.h │ │ │ ├── stm32l4xx_hal_flash_ex.h │ │ │ ├── stm32l4xx_hal_flash_ramfunc.h │ │ │ ├── stm32l4xx_hal_gpio.h │ │ │ ├── stm32l4xx_hal_gpio_ex.h │ │ │ ├── stm32l4xx_hal_i2c.h │ │ │ ├── stm32l4xx_hal_i2c_ex.h │ │ │ ├── stm32l4xx_hal_pwr.h │ │ │ ├── stm32l4xx_hal_pwr_ex.h │ │ │ ├── stm32l4xx_hal_rcc.h │ │ │ ├── stm32l4xx_hal_rcc_ex.h │ │ │ ├── stm32l4xx_hal_tim.h │ │ │ ├── stm32l4xx_hal_tim_ex.h │ │ │ ├── stm32l4xx_hal_uart.h │ │ │ └── stm32l4xx_hal_uart_ex.h │ │ │ └── Src │ │ │ ├── stm32l4xx_hal.c │ │ │ ├── stm32l4xx_hal_cortex.c │ │ │ ├── stm32l4xx_hal_dma.c │ │ │ ├── stm32l4xx_hal_dma_ex.c │ │ │ ├── stm32l4xx_hal_flash.c │ │ │ ├── stm32l4xx_hal_flash_ex.c │ │ │ ├── stm32l4xx_hal_flash_ramfunc.c │ │ │ ├── stm32l4xx_hal_gpio.c │ │ │ ├── stm32l4xx_hal_i2c.c │ │ │ ├── stm32l4xx_hal_i2c_ex.c │ │ │ ├── stm32l4xx_hal_pwr.c │ │ │ ├── stm32l4xx_hal_pwr_ex.c │ │ │ ├── stm32l4xx_hal_rcc.c │ │ │ ├── stm32l4xx_hal_rcc_ex.c │ │ │ ├── stm32l4xx_hal_tim.c │ │ │ ├── stm32l4xx_hal_tim_ex.c │ │ │ ├── stm32l4xx_hal_uart.c │ │ │ └── stm32l4xx_hal_uart_ex.c │ ├── GPIO_Interrupt.ioc │ ├── Inc │ │ ├── main.h │ │ ├── stm32l4xx_hal_conf.h │ │ └── stm32l4xx_it.h │ ├── STM32L476RG_FLASH.ld │ ├── Src │ │ ├── main.c │ │ ├── stm32l4xx_hal_msp.c │ │ ├── stm32l4xx_it.c │ │ └── system_stm32l4xx.c │ ├── mx.scratch │ └── startup │ │ └── startup_stm32l476xx.s ├── GyroScope │ ├── .gitignore │ ├── .mxproject │ ├── .project │ ├── Drivers │ │ ├── CMSIS │ │ │ ├── Device │ │ │ │ └── ST │ │ │ │ │ └── STM32L4xx │ │ │ │ │ └── Include │ │ │ │ │ ├── stm32l476xx.h │ │ │ │ │ ├── stm32l4xx.h │ │ │ │ │ └── system_stm32l4xx.h │ │ │ └── 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 │ │ └── STM32L4xx_HAL_Driver │ │ │ ├── Inc │ │ │ ├── Legacy │ │ │ │ └── stm32_hal_legacy.h │ │ │ ├── stm32l4xx_hal.h │ │ │ ├── stm32l4xx_hal_cortex.h │ │ │ ├── stm32l4xx_hal_def.h │ │ │ ├── stm32l4xx_hal_dma.h │ │ │ ├── stm32l4xx_hal_dma_ex.h │ │ │ ├── stm32l4xx_hal_flash.h │ │ │ ├── stm32l4xx_hal_flash_ex.h │ │ │ ├── stm32l4xx_hal_flash_ramfunc.h │ │ │ ├── stm32l4xx_hal_gpio.h │ │ │ ├── stm32l4xx_hal_gpio_ex.h │ │ │ ├── stm32l4xx_hal_i2c.h │ │ │ ├── stm32l4xx_hal_i2c_ex.h │ │ │ ├── stm32l4xx_hal_pwr.h │ │ │ ├── stm32l4xx_hal_pwr_ex.h │ │ │ ├── stm32l4xx_hal_rcc.h │ │ │ ├── stm32l4xx_hal_rcc_ex.h │ │ │ ├── stm32l4xx_hal_rtc.h │ │ │ ├── stm32l4xx_hal_rtc_ex.h │ │ │ ├── stm32l4xx_hal_tim.h │ │ │ ├── stm32l4xx_hal_tim_ex.h │ │ │ ├── stm32l4xx_hal_uart.h │ │ │ └── stm32l4xx_hal_uart_ex.h │ │ │ └── Src │ │ │ ├── stm32l4xx_hal.c │ │ │ ├── stm32l4xx_hal_cortex.c │ │ │ ├── stm32l4xx_hal_dma.c │ │ │ ├── stm32l4xx_hal_dma_ex.c │ │ │ ├── stm32l4xx_hal_flash.c │ │ │ ├── stm32l4xx_hal_flash_ex.c │ │ │ ├── stm32l4xx_hal_flash_ramfunc.c │ │ │ ├── stm32l4xx_hal_gpio.c │ │ │ ├── stm32l4xx_hal_i2c.c │ │ │ ├── stm32l4xx_hal_i2c_ex.c │ │ │ ├── stm32l4xx_hal_pwr.c │ │ │ ├── stm32l4xx_hal_pwr_ex.c │ │ │ ├── stm32l4xx_hal_rcc.c │ │ │ ├── stm32l4xx_hal_rcc_ex.c │ │ │ ├── stm32l4xx_hal_rtc.c │ │ │ ├── stm32l4xx_hal_rtc_ex.c │ │ │ ├── stm32l4xx_hal_tim.c │ │ │ ├── stm32l4xx_hal_tim_ex.c │ │ │ ├── stm32l4xx_hal_uart.c │ │ │ └── stm32l4xx_hal_uart_ex.c │ ├── GyroScope.ioc │ ├── Inc │ │ ├── i2c.h │ │ ├── l3gd20.h │ │ ├── main.h │ │ ├── stm32l4xx_hal_conf.h │ │ └── stm32l4xx_it.h │ ├── README.md │ ├── STM32L476RG_FLASH.ld │ ├── Src │ │ ├── i2c.c │ │ ├── l3gd20.c │ │ ├── main.c │ │ ├── stm32l4xx_hal_msp.c │ │ ├── stm32l4xx_it.c │ │ └── system_stm32l4xx.c │ ├── mx.scratch │ └── startup │ │ └── startup_stm32l476xx.s ├── HelloWorld │ ├── .gitignore │ ├── .mxproject │ ├── .project │ ├── Drivers │ │ ├── CMSIS │ │ │ ├── Device │ │ │ │ └── ST │ │ │ │ │ └── STM32L4xx │ │ │ │ │ └── Include │ │ │ │ │ ├── stm32l476xx.h │ │ │ │ │ ├── stm32l4xx.h │ │ │ │ │ └── system_stm32l4xx.h │ │ │ └── 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 │ │ └── STM32L4xx_HAL_Driver │ │ │ ├── Inc │ │ │ ├── Legacy │ │ │ │ └── stm32_hal_legacy.h │ │ │ ├── stm32l4xx_hal.h │ │ │ ├── stm32l4xx_hal_cortex.h │ │ │ ├── stm32l4xx_hal_def.h │ │ │ ├── stm32l4xx_hal_dma.h │ │ │ ├── stm32l4xx_hal_dma_ex.h │ │ │ ├── stm32l4xx_hal_flash.h │ │ │ ├── stm32l4xx_hal_flash_ex.h │ │ │ ├── stm32l4xx_hal_flash_ramfunc.h │ │ │ ├── stm32l4xx_hal_gpio.h │ │ │ ├── stm32l4xx_hal_gpio_ex.h │ │ │ ├── stm32l4xx_hal_i2c.h │ │ │ ├── stm32l4xx_hal_i2c_ex.h │ │ │ ├── stm32l4xx_hal_pwr.h │ │ │ ├── stm32l4xx_hal_pwr_ex.h │ │ │ ├── stm32l4xx_hal_rcc.h │ │ │ ├── stm32l4xx_hal_rcc_ex.h │ │ │ ├── stm32l4xx_hal_tim.h │ │ │ ├── stm32l4xx_hal_tim_ex.h │ │ │ ├── stm32l4xx_hal_uart.h │ │ │ └── stm32l4xx_hal_uart_ex.h │ │ │ └── Src │ │ │ ├── stm32l4xx_hal.c │ │ │ ├── stm32l4xx_hal_cortex.c │ │ │ ├── stm32l4xx_hal_dma.c │ │ │ ├── stm32l4xx_hal_dma_ex.c │ │ │ ├── stm32l4xx_hal_flash.c │ │ │ ├── stm32l4xx_hal_flash_ex.c │ │ │ ├── stm32l4xx_hal_flash_ramfunc.c │ │ │ ├── stm32l4xx_hal_gpio.c │ │ │ ├── stm32l4xx_hal_i2c.c │ │ │ ├── stm32l4xx_hal_i2c_ex.c │ │ │ ├── stm32l4xx_hal_pwr.c │ │ │ ├── stm32l4xx_hal_pwr_ex.c │ │ │ ├── stm32l4xx_hal_rcc.c │ │ │ ├── stm32l4xx_hal_rcc_ex.c │ │ │ ├── stm32l4xx_hal_tim.c │ │ │ ├── stm32l4xx_hal_tim_ex.c │ │ │ ├── stm32l4xx_hal_uart.c │ │ │ └── stm32l4xx_hal_uart_ex.c │ ├── HelloWorld.ioc │ ├── Inc │ │ ├── main.h │ │ ├── stm32l4xx_hal_conf.h │ │ └── stm32l4xx_it.h │ ├── STM32L476RG_FLASH.ld │ ├── Src │ │ ├── main.c │ │ ├── stm32l4xx_hal_msp.c │ │ ├── stm32l4xx_it.c │ │ └── system_stm32l4xx.c │ ├── mx.scratch │ └── startup │ │ └── startup_stm32l476xx.s ├── MEMSMIC │ ├── .ipynb_checkpoints │ │ └── Tone_15000Hz-checkpoint.ipynb │ ├── MEMSMIC_expansion_board.jpg │ ├── Pinout.jpg │ ├── README.md │ ├── SB.jpg │ ├── Tone_15000Hz.ipynb │ ├── freq15000.txt │ ├── freq20000.txt │ └── plot_15000Hz.jpg ├── Mic_ADC_DAC │ ├── .gitignore │ ├── .mxproject │ ├── .project │ ├── Drivers │ │ ├── CMSIS │ │ │ ├── Device │ │ │ │ └── ST │ │ │ │ │ └── STM32L4xx │ │ │ │ │ └── Include │ │ │ │ │ ├── stm32l476xx.h │ │ │ │ │ ├── stm32l4xx.h │ │ │ │ │ └── system_stm32l4xx.h │ │ │ ├── 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 │ │ │ └── Lib │ │ │ │ ├── LICENSE.txt │ │ │ │ └── libarm_cortexM4lf_math.a │ │ └── STM32L4xx_HAL_Driver │ │ │ ├── Inc │ │ │ ├── Legacy │ │ │ │ └── stm32_hal_legacy.h │ │ │ ├── stm32l4xx_hal.h │ │ │ ├── stm32l4xx_hal_adc.h │ │ │ ├── stm32l4xx_hal_adc_ex.h │ │ │ ├── stm32l4xx_hal_cortex.h │ │ │ ├── stm32l4xx_hal_dac.h │ │ │ ├── stm32l4xx_hal_dac_ex.h │ │ │ ├── stm32l4xx_hal_def.h │ │ │ ├── stm32l4xx_hal_dma.h │ │ │ ├── stm32l4xx_hal_dma_ex.h │ │ │ ├── stm32l4xx_hal_flash.h │ │ │ ├── stm32l4xx_hal_flash_ex.h │ │ │ ├── stm32l4xx_hal_flash_ramfunc.h │ │ │ ├── stm32l4xx_hal_gpio.h │ │ │ ├── stm32l4xx_hal_gpio_ex.h │ │ │ ├── stm32l4xx_hal_i2c.h │ │ │ ├── stm32l4xx_hal_i2c_ex.h │ │ │ ├── stm32l4xx_hal_pwr.h │ │ │ ├── stm32l4xx_hal_pwr_ex.h │ │ │ ├── stm32l4xx_hal_rcc.h │ │ │ ├── stm32l4xx_hal_rcc_ex.h │ │ │ ├── stm32l4xx_hal_tim.h │ │ │ ├── stm32l4xx_hal_tim_ex.h │ │ │ ├── stm32l4xx_hal_uart.h │ │ │ ├── stm32l4xx_hal_uart_ex.h │ │ │ └── stm32l4xx_ll_adc.h │ │ │ └── Src │ │ │ ├── stm32l4xx_hal.c │ │ │ ├── stm32l4xx_hal_adc.c │ │ │ ├── stm32l4xx_hal_adc_ex.c │ │ │ ├── stm32l4xx_hal_cortex.c │ │ │ ├── stm32l4xx_hal_dac.c │ │ │ ├── stm32l4xx_hal_dac_ex.c │ │ │ ├── stm32l4xx_hal_dma.c │ │ │ ├── stm32l4xx_hal_dma_ex.c │ │ │ ├── stm32l4xx_hal_flash.c │ │ │ ├── stm32l4xx_hal_flash_ex.c │ │ │ ├── stm32l4xx_hal_flash_ramfunc.c │ │ │ ├── stm32l4xx_hal_gpio.c │ │ │ ├── stm32l4xx_hal_i2c.c │ │ │ ├── stm32l4xx_hal_i2c_ex.c │ │ │ ├── stm32l4xx_hal_pwr.c │ │ │ ├── stm32l4xx_hal_pwr_ex.c │ │ │ ├── stm32l4xx_hal_rcc.c │ │ │ ├── stm32l4xx_hal_rcc_ex.c │ │ │ ├── stm32l4xx_hal_tim.c │ │ │ ├── stm32l4xx_hal_tim_ex.c │ │ │ ├── stm32l4xx_hal_uart.c │ │ │ └── stm32l4xx_hal_uart_ex.c │ ├── Inc │ │ ├── adc.h │ │ ├── dac.h │ │ ├── dma.h │ │ ├── gpio.h │ │ ├── main.h │ │ ├── stm32l4xx_hal_conf.h │ │ ├── stm32l4xx_it.h │ │ ├── tim.h │ │ └── usart.h │ ├── Mic_ADC_DAC.jpg │ ├── README.md │ ├── STM32L476RG_FLASH.ld │ ├── Src │ │ ├── adc.c │ │ ├── dac.c │ │ ├── dma.c │ │ ├── gpio.c │ │ ├── main.c │ │ ├── stm32l4xx_hal_msp.c │ │ ├── stm32l4xx_it.c │ │ ├── system_stm32l4xx.c │ │ ├── tim.c │ │ └── usart.c │ ├── mic_adc_dac.ioc │ └── startup │ │ └── startup_stm32l476xx.s ├── NFC │ ├── README.md │ └── stm32 │ │ ├── .cproject │ │ ├── .gitignore │ │ ├── .mxproject │ │ ├── .project │ │ ├── .settings │ │ └── language.settings.xml │ │ ├── Drivers │ │ ├── BSP │ │ │ ├── Components │ │ │ │ └── ST25DV │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ ├── st25dv.c │ │ │ │ │ ├── st25dv.h │ │ │ │ │ ├── st25dv_reg.c │ │ │ │ │ └── st25dv_reg.h │ │ │ └── NFC04A1 │ │ │ │ ├── Release_Notes.html │ │ │ │ ├── nfc04a1.c │ │ │ │ ├── nfc04a1.h │ │ │ │ ├── nfc04a1_conf_template.h │ │ │ │ ├── nfc04a1_nfctag.c │ │ │ │ └── nfc04a1_nfctag.h │ │ ├── CMSIS │ │ │ ├── Device │ │ │ │ └── ST │ │ │ │ │ └── STM32L4xx │ │ │ │ │ └── Include │ │ │ │ │ ├── stm32l476xx.h │ │ │ │ │ ├── stm32l4xx.h │ │ │ │ │ └── system_stm32l4xx.h │ │ │ └── Include │ │ │ │ ├── cmsis_armcc.h │ │ │ │ ├── cmsis_armclang.h │ │ │ │ ├── cmsis_compiler.h │ │ │ │ ├── cmsis_gcc.h │ │ │ │ ├── cmsis_iccarm.h │ │ │ │ ├── cmsis_version.h │ │ │ │ ├── core_armv8mbl.h │ │ │ │ ├── core_armv8mml.h │ │ │ │ ├── core_cm0.h │ │ │ │ ├── core_cm0plus.h │ │ │ │ ├── core_cm1.h │ │ │ │ ├── core_cm23.h │ │ │ │ ├── core_cm3.h │ │ │ │ ├── core_cm33.h │ │ │ │ ├── core_cm4.h │ │ │ │ ├── core_cm7.h │ │ │ │ ├── core_sc000.h │ │ │ │ ├── core_sc300.h │ │ │ │ ├── mpu_armv7.h │ │ │ │ ├── mpu_armv8.h │ │ │ │ └── tz_context.h │ │ └── STM32L4xx_HAL_Driver │ │ │ ├── Inc │ │ │ ├── Legacy │ │ │ │ └── stm32_hal_legacy.h │ │ │ ├── stm32l4xx_hal.h │ │ │ ├── stm32l4xx_hal_cortex.h │ │ │ ├── stm32l4xx_hal_def.h │ │ │ ├── stm32l4xx_hal_dma.h │ │ │ ├── stm32l4xx_hal_dma_ex.h │ │ │ ├── stm32l4xx_hal_exti.h │ │ │ ├── stm32l4xx_hal_flash.h │ │ │ ├── stm32l4xx_hal_flash_ex.h │ │ │ ├── stm32l4xx_hal_flash_ramfunc.h │ │ │ ├── stm32l4xx_hal_gpio.h │ │ │ ├── stm32l4xx_hal_gpio_ex.h │ │ │ ├── stm32l4xx_hal_i2c.h │ │ │ ├── stm32l4xx_hal_i2c_ex.h │ │ │ ├── stm32l4xx_hal_pwr.h │ │ │ ├── stm32l4xx_hal_pwr_ex.h │ │ │ ├── stm32l4xx_hal_rcc.h │ │ │ ├── stm32l4xx_hal_rcc_ex.h │ │ │ ├── stm32l4xx_hal_tim.h │ │ │ ├── stm32l4xx_hal_tim_ex.h │ │ │ ├── stm32l4xx_hal_uart.h │ │ │ └── stm32l4xx_hal_uart_ex.h │ │ │ └── Src │ │ │ ├── stm32l4xx_hal.c │ │ │ ├── stm32l4xx_hal_cortex.c │ │ │ ├── stm32l4xx_hal_dma.c │ │ │ ├── stm32l4xx_hal_dma_ex.c │ │ │ ├── stm32l4xx_hal_exti.c │ │ │ ├── stm32l4xx_hal_flash.c │ │ │ ├── stm32l4xx_hal_flash_ex.c │ │ │ ├── stm32l4xx_hal_flash_ramfunc.c │ │ │ ├── stm32l4xx_hal_gpio.c │ │ │ ├── stm32l4xx_hal_i2c.c │ │ │ ├── stm32l4xx_hal_i2c_ex.c │ │ │ ├── stm32l4xx_hal_pwr.c │ │ │ ├── stm32l4xx_hal_pwr_ex.c │ │ │ ├── stm32l4xx_hal_rcc.c │ │ │ ├── stm32l4xx_hal_rcc_ex.c │ │ │ ├── stm32l4xx_hal_tim.c │ │ │ ├── stm32l4xx_hal_tim_ex.c │ │ │ ├── stm32l4xx_hal_uart.c │ │ │ └── stm32l4xx_hal_uart_ex.c │ │ ├── Dynamic_NFC_tag_l476rg.elf.launch │ │ ├── Dynamic_NFC_tag_l476rg.ioc │ │ ├── Inc │ │ ├── RTE_Components.h │ │ ├── app_nfc_uri.h │ │ ├── app_x-cube-nfc4.h │ │ ├── common.h │ │ ├── gpio.h │ │ ├── main.h │ │ ├── nfc04a1_conf.h │ │ ├── stm32l4xx_hal_conf.h │ │ ├── stm32l4xx_it.h │ │ ├── stm32l4xx_nucleo_bus.h │ │ ├── stm32l4xx_nucleo_conf.h │ │ ├── stm32l4xx_nucleo_errno.h │ │ └── usart.h │ │ ├── Middlewares │ │ └── ST │ │ │ └── lib_nfc │ │ │ ├── common │ │ │ └── inc │ │ │ │ ├── lib_95HF.h │ │ │ │ ├── lib_95HFConfigManager.h │ │ │ │ ├── lib_iso14443A.h │ │ │ │ ├── tagtype3_wrapper.h │ │ │ │ ├── tagtype4_wrapper.h │ │ │ │ └── tagtype5_wrapper.h │ │ │ └── lib_NDEF │ │ │ └── Core │ │ │ ├── inc │ │ │ ├── lib_NDEF.h │ │ │ ├── lib_NDEF_AAR.h │ │ │ ├── lib_NDEF_Bluetooth.h │ │ │ ├── lib_NDEF_Email.h │ │ │ ├── lib_NDEF_Geo.h │ │ │ ├── lib_NDEF_Handover.h │ │ │ ├── lib_NDEF_MyApp.h │ │ │ ├── lib_NDEF_SMS.h │ │ │ ├── lib_NDEF_Text.h │ │ │ ├── lib_NDEF_URI.h │ │ │ ├── lib_NDEF_Vcard.h │ │ │ ├── lib_NDEF_Wifi.h │ │ │ ├── lib_NDEF_config.h │ │ │ ├── lib_flash_ndef.h │ │ │ └── lib_wrapper.h │ │ │ └── src │ │ │ ├── lib_NDEF.c │ │ │ ├── lib_NDEF_AAR.c │ │ │ ├── lib_NDEF_Bluetooth.c │ │ │ ├── lib_NDEF_Email.c │ │ │ ├── lib_NDEF_Geo.c │ │ │ ├── lib_NDEF_Handover.c │ │ │ ├── lib_NDEF_MyApp.c │ │ │ ├── lib_NDEF_SMS.c │ │ │ ├── lib_NDEF_Text.c │ │ │ ├── lib_NDEF_URI.c │ │ │ ├── lib_NDEF_Vcard.c │ │ │ ├── lib_NDEF_Wifi.c │ │ │ ├── lib_wrapper.c │ │ │ ├── tagtype3_wrapper.c │ │ │ ├── tagtype4_wrapper.c │ │ │ └── tagtype5_wrapper.c │ │ ├── STM32L476RGTX_FLASH.ld │ │ ├── STM32L476RGTX_RAM.ld │ │ ├── Src │ │ ├── app_nfc_uri.c │ │ ├── app_x-cube-nfc4.c │ │ ├── gpio.c │ │ ├── lib_NDEF_config.c │ │ ├── main.c │ │ ├── stm32l4xx_hal_msp.c │ │ ├── stm32l4xx_it.c │ │ ├── stm32l4xx_nucleo_bus.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ ├── system_stm32l4xx.c │ │ └── usart.c │ │ └── Startup │ │ └── startup_stm32l476rgtx.s └── Sound_Effector │ ├── .gitignore │ ├── .mxproject │ ├── .project │ ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32L4xx │ │ │ │ └── Include │ │ │ │ ├── stm32l476xx.h │ │ │ │ ├── stm32l4xx.h │ │ │ │ └── system_stm32l4xx.h │ │ ├── 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 │ │ └── Lib │ │ │ ├── LICENSE.txt │ │ │ └── libarm_cortexM4lf_math.a │ └── STM32L4xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32l4xx_hal.h │ │ ├── stm32l4xx_hal_cortex.h │ │ ├── stm32l4xx_hal_dac.h │ │ ├── stm32l4xx_hal_dac_ex.h │ │ ├── stm32l4xx_hal_def.h │ │ ├── stm32l4xx_hal_dfsdm.h │ │ ├── stm32l4xx_hal_dma.h │ │ ├── stm32l4xx_hal_dma_ex.h │ │ ├── stm32l4xx_hal_flash.h │ │ ├── stm32l4xx_hal_flash_ex.h │ │ ├── stm32l4xx_hal_flash_ramfunc.h │ │ ├── stm32l4xx_hal_gpio.h │ │ ├── stm32l4xx_hal_gpio_ex.h │ │ ├── stm32l4xx_hal_i2c.h │ │ ├── stm32l4xx_hal_i2c_ex.h │ │ ├── stm32l4xx_hal_pwr.h │ │ ├── stm32l4xx_hal_pwr_ex.h │ │ ├── stm32l4xx_hal_rcc.h │ │ ├── stm32l4xx_hal_rcc_ex.h │ │ ├── stm32l4xx_hal_tim.h │ │ ├── stm32l4xx_hal_tim_ex.h │ │ ├── stm32l4xx_hal_uart.h │ │ └── stm32l4xx_hal_uart_ex.h │ │ └── Src │ │ ├── stm32l4xx_hal.c │ │ ├── stm32l4xx_hal_cortex.c │ │ ├── stm32l4xx_hal_dac.c │ │ ├── stm32l4xx_hal_dac_ex.c │ │ ├── stm32l4xx_hal_dfsdm.c │ │ ├── stm32l4xx_hal_dma.c │ │ ├── stm32l4xx_hal_dma_ex.c │ │ ├── stm32l4xx_hal_flash.c │ │ ├── stm32l4xx_hal_flash_ex.c │ │ ├── stm32l4xx_hal_flash_ramfunc.c │ │ ├── stm32l4xx_hal_gpio.c │ │ ├── stm32l4xx_hal_i2c.c │ │ ├── stm32l4xx_hal_i2c_ex.c │ │ ├── stm32l4xx_hal_pwr.c │ │ ├── stm32l4xx_hal_pwr_ex.c │ │ ├── stm32l4xx_hal_rcc.c │ │ ├── stm32l4xx_hal_rcc_ex.c │ │ ├── stm32l4xx_hal_tim.c │ │ ├── stm32l4xx_hal_tim_ex.c │ │ ├── stm32l4xx_hal_uart.c │ │ └── stm32l4xx_hal_uart_ex.c │ ├── Inc │ ├── dac.h │ ├── dfsdm.h │ ├── dma.h │ ├── effector.h │ ├── gpio.h │ ├── main.h │ ├── stm32l4xx_hal_conf.h │ ├── stm32l4xx_it.h │ ├── tim.h │ └── usart.h │ ├── README.md │ ├── SB21.jpg │ ├── STM32L476RG_FLASH.ld │ ├── Src │ ├── dac.c │ ├── dfsdm.c │ ├── dma.c │ ├── effector.c │ ├── gpio.c │ ├── main.c │ ├── stm32l4xx_hal_msp.c │ ├── stm32l4xx_it.c │ ├── system_stm32l4xx.c │ ├── tim.c │ └── usart.c │ ├── sound_effector.ioc │ └── startup │ └── startup_stm32l476xx.s ├── README.md ├── STM32F4-Discovery ├── AudioWeaver │ ├── README.md │ ├── screenshot1.jpg │ └── usb_audio_graphic_eq.awd ├── BlueSwitch │ ├── .gitignore │ ├── .mxproject │ ├── .project │ ├── BlueSwitch.ioc │ ├── Drivers │ │ ├── CMSIS │ │ │ ├── Device │ │ │ │ └── ST │ │ │ │ │ └── STM32F4xx │ │ │ │ │ └── Include │ │ │ │ │ ├── stm32f407xx.h │ │ │ │ │ ├── stm32f4xx.h │ │ │ │ │ └── system_stm32f4xx.h │ │ │ └── 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_hcd.h │ │ │ ├── stm32f4xx_hal_i2c.h │ │ │ ├── stm32f4xx_hal_i2c_ex.h │ │ │ ├── stm32f4xx_hal_i2s.h │ │ │ ├── stm32f4xx_hal_i2s_ex.h │ │ │ ├── stm32f4xx_hal_pwr.h │ │ │ ├── stm32f4xx_hal_pwr_ex.h │ │ │ ├── stm32f4xx_hal_rcc.h │ │ │ ├── stm32f4xx_hal_rcc_ex.h │ │ │ ├── stm32f4xx_hal_spi.h │ │ │ ├── stm32f4xx_hal_tim.h │ │ │ ├── stm32f4xx_hal_tim_ex.h │ │ │ └── stm32f4xx_ll_usb.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_hcd.c │ │ │ ├── stm32f4xx_hal_i2c.c │ │ │ ├── stm32f4xx_hal_i2c_ex.c │ │ │ ├── stm32f4xx_hal_i2s.c │ │ │ ├── stm32f4xx_hal_i2s_ex.c │ │ │ ├── stm32f4xx_hal_pwr.c │ │ │ ├── stm32f4xx_hal_pwr_ex.c │ │ │ ├── stm32f4xx_hal_rcc.c │ │ │ ├── stm32f4xx_hal_rcc_ex.c │ │ │ ├── stm32f4xx_hal_spi.c │ │ │ ├── stm32f4xx_hal_tim.c │ │ │ ├── stm32f4xx_hal_tim_ex.c │ │ │ └── stm32f4xx_ll_usb.c │ ├── Inc │ │ ├── main.h │ │ ├── stm32f4xx_hal_conf.h │ │ ├── stm32f4xx_it.h │ │ ├── usb_host.h │ │ ├── usbh_conf.h │ │ └── usbh_platform.h │ ├── Middlewares │ │ └── ST │ │ │ └── STM32_USB_Host_Library │ │ │ ├── Class │ │ │ └── CDC │ │ │ │ ├── Inc │ │ │ │ └── usbh_cdc.h │ │ │ │ └── Src │ │ │ │ └── usbh_cdc.c │ │ │ └── Core │ │ │ ├── Inc │ │ │ ├── usbh_core.h │ │ │ ├── usbh_ctlreq.h │ │ │ ├── usbh_def.h │ │ │ ├── usbh_ioreq.h │ │ │ └── usbh_pipes.h │ │ │ └── Src │ │ │ ├── usbh_core.c │ │ │ ├── usbh_ctlreq.c │ │ │ ├── usbh_ioreq.c │ │ │ └── usbh_pipes.c │ ├── STM32F407VG_FLASH.ld │ ├── Src │ │ ├── main.c │ │ ├── stm32f4xx_hal_msp.c │ │ ├── stm32f4xx_it.c │ │ ├── system_stm32f4xx.c │ │ ├── usb_host.c │ │ ├── usbh_conf.c │ │ └── usbh_platform.c │ ├── mx.scratch │ └── startup │ │ └── startup_stm32f407xx.s ├── Camera │ ├── README.md │ ├── camera_board.jpg │ ├── kicad │ │ ├── ov7670_expansion_board.kicad_pcb │ │ ├── ov7670_expansion_board.pdf │ │ ├── ov7670_expansion_board.pro │ │ └── ov7670_expansion_board.sch │ ├── python │ │ ├── doll.png │ │ ├── doll_128x128.png │ │ ├── doll_128x128_diff.png │ │ ├── doll_32x32_gray.png │ │ ├── hand_32x32_edge.png │ │ ├── image.py │ │ ├── interface.py │ │ ├── me.png │ │ ├── run_128.bat │ │ ├── run_128_diff.bat │ │ ├── run_32.bat │ │ ├── run_32_diff.bat │ │ ├── run_32_edge.bat │ │ ├── run_32_gray.bat │ │ ├── run_qcif.bat │ │ └── viewer.py │ └── stm32 │ │ ├── .gitignore │ │ ├── .mxproject │ │ ├── .project │ │ ├── Camera.ioc │ │ ├── Drivers │ │ ├── CMSIS │ │ │ ├── Device │ │ │ │ └── ST │ │ │ │ │ └── STM32F4xx │ │ │ │ │ └── Include │ │ │ │ │ ├── stm32f407xx.h │ │ │ │ │ ├── stm32f4xx.h │ │ │ │ │ └── system_stm32f4xx.h │ │ │ ├── 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 │ │ │ └── Lib │ │ │ │ ├── LICENSE.txt │ │ │ │ └── libarm_cortexM4lf_math.a │ │ └── STM32F4xx_HAL_Driver │ │ │ ├── Inc │ │ │ ├── Legacy │ │ │ │ └── stm32_hal_legacy.h │ │ │ ├── stm32f4xx_hal.h │ │ │ ├── stm32f4xx_hal_cortex.h │ │ │ ├── stm32f4xx_hal_dcmi.h │ │ │ ├── stm32f4xx_hal_dcmi_ex.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_i2c.h │ │ │ ├── stm32f4xx_hal_i2c_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_dcmi.c │ │ │ ├── stm32f4xx_hal_dcmi_ex.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_i2c.c │ │ │ ├── stm32f4xx_hal_i2c_ex.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 │ │ ├── dct.h │ │ ├── image.h │ │ ├── main.h │ │ ├── ov7670.h │ │ ├── stm32f4xx_hal_conf.h │ │ └── stm32f4xx_it.h │ │ ├── STM32F407VG_FLASH.ld │ │ ├── Src │ │ ├── dct.c │ │ ├── image.c │ │ ├── main.c │ │ ├── ov7670.c │ │ ├── stm32f4xx_hal_msp.c │ │ ├── stm32f4xx_it.c │ │ └── system_stm32f4xx.c │ │ ├── startup │ │ └── startup_stm32f407xx.s │ │ └── syscalls.c ├── HelloWorld │ ├── .gitignore │ ├── .mxproject │ ├── .project │ ├── Drivers │ │ ├── CMSIS │ │ │ ├── Device │ │ │ │ └── ST │ │ │ │ │ └── STM32F4xx │ │ │ │ │ └── Include │ │ │ │ │ ├── stm32f407xx.h │ │ │ │ │ ├── stm32f4xx.h │ │ │ │ │ └── system_stm32f4xx.h │ │ │ └── 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_hcd.h │ │ │ ├── stm32f4xx_hal_i2c.h │ │ │ ├── stm32f4xx_hal_i2c_ex.h │ │ │ ├── stm32f4xx_hal_i2s.h │ │ │ ├── stm32f4xx_hal_i2s_ex.h │ │ │ ├── stm32f4xx_hal_pwr.h │ │ │ ├── stm32f4xx_hal_pwr_ex.h │ │ │ ├── stm32f4xx_hal_rcc.h │ │ │ ├── stm32f4xx_hal_rcc_ex.h │ │ │ ├── stm32f4xx_hal_spi.h │ │ │ ├── stm32f4xx_hal_tim.h │ │ │ ├── stm32f4xx_hal_tim_ex.h │ │ │ ├── stm32f4xx_hal_uart.h │ │ │ └── stm32f4xx_ll_usb.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_hcd.c │ │ │ ├── stm32f4xx_hal_i2c.c │ │ │ ├── stm32f4xx_hal_i2c_ex.c │ │ │ ├── stm32f4xx_hal_i2s.c │ │ │ ├── stm32f4xx_hal_i2s_ex.c │ │ │ ├── stm32f4xx_hal_pwr.c │ │ │ ├── stm32f4xx_hal_pwr_ex.c │ │ │ ├── stm32f4xx_hal_rcc.c │ │ │ ├── stm32f4xx_hal_rcc_ex.c │ │ │ ├── stm32f4xx_hal_spi.c │ │ │ ├── stm32f4xx_hal_tim.c │ │ │ ├── stm32f4xx_hal_tim_ex.c │ │ │ ├── stm32f4xx_hal_uart.c │ │ │ └── stm32f4xx_ll_usb.c │ ├── HelloWorld.ioc │ ├── Inc │ │ ├── main.h │ │ ├── stm32f4xx_hal_conf.h │ │ ├── stm32f4xx_it.h │ │ ├── usb_host.h │ │ ├── usbh_conf.h │ │ └── usbh_platform.h │ ├── Middlewares │ │ └── ST │ │ │ └── STM32_USB_Host_Library │ │ │ ├── Class │ │ │ └── CDC │ │ │ │ ├── Inc │ │ │ │ └── usbh_cdc.h │ │ │ │ └── Src │ │ │ │ └── usbh_cdc.c │ │ │ └── Core │ │ │ ├── Inc │ │ │ ├── usbh_core.h │ │ │ ├── usbh_ctlreq.h │ │ │ ├── usbh_def.h │ │ │ ├── usbh_ioreq.h │ │ │ └── usbh_pipes.h │ │ │ └── Src │ │ │ ├── usbh_core.c │ │ │ ├── usbh_ctlreq.c │ │ │ ├── usbh_ioreq.c │ │ │ └── usbh_pipes.c │ ├── STM32F407VG_FLASH.ld │ ├── Src │ │ ├── main.c │ │ ├── stm32f4xx_hal_msp.c │ │ ├── stm32f4xx_it.c │ │ ├── system_stm32f4xx.c │ │ ├── usb_host.c │ │ ├── usbh_conf.c │ │ └── usbh_platform.c │ ├── mx.scratch │ └── startup │ │ └── startup_stm32f407xx.s ├── LED_blinking │ ├── .gitignore │ ├── .mxproject │ ├── .project │ ├── Drivers │ │ ├── CMSIS │ │ │ ├── Device │ │ │ │ └── ST │ │ │ │ │ └── STM32F4xx │ │ │ │ │ └── Include │ │ │ │ │ ├── stm32f407xx.h │ │ │ │ │ ├── stm32f4xx.h │ │ │ │ │ └── system_stm32f4xx.h │ │ │ └── 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_hcd.h │ │ │ ├── stm32f4xx_hal_i2c.h │ │ │ ├── stm32f4xx_hal_i2c_ex.h │ │ │ ├── stm32f4xx_hal_i2s.h │ │ │ ├── stm32f4xx_hal_i2s_ex.h │ │ │ ├── stm32f4xx_hal_pwr.h │ │ │ ├── stm32f4xx_hal_pwr_ex.h │ │ │ ├── stm32f4xx_hal_rcc.h │ │ │ ├── stm32f4xx_hal_rcc_ex.h │ │ │ ├── stm32f4xx_hal_spi.h │ │ │ ├── stm32f4xx_hal_tim.h │ │ │ ├── stm32f4xx_hal_tim_ex.h │ │ │ └── stm32f4xx_ll_usb.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_hcd.c │ │ │ ├── stm32f4xx_hal_i2c.c │ │ │ ├── stm32f4xx_hal_i2c_ex.c │ │ │ ├── stm32f4xx_hal_i2s.c │ │ │ ├── stm32f4xx_hal_i2s_ex.c │ │ │ ├── stm32f4xx_hal_pwr.c │ │ │ ├── stm32f4xx_hal_pwr_ex.c │ │ │ ├── stm32f4xx_hal_rcc.c │ │ │ ├── stm32f4xx_hal_rcc_ex.c │ │ │ ├── stm32f4xx_hal_spi.c │ │ │ ├── stm32f4xx_hal_tim.c │ │ │ ├── stm32f4xx_hal_tim_ex.c │ │ │ └── stm32f4xx_ll_usb.c │ ├── Inc │ │ ├── main.h │ │ ├── stm32f4xx_hal_conf.h │ │ ├── stm32f4xx_it.h │ │ ├── usb_host.h │ │ ├── usbh_conf.h │ │ └── usbh_platform.h │ ├── LED_blinking.ioc │ ├── Middlewares │ │ └── ST │ │ │ └── STM32_USB_Host_Library │ │ │ ├── Class │ │ │ └── CDC │ │ │ │ ├── Inc │ │ │ │ └── usbh_cdc.h │ │ │ │ └── Src │ │ │ │ └── usbh_cdc.c │ │ │ └── Core │ │ │ ├── Inc │ │ │ ├── usbh_core.h │ │ │ ├── usbh_ctlreq.h │ │ │ ├── usbh_def.h │ │ │ ├── usbh_ioreq.h │ │ │ └── usbh_pipes.h │ │ │ └── Src │ │ │ ├── usbh_core.c │ │ │ ├── usbh_ctlreq.c │ │ │ ├── usbh_ioreq.c │ │ │ └── usbh_pipes.c │ ├── STM32F407VG_FLASH.ld │ ├── Src │ │ ├── main.c │ │ ├── stm32f4xx_hal_msp.c │ │ ├── stm32f4xx_it.c │ │ ├── system_stm32f4xx.c │ │ ├── usb_host.c │ │ ├── usbh_conf.c │ │ └── usbh_platform.c │ ├── mx.scratch │ └── startup │ │ └── startup_stm32f407xx.s └── PWM-output │ ├── .gitignore │ ├── .mxproject │ ├── .project │ ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F4xx │ │ │ │ └── Include │ │ │ │ ├── stm32f407xx.h │ │ │ │ ├── stm32f4xx.h │ │ │ │ └── system_stm32f4xx.h │ │ └── 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_hcd.h │ │ ├── stm32f4xx_hal_i2c.h │ │ ├── stm32f4xx_hal_i2c_ex.h │ │ ├── stm32f4xx_hal_i2s.h │ │ ├── stm32f4xx_hal_i2s_ex.h │ │ ├── stm32f4xx_hal_pwr.h │ │ ├── stm32f4xx_hal_pwr_ex.h │ │ ├── stm32f4xx_hal_rcc.h │ │ ├── stm32f4xx_hal_rcc_ex.h │ │ ├── stm32f4xx_hal_spi.h │ │ ├── stm32f4xx_hal_tim.h │ │ ├── stm32f4xx_hal_tim_ex.h │ │ └── stm32f4xx_ll_usb.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_hcd.c │ │ ├── stm32f4xx_hal_i2c.c │ │ ├── stm32f4xx_hal_i2c_ex.c │ │ ├── stm32f4xx_hal_i2s.c │ │ ├── stm32f4xx_hal_i2s_ex.c │ │ ├── stm32f4xx_hal_pwr.c │ │ ├── stm32f4xx_hal_pwr_ex.c │ │ ├── stm32f4xx_hal_rcc.c │ │ ├── stm32f4xx_hal_rcc_ex.c │ │ ├── stm32f4xx_hal_spi.c │ │ ├── stm32f4xx_hal_tim.c │ │ ├── stm32f4xx_hal_tim_ex.c │ │ └── stm32f4xx_ll_usb.c │ ├── Inc │ ├── main.h │ ├── stm32f4xx_hal_conf.h │ ├── stm32f4xx_it.h │ ├── usb_host.h │ ├── usbh_conf.h │ └── usbh_platform.h │ ├── Middlewares │ └── ST │ │ └── STM32_USB_Host_Library │ │ ├── Class │ │ └── CDC │ │ │ ├── Inc │ │ │ └── usbh_cdc.h │ │ │ └── Src │ │ │ └── usbh_cdc.c │ │ └── Core │ │ ├── Inc │ │ ├── usbh_core.h │ │ ├── usbh_ctlreq.h │ │ ├── usbh_def.h │ │ ├── usbh_ioreq.h │ │ └── usbh_pipes.h │ │ └── Src │ │ ├── usbh_core.c │ │ ├── usbh_ctlreq.c │ │ ├── usbh_ioreq.c │ │ └── usbh_pipes.c │ ├── PWM-output.ioc │ ├── STM32F407VG_FLASH.ld │ ├── Src │ ├── main.c │ ├── stm32f4xx_hal_msp.c │ ├── stm32f4xx_it.c │ ├── system_stm32f4xx.c │ ├── usb_host.c │ ├── usbh_conf.c │ └── usbh_platform.c │ ├── mx.scratch │ └── startup │ └── startup_stm32f407xx.s ├── analog_filter ├── README.md ├── analog_filter.jpg ├── ipynb │ └── Low pass and high pass filter design for RC circuit.ipynb ├── kicad │ ├── dac2earphone-B.Cu.gbr │ ├── dac2earphone-B.SilkS.gbr │ ├── dac2earphone-F.Cu.gbr │ ├── dac2earphone-F.SilkS.gbr │ ├── dac2earphone.kicad_pcb │ ├── dac2earphone.kicad_pcb-bak │ ├── dac2earphone.net │ ├── dac2earphone.pdf │ ├── dac2earphone.pro │ ├── dac2earphone.sch │ ├── fp-lib-table │ └── mcu.pretty │ │ ├── Capacitor.kicad_mod │ │ ├── LED.kicad_mod │ │ ├── Pin Header 10P.kicad_mod │ │ ├── Pin Header 2P.kicad_mod │ │ ├── Pin Header 4P.kicad_mod │ │ ├── Pin Header 6P.kicad_mod │ │ ├── Pin Header 8P.kicad_mod │ │ ├── Pin_Header_3P.kicad_mod │ │ ├── Register.kicad_mod │ │ ├── Tactile switch 4P.dcm │ │ ├── Tactile switch 4P.kicad_mod │ │ ├── Tactile_switch_4P.kicad_mod │ │ ├── audio_capacitor.kicad_mod │ │ ├── audio_jack_3.5mm.kicad_mod │ │ ├── ic-pinsocket-14pins.kicad_mod │ │ ├── ic-pinsocket-8pins.kicad_mod │ │ ├── pin-socket-4p.kicad_mod │ │ ├── pin_socket_10P.kicad_mod │ │ └── tactile-sw-4p.kicad_mod ├── ltspice │ ├── LPF_HPF_for_DAC_and_earphone.asc │ ├── LPF_HPF_for_DAC_and_earphone.fft │ ├── LPF_HPF_for_DAC_and_earphone.imp │ ├── LPF_HPF_for_DAC_and_earphone.log │ ├── LPF_HPF_for_DAC_and_earphone.pdf │ ├── LPF_HPF_for_DAC_and_earphone.raw │ └── LPF_HPF_for_DAC_and_earphone[1].fft ├── sine_wave_input.BMP └── sine_wave_output.BMP ├── doc ├── PWM_waveform.jpg └── STM32F4_Discovery_UART.jpg └── tips ├── CMSIS_DSP_RFFT.md ├── ENABLE_DSP.md ├── ENABLE_PRINTF.md └── RESOLUTION.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/.gitignore -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_SYSTEM_PERFORMANCE/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_SYSTEM_PERFORMANCE/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_SYSTEM_PERFORMANCE/.mxproject -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_SYSTEM_PERFORMANCE/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_SYSTEM_PERFORMANCE/.project -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_SYSTEM_PERFORMANCE/Inc/app_x-cube-ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_SYSTEM_PERFORMANCE/Inc/app_x-cube-ai.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_SYSTEM_PERFORMANCE/Inc/bsp_ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_SYSTEM_PERFORMANCE/Inc/bsp_ai.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_SYSTEM_PERFORMANCE/Inc/constants_ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_SYSTEM_PERFORMANCE/Inc/constants_ai.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_SYSTEM_PERFORMANCE/Inc/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_SYSTEM_PERFORMANCE/Inc/crc.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_SYSTEM_PERFORMANCE/Inc/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_SYSTEM_PERFORMANCE/Inc/gpio.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_SYSTEM_PERFORMANCE/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_SYSTEM_PERFORMANCE/Inc/main.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_SYSTEM_PERFORMANCE/Inc/stm32f4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_SYSTEM_PERFORMANCE/Inc/stm32f4xx_it.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_SYSTEM_PERFORMANCE/Inc/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_SYSTEM_PERFORMANCE/Inc/usart.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_SYSTEM_PERFORMANCE/Src/app_x-cube-ai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_SYSTEM_PERFORMANCE/Src/app_x-cube-ai.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_SYSTEM_PERFORMANCE/Src/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_SYSTEM_PERFORMANCE/Src/crc.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_SYSTEM_PERFORMANCE/Src/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_SYSTEM_PERFORMANCE/Src/gpio.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_SYSTEM_PERFORMANCE/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_SYSTEM_PERFORMANCE/Src/main.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_SYSTEM_PERFORMANCE/Src/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_SYSTEM_PERFORMANCE/Src/stm32f4xx_it.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_SYSTEM_PERFORMANCE/Src/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_SYSTEM_PERFORMANCE/Src/usart.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_SYSTEM_PERFORMANCE/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_SYSTEM_PERFORMANCE/syscalls.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_THERMOGRAPHY/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_THERMOGRAPHY/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_THERMOGRAPHY/.mxproject -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_THERMOGRAPHY/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_THERMOGRAPHY/.project -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_THERMOGRAPHY/AI_THERMOGRAPHY.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_THERMOGRAPHY/AI_THERMOGRAPHY.ioc -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Inc/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Inc/RTE_Components.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Inc/ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Inc/ai.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Inc/amg8833.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Inc/amg8833.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Inc/app_x-cube-ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Inc/app_x-cube-ai.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Inc/bsp_ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Inc/bsp_ai.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Inc/constants_ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Inc/constants_ai.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Inc/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Inc/crc.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Inc/dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Inc/dct.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Inc/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Inc/gpio.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Inc/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Inc/i2c.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Inc/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Inc/lcd.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Inc/main.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Inc/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Inc/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Inc/stm32f4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Inc/stm32f4xx_it.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Inc/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Inc/usart.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_THERMOGRAPHY/STM32F401RE_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_THERMOGRAPHY/STM32F401RE_FLASH.ld -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Src/ai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Src/ai.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Src/amg8833.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Src/amg8833.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Src/app_x-cube-ai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Src/app_x-cube-ai.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Src/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Src/crc.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Src/dct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Src/dct.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Src/dsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Src/dsp.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Src/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Src/gpio.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Src/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Src/i2c.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Src/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Src/lcd.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Src/main.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Src/stm32f4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Src/stm32f4xx_hal_msp.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Src/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Src/stm32f4xx_it.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Src/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Src/system_stm32f4xx.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Src/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_THERMOGRAPHY/Src/usart.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_THERMOGRAPHY/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_THERMOGRAPHY/syscalls.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_VALIDATION/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_VALIDATION/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_VALIDATION/.mxproject -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_VALIDATION/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_VALIDATION/.project -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_VALIDATION/AI_VALIDATION.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_VALIDATION/AI_VALIDATION.ioc -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_VALIDATION/Inc/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_VALIDATION/Inc/RTE_Components.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_VALIDATION/Inc/app_x-cube-ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_VALIDATION/Inc/app_x-cube-ai.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_VALIDATION/Inc/bsp_ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_VALIDATION/Inc/bsp_ai.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_VALIDATION/Inc/constants_ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_VALIDATION/Inc/constants_ai.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_VALIDATION/Inc/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_VALIDATION/Inc/crc.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_VALIDATION/Inc/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_VALIDATION/Inc/gpio.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_VALIDATION/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_VALIDATION/Inc/main.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_VALIDATION/Inc/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_VALIDATION/Inc/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_VALIDATION/Inc/stm32f4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_VALIDATION/Inc/stm32f4xx_it.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_VALIDATION/Inc/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_VALIDATION/Inc/usart.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_VALIDATION/STM32F401RE_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_VALIDATION/STM32F401RE_FLASH.ld -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_VALIDATION/Src/app_x-cube-ai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_VALIDATION/Src/app_x-cube-ai.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_VALIDATION/Src/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_VALIDATION/Src/crc.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_VALIDATION/Src/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_VALIDATION/Src/gpio.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_VALIDATION/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_VALIDATION/Src/main.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_VALIDATION/Src/stm32f4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_VALIDATION/Src/stm32f4xx_hal_msp.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_VALIDATION/Src/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_VALIDATION/Src/stm32f4xx_it.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_VALIDATION/Src/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_VALIDATION/Src/system_stm32f4xx.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_VALIDATION/Src/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_VALIDATION/Src/usart.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/AI_VALIDATION/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/AI_VALIDATION/syscalls.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/CODE_READING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/CODE_READING.md -------------------------------------------------------------------------------- /NUCLEO-F401RE/AI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/AI/README.md -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/ApplicationSample/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/ApplicationSample/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/ApplicationSample/.mxproject -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/ApplicationSample/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/ApplicationSample/.project -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/ApplicationSample/ApplicationSample.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/ApplicationSample/ApplicationSample.ioc -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/ApplicationSample/Inc/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/ApplicationSample/Inc/RTE_Components.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/ApplicationSample/Inc/app_x-cube-ble1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/ApplicationSample/Inc/app_x-cube-ble1.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/ApplicationSample/Inc/ble_list_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/ApplicationSample/Inc/ble_list_utils.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/ApplicationSample/Inc/bluenrg_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/ApplicationSample/Inc/bluenrg_conf.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/ApplicationSample/Inc/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/ApplicationSample/Inc/gpio.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/ApplicationSample/Inc/hci_tl_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/ApplicationSample/Inc/hci_tl_interface.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/ApplicationSample/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/ApplicationSample/Inc/main.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/ApplicationSample/Inc/role_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/ApplicationSample/Inc/role_type.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/ApplicationSample/Inc/sample_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/ApplicationSample/Inc/sample_service.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/ApplicationSample/Inc/stm32f4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/ApplicationSample/Inc/stm32f4xx_it.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/ApplicationSample/STM32F401RE_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/ApplicationSample/STM32F401RE_FLASH.ld -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/ApplicationSample/Src/app_x-cube-ble1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/ApplicationSample/Src/app_x-cube-ble1.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/ApplicationSample/Src/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/ApplicationSample/Src/gpio.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/ApplicationSample/Src/hci_tl_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/ApplicationSample/Src/hci_tl_interface.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/ApplicationSample/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/ApplicationSample/Src/main.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/ApplicationSample/Src/sample_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/ApplicationSample/Src/sample_service.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/ApplicationSample/Src/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/ApplicationSample/Src/stm32f4xx_it.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/ApplicationSample/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/ApplicationSample/Src/syscalls.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/ApplicationSample/Src/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/ApplicationSample/Src/system_stm32f4xx.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/.mxproject -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/.project -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Beacon.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Beacon.ioc -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Drivers/CMSIS/Include/core_cm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Drivers/CMSIS/Include/core_cm1.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Drivers/CMSIS/Include/core_cm23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Drivers/CMSIS/Include/core_cm23.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Drivers/CMSIS/Include/core_cm33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Drivers/CMSIS/Include/core_cm33.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Drivers/CMSIS/Include/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Drivers/CMSIS/Include/mpu_armv7.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Drivers/CMSIS/Include/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Drivers/CMSIS/Include/mpu_armv8.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Inc/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Inc/RTE_Components.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Inc/app_x-cube-ble1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Inc/app_x-cube-ble1.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Inc/beacon_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Inc/beacon_utils.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Inc/ble_list_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Inc/ble_list_utils.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Inc/bluenrg_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Inc/bluenrg_conf.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Inc/eddystone_beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Inc/eddystone_beacon.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Inc/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Inc/gpio.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Inc/hci_tl_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Inc/hci_tl_interface.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Inc/main.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Inc/nucleo_f401re_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Inc/nucleo_f401re_bus.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Inc/nucleo_f401re_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Inc/nucleo_f401re_conf.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Inc/nucleo_f401re_errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Inc/nucleo_f401re_errno.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Inc/sensor_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Inc/sensor_service.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Inc/stm32f4_nucleo_f401re.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Inc/stm32f4_nucleo_f401re.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Inc/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Inc/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Inc/stm32f4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Inc/stm32f4xx_it.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/STM32F401RE_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/STM32F401RE_FLASH.ld -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Src/app_x-cube-ble1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Src/app_x-cube-ble1.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Src/eddystone_beacon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Src/eddystone_beacon.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Src/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Src/gpio.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Src/hci_tl_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Src/hci_tl_interface.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Src/main.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Src/nucleo_f401re_bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Src/nucleo_f401re_bus.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Src/sensor_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Src/sensor_service.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Src/stm32f4_nucleo_f401re.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Src/stm32f4_nucleo_f401re.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Src/stm32f4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Src/stm32f4xx_hal_msp.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Src/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Src/stm32f4xx_it.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Src/syscalls.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/Src/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/Src/system_stm32f4xx.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Beacon/startup/startup_stm32f401xe.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Beacon/startup/startup_stm32f401xe.s -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/README.md -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Template/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Template/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Template/.mxproject -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Template/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Template/.project -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Template/Inc/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Template/Inc/RTE_Components.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Template/Inc/app_x-cube-ble1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Template/Inc/app_x-cube-ble1.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Template/Inc/ble_list_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Template/Inc/ble_list_utils.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Template/Inc/bluenrg_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Template/Inc/bluenrg_conf.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Template/Inc/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Template/Inc/gpio.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Template/Inc/hci_tl_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Template/Inc/hci_tl_interface.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Template/Inc/inference_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Template/Inc/inference_service.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Template/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Template/Inc/main.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Template/Inc/nucleo_f401re_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Template/Inc/nucleo_f401re_bus.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Template/Inc/nucleo_f401re_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Template/Inc/nucleo_f401re_conf.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Template/Inc/nucleo_f401re_errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Template/Inc/nucleo_f401re_errno.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Template/Inc/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Template/Inc/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Template/Inc/stm32f4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Template/Inc/stm32f4xx_it.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Template/Inc/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Template/Inc/usart.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Template/STM32F401RE_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Template/STM32F401RE_FLASH.ld -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Template/Src/app_x-cube-ble1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Template/Src/app_x-cube-ble1.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Template/Src/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Template/Src/gpio.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Template/Src/hci_tl_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Template/Src/hci_tl_interface.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Template/Src/inference_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Template/Src/inference_service.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Template/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Template/Src/main.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Template/Src/nucleo_f401re_bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Template/Src/nucleo_f401re_bus.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Template/Src/stm32f4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Template/Src/stm32f4xx_hal_msp.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Template/Src/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Template/Src/stm32f4xx_it.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Template/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Template/Src/syscalls.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Template/Src/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Template/Src/system_stm32f4xx.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Template/Src/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Template/Src/usart.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Template/Template.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Template/Template.ioc -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/Template/startup/startup_stm32f401xe.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/Template/startup/startup_stm32f401xe.s -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/doc/X-CUBE-BLE1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/doc/X-CUBE-BLE1.jpg -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/doc/X-CUBE-BLE1_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/doc/X-CUBE-BLE1_2.jpg -------------------------------------------------------------------------------- /NUCLEO-F401RE/BLE/doc/X-CUBE-BLE1_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/BLE/doc/X-CUBE-BLE1_3.jpg -------------------------------------------------------------------------------- /NUCLEO-F401RE/DCT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/DCT/README.md -------------------------------------------------------------------------------- /NUCLEO-F401RE/DCT/ipynb/DCT.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/DCT/ipynb/DCT.ipynb -------------------------------------------------------------------------------- /NUCLEO-F401RE/DCT/ipynb/Zigzag_scan.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/DCT/ipynb/Zigzag_scan.ipynb -------------------------------------------------------------------------------- /NUCLEO-F401RE/DCT/stm32/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /NUCLEO-F401RE/DCT/stm32/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/DCT/stm32/.mxproject -------------------------------------------------------------------------------- /NUCLEO-F401RE/DCT/stm32/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/DCT/stm32/.project -------------------------------------------------------------------------------- /NUCLEO-F401RE/DCT/stm32/DCT.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/DCT/stm32/DCT.ioc -------------------------------------------------------------------------------- /NUCLEO-F401RE/DCT/stm32/Drivers/CMSIS/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/DCT/stm32/Drivers/CMSIS/Include/arm_math.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/DCT/stm32/Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/DCT/stm32/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/DCT/stm32/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/DCT/stm32/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/DCT/stm32/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/DCT/stm32/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/DCT/stm32/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/DCT/stm32/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/DCT/stm32/Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/DCT/stm32/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/DCT/stm32/Drivers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/DCT/stm32/Drivers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/DCT/stm32/Drivers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/DCT/stm32/Drivers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/DCT/stm32/Drivers/CMSIS/Lib/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/DCT/stm32/Drivers/CMSIS/Lib/LICENSE.txt -------------------------------------------------------------------------------- /NUCLEO-F401RE/DCT/stm32/Inc/dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/DCT/stm32/Inc/dct.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/DCT/stm32/Inc/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/DCT/stm32/Inc/gpio.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/DCT/stm32/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/DCT/stm32/Inc/main.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/DCT/stm32/Inc/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/DCT/stm32/Inc/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/DCT/stm32/Inc/stm32f4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/DCT/stm32/Inc/stm32f4xx_it.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/DCT/stm32/Inc/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/DCT/stm32/Inc/usart.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/DCT/stm32/STM32F401RE_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/DCT/stm32/STM32F401RE_FLASH.ld -------------------------------------------------------------------------------- /NUCLEO-F401RE/DCT/stm32/Src/dct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/DCT/stm32/Src/dct.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/DCT/stm32/Src/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/DCT/stm32/Src/gpio.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/DCT/stm32/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/DCT/stm32/Src/main.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/DCT/stm32/Src/stm32f4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/DCT/stm32/Src/stm32f4xx_hal_msp.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/DCT/stm32/Src/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/DCT/stm32/Src/stm32f4xx_it.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/DCT/stm32/Src/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/DCT/stm32/Src/system_stm32f4xx.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/DCT/stm32/Src/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/DCT/stm32/Src/usart.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/DCT/stm32/startup/startup_stm32f401xe.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/DCT/stm32/startup/startup_stm32f401xe.s -------------------------------------------------------------------------------- /NUCLEO-F401RE/DCT/stm32/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/DCT/stm32/syscalls.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/.gitattributes -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/.gitignore -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/README.md -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/home_appliances/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/home_appliances/README.md -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/home_appliances/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/home_appliances/index.html -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/home_appliances/server.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/home_appliances/server.cert -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/home_appliances/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/home_appliances/server.key -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/home_appliances/signage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/home_appliances/signage.js -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/home_appliances/video_player/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/home_appliances/video_player/index.html -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/home_appliances/webapp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/home_appliances/webapp.js -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/kicad/ant7_t_st25dv04k-B.Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/kicad/ant7_t_st25dv04k-B.Cu.gbr -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/kicad/ant7_t_st25dv04k-B.SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/kicad/ant7_t_st25dv04k-B.SilkS.gbr -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/kicad/ant7_t_st25dv04k-F.Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/kicad/ant7_t_st25dv04k-F.Cu.gbr -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/kicad/ant7_t_st25dv04k-F.SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/kicad/ant7_t_st25dv04k-F.SilkS.gbr -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/kicad/ant7_t_st25dv04k.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/kicad/ant7_t_st25dv04k.kicad_pcb -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/kicad/ant7_t_st25dv04k.kicad_pcb-bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/kicad/ant7_t_st25dv04k.kicad_pcb-bak -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/kicad/ant7_t_st25dv04k.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/kicad/ant7_t_st25dv04k.pdf -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/kicad/ant7_t_st25dv04k.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/kicad/ant7_t_st25dv04k.pro -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/kicad/ant7_t_st25dv04k.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/kicad/ant7_t_st25dv04k.sch -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/kicad/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/kicad/fp-lib-table -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/kicad/mcu.bck: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/kicad/mcu.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/kicad/mcu.pretty/Capacitor.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/kicad/mcu.pretty/Capacitor.kicad_mod -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/kicad/mcu.pretty/LED.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/kicad/mcu.pretty/LED.kicad_mod -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/kicad/mcu.pretty/MEMS_mic.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/kicad/mcu.pretty/MEMS_mic.kicad_mod -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/kicad/mcu.pretty/Pin Header 2P.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/kicad/mcu.pretty/Pin Header 2P.kicad_mod -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/kicad/mcu.pretty/Pin Header 4P.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/kicad/mcu.pretty/Pin Header 4P.kicad_mod -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/kicad/mcu.pretty/Pin Header 6P.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/kicad/mcu.pretty/Pin Header 6P.kicad_mod -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/kicad/mcu.pretty/Pin Header 8P.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/kicad/mcu.pretty/Pin Header 8P.kicad_mod -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/kicad/mcu.pretty/Pin_Header_3P.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/kicad/mcu.pretty/Pin_Header_3P.kicad_mod -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/kicad/mcu.pretty/Pin_Header_5P.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/kicad/mcu.pretty/Pin_Header_5P.kicad_mod -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/kicad/mcu.pretty/Pin_Socket_6P.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/kicad/mcu.pretty/Pin_Socket_6P.kicad_mod -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/kicad/mcu.pretty/Pin_header_1P.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/kicad/mcu.pretty/Pin_header_1P.kicad_mod -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/kicad/mcu.pretty/Register.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/kicad/mcu.pretty/Register.kicad_mod -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/kicad/mcu.pretty/pin-socket-4p.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/kicad/mcu.pretty/pin-socket-4p.kicad_mod -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/kicad/mcu.pretty/tactile_sw_4p.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/kicad/mcu.pretty/tactile_sw_4p.kicad_mod -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/start.sh -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/.mxproject -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/BSP/Components/ST25DV/st25dv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/BSP/Components/ST25DV/st25dv.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/BSP/Components/ST25DV/st25dv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/BSP/Components/ST25DV/st25dv.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/BSP/Components/ST25DV/st25dv_reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/BSP/Components/ST25DV/st25dv_reg.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/BSP/Components/ST25DV/st25dv_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/BSP/Components/ST25DV/st25dv_reg.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/BSP/NFC04A1/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/BSP/NFC04A1/Release_Notes.html -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/BSP/NFC04A1/nfc04a1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/BSP/NFC04A1/nfc04a1.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/BSP/NFC04A1/nfc04a1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/BSP/NFC04A1/nfc04a1.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/BSP/NFC04A1/nfc04a1_nfctag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/BSP/NFC04A1/nfc04a1_nfctag.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/BSP/NFC04A1/nfc04a1_nfctag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/BSP/NFC04A1/nfc04a1_nfctag.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Debug/Dynamic_NFC_tag.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Debug/Dynamic_NFC_tag.list -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Debug/Src/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Debug/Src/subdir.mk -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Debug/Startup/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Debug/Startup/subdir.mk -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Debug/makefile -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Debug/objects.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Debug/objects.list -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Debug/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Debug/objects.mk -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Debug/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Debug/sources.mk -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Drivers/BSP/NFC04A1/nfc04a1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Drivers/BSP/NFC04A1/nfc04a1.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Drivers/BSP/NFC04A1/nfc04a1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Drivers/BSP/NFC04A1/nfc04a1.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Drivers/CMSIS/Include/core_cm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Drivers/CMSIS/Include/core_cm1.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Drivers/CMSIS/Include/core_cm23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Drivers/CMSIS/Include/core_cm23.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Drivers/CMSIS/Include/core_cm33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Drivers/CMSIS/Include/core_cm33.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Dynamic_NFC_tag.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Dynamic_NFC_tag.ioc -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Inc/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Inc/RTE_Components.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Inc/app_nfc_uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Inc/app_nfc_uri.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Inc/app_x-cube-nfc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Inc/app_x-cube-nfc4.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Inc/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Inc/common.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Inc/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Inc/gpio.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Inc/main.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Inc/nfc04a1_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Inc/nfc04a1_conf.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Inc/rn4020.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Inc/rn4020.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Inc/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Inc/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Inc/stm32f4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Inc/stm32f4xx_it.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Inc/stm32f4xx_nucleo_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Inc/stm32f4xx_nucleo_bus.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Inc/stm32f4xx_nucleo_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Inc/stm32f4xx_nucleo_conf.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Inc/stm32f4xx_nucleo_errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Inc/stm32f4xx_nucleo_errno.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Inc/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Inc/usart.h -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/STM32F401RETX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/STM32F401RETX_FLASH.ld -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/STM32F401RETX_RAM.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/STM32F401RETX_RAM.ld -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Src/app_nfc_uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Src/app_nfc_uri.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Src/app_x-cube-nfc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Src/app_x-cube-nfc4.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Src/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Src/gpio.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Src/lib_NDEF_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Src/lib_NDEF_config.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Src/main.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Src/rn4020.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Src/rn4020.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Src/stm32f4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Src/stm32f4xx_hal_msp.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Src/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Src/stm32f4xx_it.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Src/stm32f4xx_nucleo_bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Src/stm32f4xx_nucleo_bus.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Src/syscalls.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Src/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Src/system_stm32f4xx.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Src/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Src/usart.c -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stm32/Startup/startup_stm32f401retx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stm32/Startup/startup_stm32f401retx.s -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/stop.sh -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/util/base_url/base_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/util/base_url/base_url.py -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/util/base_url/section1_l476rg.sh: -------------------------------------------------------------------------------- 1 | ./base_url.py 10443 section1 2 | -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/util/base_url/section2_f401re.sh: -------------------------------------------------------------------------------- 1 | ./base_url.py 10443 section2 2 | -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/util/base_url/section3_l476rg.sh: -------------------------------------------------------------------------------- 1 | ./base_url.py 10443 section3 2 | -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/util/base_url/yokohama_osanbashi.sh: -------------------------------------------------------------------------------- 1 | ./base_url.py 10443 yokohama_osanbashi 2 | -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/webapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/webapp/README.md -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/webapp/server.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/webapp/server.cert -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/webapp/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/webapp/server.key -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/webapp/views/bootstrap.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/webapp/views/bootstrap.ejs -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/webapp/views/css/video.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/webapp/views/css/video.css -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/webapp/views/debug.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/webapp/views/debug.ejs -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/webapp/views/menu.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/webapp/views/menu.ejs -------------------------------------------------------------------------------- /NUCLEO-F401RE/NFC/webapp/webapp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/NFC/webapp/webapp.js -------------------------------------------------------------------------------- /NUCLEO-F401RE/Thermography/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/Thermography/README.md -------------------------------------------------------------------------------- /NUCLEO-F401RE/Thermography/device.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/Thermography/device.jpg -------------------------------------------------------------------------------- /NUCLEO-F401RE/Thermography/kicad/arduino_board.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/Thermography/kicad/arduino_board.pdf -------------------------------------------------------------------------------- /NUCLEO-F401RE/Thermography/kicad/arduino_board.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/Thermography/kicad/arduino_board.pro -------------------------------------------------------------------------------- /NUCLEO-F401RE/Thermography/kicad/arduino_board.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/Thermography/kicad/arduino_board.sch -------------------------------------------------------------------------------- /NUCLEO-F401RE/Thermography/kicad/mcu.bck: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /NUCLEO-F401RE/Thermography/kicad/mcu.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /NUCLEO-F401RE/Thermography/tensorflow/zigzag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/Thermography/tensorflow/zigzag.py -------------------------------------------------------------------------------- /NUCLEO-F401RE/Thermography/thermography/data/class_labels.yaml: -------------------------------------------------------------------------------- 1 | [paper, rock, scissors] 2 | -------------------------------------------------------------------------------- /NUCLEO-F401RE/Thermography/thermography/heatmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/Thermography/thermography/heatmap.py -------------------------------------------------------------------------------- /NUCLEO-F401RE/Thermography/thermography/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/Thermography/thermography/interface.py -------------------------------------------------------------------------------- /NUCLEO-F401RE/Thermography/thermography/run.bat: -------------------------------------------------------------------------------- 1 | python thermography.py COM6 2 | -------------------------------------------------------------------------------- /NUCLEO-F401RE/Thermography/thermography/run_interpolated.bat: -------------------------------------------------------------------------------- 1 | python thermography.py COM6 --grid_data 2 | -------------------------------------------------------------------------------- /NUCLEO-F401RE/Thermography/thermography/screen_shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/Thermography/thermography/screen_shot.png -------------------------------------------------------------------------------- /NUCLEO-F401RE/Thermography/thermography/thermography.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-F401RE/Thermography/thermography/thermography.py -------------------------------------------------------------------------------- /NUCLEO-L476RG/ADC/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /NUCLEO-L476RG/ADC/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/ADC/.mxproject -------------------------------------------------------------------------------- /NUCLEO-L476RG/ADC/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/ADC/.project -------------------------------------------------------------------------------- /NUCLEO-L476RG/ADC/Drivers/CMSIS/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/ADC/Drivers/CMSIS/Include/arm_math.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/ADC/Drivers/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/ADC/Drivers/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/ADC/Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/ADC/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/ADC/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/ADC/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/ADC/Drivers/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/ADC/Drivers/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/ADC/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/ADC/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/ADC/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/ADC/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/ADC/Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/ADC/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/ADC/Drivers/CMSIS/Include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/ADC/Drivers/CMSIS/Include/core_cmFunc.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/ADC/Drivers/CMSIS/Include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/ADC/Drivers/CMSIS/Include/core_cmInstr.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/ADC/Drivers/CMSIS/Include/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/ADC/Drivers/CMSIS/Include/core_cmSimd.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/ADC/Drivers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/ADC/Drivers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/ADC/Drivers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/ADC/Drivers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/ADC/Inc/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/ADC/Inc/adc.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/ADC/Inc/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/ADC/Inc/dma.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/ADC/Inc/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/ADC/Inc/gpio.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/ADC/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/ADC/Inc/main.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/ADC/Inc/stm32l4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/ADC/Inc/stm32l4xx_hal_conf.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/ADC/Inc/stm32l4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/ADC/Inc/stm32l4xx_it.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/ADC/Inc/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/ADC/Inc/usart.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/ADC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/ADC/README.md -------------------------------------------------------------------------------- /NUCLEO-L476RG/ADC/STM32L476RG_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/ADC/STM32L476RG_FLASH.ld -------------------------------------------------------------------------------- /NUCLEO-L476RG/ADC/Src/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/ADC/Src/adc.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/ADC/Src/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/ADC/Src/dma.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/ADC/Src/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/ADC/Src/gpio.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/ADC/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/ADC/Src/main.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/ADC/Src/stm32l4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/ADC/Src/stm32l4xx_hal_msp.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/ADC/Src/stm32l4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/ADC/Src/stm32l4xx_it.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/ADC/Src/system_stm32l4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/ADC/Src/system_stm32l4xx.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/ADC/Src/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/ADC/Src/usart.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/ADC/adc.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/ADC/adc.ioc -------------------------------------------------------------------------------- /NUCLEO-L476RG/ADC/startup/startup_stm32l476xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/ADC/startup/startup_stm32l476xx.s -------------------------------------------------------------------------------- /NUCLEO-L476RG/CAN/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | /Release/ 3 | -------------------------------------------------------------------------------- /NUCLEO-L476RG/CAN/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/CAN/.mxproject -------------------------------------------------------------------------------- /NUCLEO-L476RG/CAN/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/CAN/.project -------------------------------------------------------------------------------- /NUCLEO-L476RG/CAN/CAN.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/CAN/CAN.ioc -------------------------------------------------------------------------------- /NUCLEO-L476RG/CAN/Drivers/CMSIS/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/CAN/Drivers/CMSIS/Include/arm_math.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/CAN/Drivers/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/CAN/Drivers/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/CAN/Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/CAN/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/CAN/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/CAN/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/CAN/Drivers/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/CAN/Drivers/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/CAN/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/CAN/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/CAN/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/CAN/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/CAN/Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/CAN/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/CAN/Drivers/CMSIS/Include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/CAN/Drivers/CMSIS/Include/core_cmFunc.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/CAN/Drivers/CMSIS/Include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/CAN/Drivers/CMSIS/Include/core_cmInstr.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/CAN/Drivers/CMSIS/Include/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/CAN/Drivers/CMSIS/Include/core_cmSimd.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/CAN/Drivers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/CAN/Drivers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/CAN/Drivers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/CAN/Drivers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/CAN/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/CAN/Inc/main.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/CAN/Inc/stm32l4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/CAN/Inc/stm32l4xx_hal_conf.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/CAN/Inc/stm32l4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/CAN/Inc/stm32l4xx_it.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/CAN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/CAN/README.md -------------------------------------------------------------------------------- /NUCLEO-L476RG/CAN/STM32L476RG_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/CAN/STM32L476RG_FLASH.ld -------------------------------------------------------------------------------- /NUCLEO-L476RG/CAN/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/CAN/Src/main.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/CAN/Src/stm32l4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/CAN/Src/stm32l4xx_hal_msp.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/CAN/Src/stm32l4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/CAN/Src/stm32l4xx_it.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/CAN/Src/system_stm32l4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/CAN/Src/system_stm32l4xx.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/CAN/mx.scratch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/CAN/mx.scratch -------------------------------------------------------------------------------- /NUCLEO-L476RG/CAN/startup/startup_stm32l476xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/CAN/startup/startup_stm32l476xx.s -------------------------------------------------------------------------------- /NUCLEO-L476RG/Chirp_Compression/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Chirp_Compression/.gitattributes -------------------------------------------------------------------------------- /NUCLEO-L476RG/Chirp_Compression/.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /NUCLEO-L476RG/Chirp_Compression/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Chirp_Compression/README.md -------------------------------------------------------------------------------- /NUCLEO-L476RG/Chirp_Compression/ipynb/Formula.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Chirp_Compression/ipynb/Formula.ipynb -------------------------------------------------------------------------------- /NUCLEO-L476RG/Chirp_Compression/lib/dsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Chirp_Compression/lib/dsp.py -------------------------------------------------------------------------------- /NUCLEO-L476RG/Chirp_Compression/oscilloscope/dsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Chirp_Compression/oscilloscope/dsp.py -------------------------------------------------------------------------------- /NUCLEO-L476RG/Chirp_Compression/oscilloscope/run.bat: -------------------------------------------------------------------------------- 1 | python oscilloscope.py COM15 2 | -------------------------------------------------------------------------------- /NUCLEO-L476RG/Chirp_Compression/stm32/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /NUCLEO-L476RG/Chirp_Compression/stm32/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Chirp_Compression/stm32/.mxproject -------------------------------------------------------------------------------- /NUCLEO-L476RG/Chirp_Compression/stm32/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Chirp_Compression/stm32/.project -------------------------------------------------------------------------------- /NUCLEO-L476RG/Chirp_Compression/stm32/Inc/chirp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Chirp_Compression/stm32/Inc/chirp.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Chirp_Compression/stm32/Inc/dfsdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Chirp_Compression/stm32/Inc/dfsdm.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Chirp_Compression/stm32/Inc/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Chirp_Compression/stm32/Inc/dma.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Chirp_Compression/stm32/Inc/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Chirp_Compression/stm32/Inc/gpio.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Chirp_Compression/stm32/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Chirp_Compression/stm32/Inc/main.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Chirp_Compression/stm32/Inc/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Chirp_Compression/stm32/Inc/usart.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Chirp_Compression/stm32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Chirp_Compression/stm32/README.md -------------------------------------------------------------------------------- /NUCLEO-L476RG/Chirp_Compression/stm32/Src/chirp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Chirp_Compression/stm32/Src/chirp.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/Chirp_Compression/stm32/Src/dfsdm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Chirp_Compression/stm32/Src/dfsdm.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/Chirp_Compression/stm32/Src/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Chirp_Compression/stm32/Src/dma.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/Chirp_Compression/stm32/Src/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Chirp_Compression/stm32/Src/gpio.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/Chirp_Compression/stm32/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Chirp_Compression/stm32/Src/main.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/Chirp_Compression/stm32/Src/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Chirp_Compression/stm32/Src/usart.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/Chirp_Compression/stm32/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Chirp_Compression/stm32/syscalls.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/Clock/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /NUCLEO-L476RG/Clock/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Clock/.mxproject -------------------------------------------------------------------------------- /NUCLEO-L476RG/Clock/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Clock/.project -------------------------------------------------------------------------------- /NUCLEO-L476RG/Clock/Clock.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Clock/Clock.ioc -------------------------------------------------------------------------------- /NUCLEO-L476RG/Clock/Clock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Clock/Clock.jpg -------------------------------------------------------------------------------- /NUCLEO-L476RG/Clock/Drivers/CMSIS/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Clock/Drivers/CMSIS/Include/arm_math.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Clock/Drivers/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Clock/Drivers/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Clock/Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Clock/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Clock/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Clock/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Clock/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Clock/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Clock/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Clock/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Clock/Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Clock/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Clock/Drivers/CMSIS/Include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Clock/Drivers/CMSIS/Include/core_cmFunc.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Clock/Drivers/CMSIS/Include/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Clock/Drivers/CMSIS/Include/core_cmSimd.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Clock/Drivers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Clock/Drivers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Clock/Drivers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Clock/Drivers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Clock/Inc/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Clock/Inc/lcd.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Clock/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Clock/Inc/main.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Clock/Inc/stm32l4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Clock/Inc/stm32l4xx_hal_conf.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Clock/Inc/stm32l4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Clock/Inc/stm32l4xx_it.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Clock/NUCLEO-L476RG-Clock-Wiring.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Clock/NUCLEO-L476RG-Clock-Wiring.jpg -------------------------------------------------------------------------------- /NUCLEO-L476RG/Clock/NUCLEO-L476RG-Clock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Clock/NUCLEO-L476RG-Clock.jpg -------------------------------------------------------------------------------- /NUCLEO-L476RG/Clock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Clock/README.md -------------------------------------------------------------------------------- /NUCLEO-L476RG/Clock/STM32L476RG_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Clock/STM32L476RG_FLASH.ld -------------------------------------------------------------------------------- /NUCLEO-L476RG/Clock/Src/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Clock/Src/lcd.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/Clock/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Clock/Src/main.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/Clock/Src/stm32l4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Clock/Src/stm32l4xx_hal_msp.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/Clock/Src/stm32l4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Clock/Src/stm32l4xx_it.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/Clock/Src/system_stm32l4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Clock/Src/system_stm32l4xx.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/Clock/clock.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Clock/clock.kicad_pcb -------------------------------------------------------------------------------- /NUCLEO-L476RG/Clock/clock.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Clock/clock.pro -------------------------------------------------------------------------------- /NUCLEO-L476RG/Clock/clock.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Clock/clock.sch -------------------------------------------------------------------------------- /NUCLEO-L476RG/Clock/mx.scratch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Clock/mx.scratch -------------------------------------------------------------------------------- /NUCLEO-L476RG/Clock/startup/startup_stm32l476xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Clock/startup/startup_stm32l476xx.s -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/README.md -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/Sine wave generation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/Sine wave generation.ipynb -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/sine_wave.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/sine_wave.BMP -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/sine_wave/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/sine_wave/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/sine_wave/.mxproject -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/sine_wave/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/sine_wave/.project -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/sine_wave/Inc/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/sine_wave/Inc/dac.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/sine_wave/Inc/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/sine_wave/Inc/dma.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/sine_wave/Inc/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/sine_wave/Inc/gpio.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/sine_wave/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/sine_wave/Inc/main.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/sine_wave/Inc/stm32l4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/sine_wave/Inc/stm32l4xx_hal_conf.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/sine_wave/Inc/stm32l4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/sine_wave/Inc/stm32l4xx_it.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/sine_wave/Inc/tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/sine_wave/Inc/tim.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/sine_wave/Inc/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/sine_wave/Inc/usart.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/sine_wave/STM32L476RG_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/sine_wave/STM32L476RG_FLASH.ld -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/sine_wave/Src/dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/sine_wave/Src/dac.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/sine_wave/Src/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/sine_wave/Src/dma.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/sine_wave/Src/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/sine_wave/Src/gpio.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/sine_wave/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/sine_wave/Src/main.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/sine_wave/Src/stm32l4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/sine_wave/Src/stm32l4xx_hal_msp.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/sine_wave/Src/stm32l4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/sine_wave/Src/stm32l4xx_it.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/sine_wave/Src/system_stm32l4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/sine_wave/Src/system_stm32l4xx.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/sine_wave/Src/tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/sine_wave/Src/tim.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/sine_wave/Src/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/sine_wave/Src/usart.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/sine_wave/sine_wave.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/sine_wave/sine_wave.ioc -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/trianglular_wave.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/trianglular_wave.BMP -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/triangular_wave/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/triangular_wave/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/triangular_wave/.mxproject -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/triangular_wave/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/triangular_wave/.project -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/triangular_wave/Inc/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/triangular_wave/Inc/dac.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/triangular_wave/Inc/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/triangular_wave/Inc/gpio.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/triangular_wave/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/triangular_wave/Inc/main.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/triangular_wave/Inc/stm32l4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/triangular_wave/Inc/stm32l4xx_it.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/triangular_wave/Inc/tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/triangular_wave/Inc/tim.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/triangular_wave/Inc/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/triangular_wave/Inc/usart.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/triangular_wave/STM32L476RG_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/triangular_wave/STM32L476RG_FLASH.ld -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/triangular_wave/Src/dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/triangular_wave/Src/dac.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/triangular_wave/Src/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/triangular_wave/Src/gpio.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/triangular_wave/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/triangular_wave/Src/main.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/triangular_wave/Src/stm32l4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/triangular_wave/Src/stm32l4xx_it.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/triangular_wave/Src/tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/triangular_wave/Src/tim.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/triangular_wave/Src/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/triangular_wave/Src/usart.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/triangular_wave/dac.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/triangular_wave/dac.ioc -------------------------------------------------------------------------------- /NUCLEO-L476RG/DAC/triangular_wave/mx.scratch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/DAC/triangular_wave/mx.scratch -------------------------------------------------------------------------------- /NUCLEO-L476RG/GPIO_Interrupt/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /NUCLEO-L476RG/GPIO_Interrupt/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/GPIO_Interrupt/.mxproject -------------------------------------------------------------------------------- /NUCLEO-L476RG/GPIO_Interrupt/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/GPIO_Interrupt/.project -------------------------------------------------------------------------------- /NUCLEO-L476RG/GPIO_Interrupt/GPIO_Interrupt.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/GPIO_Interrupt/GPIO_Interrupt.ioc -------------------------------------------------------------------------------- /NUCLEO-L476RG/GPIO_Interrupt/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/GPIO_Interrupt/Inc/main.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/GPIO_Interrupt/Inc/stm32l4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/GPIO_Interrupt/Inc/stm32l4xx_hal_conf.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/GPIO_Interrupt/Inc/stm32l4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/GPIO_Interrupt/Inc/stm32l4xx_it.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/GPIO_Interrupt/STM32L476RG_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/GPIO_Interrupt/STM32L476RG_FLASH.ld -------------------------------------------------------------------------------- /NUCLEO-L476RG/GPIO_Interrupt/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/GPIO_Interrupt/Src/main.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/GPIO_Interrupt/Src/stm32l4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/GPIO_Interrupt/Src/stm32l4xx_hal_msp.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/GPIO_Interrupt/Src/stm32l4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/GPIO_Interrupt/Src/stm32l4xx_it.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/GPIO_Interrupt/Src/system_stm32l4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/GPIO_Interrupt/Src/system_stm32l4xx.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/GPIO_Interrupt/mx.scratch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/GPIO_Interrupt/mx.scratch -------------------------------------------------------------------------------- /NUCLEO-L476RG/GyroScope/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /NUCLEO-L476RG/GyroScope/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/GyroScope/.mxproject -------------------------------------------------------------------------------- /NUCLEO-L476RG/GyroScope/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/GyroScope/.project -------------------------------------------------------------------------------- /NUCLEO-L476RG/GyroScope/GyroScope.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/GyroScope/GyroScope.ioc -------------------------------------------------------------------------------- /NUCLEO-L476RG/GyroScope/Inc/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/GyroScope/Inc/i2c.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/GyroScope/Inc/l3gd20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/GyroScope/Inc/l3gd20.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/GyroScope/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/GyroScope/Inc/main.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/GyroScope/Inc/stm32l4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/GyroScope/Inc/stm32l4xx_hal_conf.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/GyroScope/Inc/stm32l4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/GyroScope/Inc/stm32l4xx_it.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/GyroScope/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/GyroScope/README.md -------------------------------------------------------------------------------- /NUCLEO-L476RG/GyroScope/STM32L476RG_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/GyroScope/STM32L476RG_FLASH.ld -------------------------------------------------------------------------------- /NUCLEO-L476RG/GyroScope/Src/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/GyroScope/Src/i2c.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/GyroScope/Src/l3gd20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/GyroScope/Src/l3gd20.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/GyroScope/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/GyroScope/Src/main.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/GyroScope/Src/stm32l4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/GyroScope/Src/stm32l4xx_hal_msp.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/GyroScope/Src/stm32l4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/GyroScope/Src/stm32l4xx_it.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/GyroScope/Src/system_stm32l4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/GyroScope/Src/system_stm32l4xx.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/GyroScope/mx.scratch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/GyroScope/mx.scratch -------------------------------------------------------------------------------- /NUCLEO-L476RG/GyroScope/startup/startup_stm32l476xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/GyroScope/startup/startup_stm32l476xx.s -------------------------------------------------------------------------------- /NUCLEO-L476RG/HelloWorld/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /NUCLEO-L476RG/HelloWorld/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/HelloWorld/.mxproject -------------------------------------------------------------------------------- /NUCLEO-L476RG/HelloWorld/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/HelloWorld/.project -------------------------------------------------------------------------------- /NUCLEO-L476RG/HelloWorld/HelloWorld.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/HelloWorld/HelloWorld.ioc -------------------------------------------------------------------------------- /NUCLEO-L476RG/HelloWorld/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/HelloWorld/Inc/main.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/HelloWorld/Inc/stm32l4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/HelloWorld/Inc/stm32l4xx_hal_conf.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/HelloWorld/Inc/stm32l4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/HelloWorld/Inc/stm32l4xx_it.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/HelloWorld/STM32L476RG_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/HelloWorld/STM32L476RG_FLASH.ld -------------------------------------------------------------------------------- /NUCLEO-L476RG/HelloWorld/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/HelloWorld/Src/main.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/HelloWorld/Src/stm32l4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/HelloWorld/Src/stm32l4xx_hal_msp.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/HelloWorld/Src/stm32l4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/HelloWorld/Src/stm32l4xx_it.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/HelloWorld/Src/system_stm32l4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/HelloWorld/Src/system_stm32l4xx.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/HelloWorld/mx.scratch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/HelloWorld/mx.scratch -------------------------------------------------------------------------------- /NUCLEO-L476RG/HelloWorld/startup/startup_stm32l476xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/HelloWorld/startup/startup_stm32l476xx.s -------------------------------------------------------------------------------- /NUCLEO-L476RG/MEMSMIC/MEMSMIC_expansion_board.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/MEMSMIC/MEMSMIC_expansion_board.jpg -------------------------------------------------------------------------------- /NUCLEO-L476RG/MEMSMIC/Pinout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/MEMSMIC/Pinout.jpg -------------------------------------------------------------------------------- /NUCLEO-L476RG/MEMSMIC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/MEMSMIC/README.md -------------------------------------------------------------------------------- /NUCLEO-L476RG/MEMSMIC/SB.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/MEMSMIC/SB.jpg -------------------------------------------------------------------------------- /NUCLEO-L476RG/MEMSMIC/Tone_15000Hz.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/MEMSMIC/Tone_15000Hz.ipynb -------------------------------------------------------------------------------- /NUCLEO-L476RG/MEMSMIC/freq15000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/MEMSMIC/freq15000.txt -------------------------------------------------------------------------------- /NUCLEO-L476RG/MEMSMIC/freq20000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/MEMSMIC/freq20000.txt -------------------------------------------------------------------------------- /NUCLEO-L476RG/MEMSMIC/plot_15000Hz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/MEMSMIC/plot_15000Hz.jpg -------------------------------------------------------------------------------- /NUCLEO-L476RG/Mic_ADC_DAC/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /NUCLEO-L476RG/Mic_ADC_DAC/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Mic_ADC_DAC/.mxproject -------------------------------------------------------------------------------- /NUCLEO-L476RG/Mic_ADC_DAC/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Mic_ADC_DAC/.project -------------------------------------------------------------------------------- /NUCLEO-L476RG/Mic_ADC_DAC/Drivers/CMSIS/Lib/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Mic_ADC_DAC/Drivers/CMSIS/Lib/LICENSE.txt -------------------------------------------------------------------------------- /NUCLEO-L476RG/Mic_ADC_DAC/Inc/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Mic_ADC_DAC/Inc/adc.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Mic_ADC_DAC/Inc/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Mic_ADC_DAC/Inc/dac.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Mic_ADC_DAC/Inc/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Mic_ADC_DAC/Inc/dma.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Mic_ADC_DAC/Inc/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Mic_ADC_DAC/Inc/gpio.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Mic_ADC_DAC/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Mic_ADC_DAC/Inc/main.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Mic_ADC_DAC/Inc/stm32l4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Mic_ADC_DAC/Inc/stm32l4xx_hal_conf.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Mic_ADC_DAC/Inc/stm32l4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Mic_ADC_DAC/Inc/stm32l4xx_it.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Mic_ADC_DAC/Inc/tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Mic_ADC_DAC/Inc/tim.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Mic_ADC_DAC/Inc/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Mic_ADC_DAC/Inc/usart.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Mic_ADC_DAC/Mic_ADC_DAC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Mic_ADC_DAC/Mic_ADC_DAC.jpg -------------------------------------------------------------------------------- /NUCLEO-L476RG/Mic_ADC_DAC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Mic_ADC_DAC/README.md -------------------------------------------------------------------------------- /NUCLEO-L476RG/Mic_ADC_DAC/STM32L476RG_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Mic_ADC_DAC/STM32L476RG_FLASH.ld -------------------------------------------------------------------------------- /NUCLEO-L476RG/Mic_ADC_DAC/Src/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Mic_ADC_DAC/Src/adc.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/Mic_ADC_DAC/Src/dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Mic_ADC_DAC/Src/dac.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/Mic_ADC_DAC/Src/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Mic_ADC_DAC/Src/dma.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/Mic_ADC_DAC/Src/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Mic_ADC_DAC/Src/gpio.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/Mic_ADC_DAC/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Mic_ADC_DAC/Src/main.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/Mic_ADC_DAC/Src/stm32l4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Mic_ADC_DAC/Src/stm32l4xx_hal_msp.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/Mic_ADC_DAC/Src/stm32l4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Mic_ADC_DAC/Src/stm32l4xx_it.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/Mic_ADC_DAC/Src/system_stm32l4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Mic_ADC_DAC/Src/system_stm32l4xx.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/Mic_ADC_DAC/Src/tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Mic_ADC_DAC/Src/tim.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/Mic_ADC_DAC/Src/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Mic_ADC_DAC/Src/usart.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/Mic_ADC_DAC/mic_adc_dac.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Mic_ADC_DAC/mic_adc_dac.ioc -------------------------------------------------------------------------------- /NUCLEO-L476RG/Mic_ADC_DAC/startup/startup_stm32l476xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Mic_ADC_DAC/startup/startup_stm32l476xx.s -------------------------------------------------------------------------------- /NUCLEO-L476RG/NFC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/NFC/README.md -------------------------------------------------------------------------------- /NUCLEO-L476RG/NFC/stm32/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/NFC/stm32/.cproject -------------------------------------------------------------------------------- /NUCLEO-L476RG/NFC/stm32/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /NUCLEO-L476RG/NFC/stm32/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/NFC/stm32/.mxproject -------------------------------------------------------------------------------- /NUCLEO-L476RG/NFC/stm32/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/NFC/stm32/.project -------------------------------------------------------------------------------- /NUCLEO-L476RG/NFC/stm32/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/NFC/stm32/.settings/language.settings.xml -------------------------------------------------------------------------------- /NUCLEO-L476RG/NFC/stm32/Drivers/BSP/NFC04A1/nfc04a1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/NFC/stm32/Drivers/BSP/NFC04A1/nfc04a1.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/NFC/stm32/Drivers/BSP/NFC04A1/nfc04a1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/NFC/stm32/Drivers/BSP/NFC04A1/nfc04a1.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/NFC/stm32/Dynamic_NFC_tag_l476rg.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/NFC/stm32/Dynamic_NFC_tag_l476rg.ioc -------------------------------------------------------------------------------- /NUCLEO-L476RG/NFC/stm32/Inc/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/NFC/stm32/Inc/RTE_Components.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/NFC/stm32/Inc/app_nfc_uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/NFC/stm32/Inc/app_nfc_uri.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/NFC/stm32/Inc/app_x-cube-nfc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/NFC/stm32/Inc/app_x-cube-nfc4.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/NFC/stm32/Inc/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/NFC/stm32/Inc/common.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/NFC/stm32/Inc/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/NFC/stm32/Inc/gpio.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/NFC/stm32/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/NFC/stm32/Inc/main.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/NFC/stm32/Inc/nfc04a1_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/NFC/stm32/Inc/nfc04a1_conf.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/NFC/stm32/Inc/stm32l4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/NFC/stm32/Inc/stm32l4xx_hal_conf.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/NFC/stm32/Inc/stm32l4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/NFC/stm32/Inc/stm32l4xx_it.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/NFC/stm32/Inc/stm32l4xx_nucleo_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/NFC/stm32/Inc/stm32l4xx_nucleo_bus.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/NFC/stm32/Inc/stm32l4xx_nucleo_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/NFC/stm32/Inc/stm32l4xx_nucleo_conf.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/NFC/stm32/Inc/stm32l4xx_nucleo_errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/NFC/stm32/Inc/stm32l4xx_nucleo_errno.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/NFC/stm32/Inc/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/NFC/stm32/Inc/usart.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/NFC/stm32/STM32L476RGTX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/NFC/stm32/STM32L476RGTX_FLASH.ld -------------------------------------------------------------------------------- /NUCLEO-L476RG/NFC/stm32/STM32L476RGTX_RAM.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/NFC/stm32/STM32L476RGTX_RAM.ld -------------------------------------------------------------------------------- /NUCLEO-L476RG/NFC/stm32/Src/app_nfc_uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/NFC/stm32/Src/app_nfc_uri.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/NFC/stm32/Src/app_x-cube-nfc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/NFC/stm32/Src/app_x-cube-nfc4.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/NFC/stm32/Src/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/NFC/stm32/Src/gpio.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/NFC/stm32/Src/lib_NDEF_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/NFC/stm32/Src/lib_NDEF_config.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/NFC/stm32/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/NFC/stm32/Src/main.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/NFC/stm32/Src/stm32l4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/NFC/stm32/Src/stm32l4xx_hal_msp.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/NFC/stm32/Src/stm32l4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/NFC/stm32/Src/stm32l4xx_it.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/NFC/stm32/Src/stm32l4xx_nucleo_bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/NFC/stm32/Src/stm32l4xx_nucleo_bus.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/NFC/stm32/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/NFC/stm32/Src/syscalls.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/NFC/stm32/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/NFC/stm32/Src/sysmem.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/NFC/stm32/Src/system_stm32l4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/NFC/stm32/Src/system_stm32l4xx.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/NFC/stm32/Src/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/NFC/stm32/Src/usart.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/NFC/stm32/Startup/startup_stm32l476rgtx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/NFC/stm32/Startup/startup_stm32l476rgtx.s -------------------------------------------------------------------------------- /NUCLEO-L476RG/Sound_Effector/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /NUCLEO-L476RG/Sound_Effector/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Sound_Effector/.mxproject -------------------------------------------------------------------------------- /NUCLEO-L476RG/Sound_Effector/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Sound_Effector/.project -------------------------------------------------------------------------------- /NUCLEO-L476RG/Sound_Effector/Inc/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Sound_Effector/Inc/dac.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Sound_Effector/Inc/dfsdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Sound_Effector/Inc/dfsdm.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Sound_Effector/Inc/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Sound_Effector/Inc/dma.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Sound_Effector/Inc/effector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Sound_Effector/Inc/effector.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Sound_Effector/Inc/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Sound_Effector/Inc/gpio.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Sound_Effector/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Sound_Effector/Inc/main.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Sound_Effector/Inc/stm32l4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Sound_Effector/Inc/stm32l4xx_hal_conf.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Sound_Effector/Inc/stm32l4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Sound_Effector/Inc/stm32l4xx_it.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Sound_Effector/Inc/tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Sound_Effector/Inc/tim.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Sound_Effector/Inc/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Sound_Effector/Inc/usart.h -------------------------------------------------------------------------------- /NUCLEO-L476RG/Sound_Effector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Sound_Effector/README.md -------------------------------------------------------------------------------- /NUCLEO-L476RG/Sound_Effector/SB21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Sound_Effector/SB21.jpg -------------------------------------------------------------------------------- /NUCLEO-L476RG/Sound_Effector/STM32L476RG_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Sound_Effector/STM32L476RG_FLASH.ld -------------------------------------------------------------------------------- /NUCLEO-L476RG/Sound_Effector/Src/dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Sound_Effector/Src/dac.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/Sound_Effector/Src/dfsdm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Sound_Effector/Src/dfsdm.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/Sound_Effector/Src/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Sound_Effector/Src/dma.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/Sound_Effector/Src/effector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Sound_Effector/Src/effector.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/Sound_Effector/Src/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Sound_Effector/Src/gpio.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/Sound_Effector/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Sound_Effector/Src/main.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/Sound_Effector/Src/stm32l4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Sound_Effector/Src/stm32l4xx_hal_msp.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/Sound_Effector/Src/stm32l4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Sound_Effector/Src/stm32l4xx_it.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/Sound_Effector/Src/system_stm32l4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Sound_Effector/Src/system_stm32l4xx.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/Sound_Effector/Src/tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Sound_Effector/Src/tim.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/Sound_Effector/Src/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Sound_Effector/Src/usart.c -------------------------------------------------------------------------------- /NUCLEO-L476RG/Sound_Effector/sound_effector.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/NUCLEO-L476RG/Sound_Effector/sound_effector.ioc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/README.md -------------------------------------------------------------------------------- /STM32F4-Discovery/AudioWeaver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/AudioWeaver/README.md -------------------------------------------------------------------------------- /STM32F4-Discovery/AudioWeaver/screenshot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/AudioWeaver/screenshot1.jpg -------------------------------------------------------------------------------- /STM32F4-Discovery/AudioWeaver/usb_audio_graphic_eq.awd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/AudioWeaver/usb_audio_graphic_eq.awd -------------------------------------------------------------------------------- /STM32F4-Discovery/BlueSwitch/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /STM32F4-Discovery/BlueSwitch/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/BlueSwitch/.mxproject -------------------------------------------------------------------------------- /STM32F4-Discovery/BlueSwitch/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/BlueSwitch/.project -------------------------------------------------------------------------------- /STM32F4-Discovery/BlueSwitch/BlueSwitch.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/BlueSwitch/BlueSwitch.ioc -------------------------------------------------------------------------------- /STM32F4-Discovery/BlueSwitch/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/BlueSwitch/Inc/main.h -------------------------------------------------------------------------------- /STM32F4-Discovery/BlueSwitch/Inc/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/BlueSwitch/Inc/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /STM32F4-Discovery/BlueSwitch/Inc/stm32f4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/BlueSwitch/Inc/stm32f4xx_it.h -------------------------------------------------------------------------------- /STM32F4-Discovery/BlueSwitch/Inc/usb_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/BlueSwitch/Inc/usb_host.h -------------------------------------------------------------------------------- /STM32F4-Discovery/BlueSwitch/Inc/usbh_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/BlueSwitch/Inc/usbh_conf.h -------------------------------------------------------------------------------- /STM32F4-Discovery/BlueSwitch/Inc/usbh_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/BlueSwitch/Inc/usbh_platform.h -------------------------------------------------------------------------------- /STM32F4-Discovery/BlueSwitch/STM32F407VG_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/BlueSwitch/STM32F407VG_FLASH.ld -------------------------------------------------------------------------------- /STM32F4-Discovery/BlueSwitch/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/BlueSwitch/Src/main.c -------------------------------------------------------------------------------- /STM32F4-Discovery/BlueSwitch/Src/stm32f4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/BlueSwitch/Src/stm32f4xx_hal_msp.c -------------------------------------------------------------------------------- /STM32F4-Discovery/BlueSwitch/Src/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/BlueSwitch/Src/stm32f4xx_it.c -------------------------------------------------------------------------------- /STM32F4-Discovery/BlueSwitch/Src/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/BlueSwitch/Src/system_stm32f4xx.c -------------------------------------------------------------------------------- /STM32F4-Discovery/BlueSwitch/Src/usb_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/BlueSwitch/Src/usb_host.c -------------------------------------------------------------------------------- /STM32F4-Discovery/BlueSwitch/Src/usbh_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/BlueSwitch/Src/usbh_conf.c -------------------------------------------------------------------------------- /STM32F4-Discovery/BlueSwitch/Src/usbh_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/BlueSwitch/Src/usbh_platform.c -------------------------------------------------------------------------------- /STM32F4-Discovery/BlueSwitch/mx.scratch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/BlueSwitch/mx.scratch -------------------------------------------------------------------------------- /STM32F4-Discovery/Camera/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/Camera/README.md -------------------------------------------------------------------------------- /STM32F4-Discovery/Camera/camera_board.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/Camera/camera_board.jpg -------------------------------------------------------------------------------- /STM32F4-Discovery/Camera/python/doll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/Camera/python/doll.png -------------------------------------------------------------------------------- /STM32F4-Discovery/Camera/python/doll_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/Camera/python/doll_128x128.png -------------------------------------------------------------------------------- /STM32F4-Discovery/Camera/python/doll_128x128_diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/Camera/python/doll_128x128_diff.png -------------------------------------------------------------------------------- /STM32F4-Discovery/Camera/python/doll_32x32_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/Camera/python/doll_32x32_gray.png -------------------------------------------------------------------------------- /STM32F4-Discovery/Camera/python/hand_32x32_edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/Camera/python/hand_32x32_edge.png -------------------------------------------------------------------------------- /STM32F4-Discovery/Camera/python/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/Camera/python/image.py -------------------------------------------------------------------------------- /STM32F4-Discovery/Camera/python/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/Camera/python/interface.py -------------------------------------------------------------------------------- /STM32F4-Discovery/Camera/python/me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/Camera/python/me.png -------------------------------------------------------------------------------- /STM32F4-Discovery/Camera/python/run_128.bat: -------------------------------------------------------------------------------- 1 | python viewer.py -s m COM13 2 | -------------------------------------------------------------------------------- /STM32F4-Discovery/Camera/python/run_128_diff.bat: -------------------------------------------------------------------------------- 1 | python viewer.py -s m -e d COM13 2 | -------------------------------------------------------------------------------- /STM32F4-Discovery/Camera/python/run_32.bat: -------------------------------------------------------------------------------- 1 | python viewer.py -s s COM13 2 | -------------------------------------------------------------------------------- /STM32F4-Discovery/Camera/python/run_32_diff.bat: -------------------------------------------------------------------------------- 1 | python viewer.py -s s -e d COM13 2 | -------------------------------------------------------------------------------- /STM32F4-Discovery/Camera/python/run_32_edge.bat: -------------------------------------------------------------------------------- 1 | python viewer.py -s s -e e COM13 2 | -------------------------------------------------------------------------------- /STM32F4-Discovery/Camera/python/run_32_gray.bat: -------------------------------------------------------------------------------- 1 | python viewer.py -s s -e g COM13 2 | -------------------------------------------------------------------------------- /STM32F4-Discovery/Camera/python/run_qcif.bat: -------------------------------------------------------------------------------- 1 | python viewer.py -s q COM13 2 | -------------------------------------------------------------------------------- /STM32F4-Discovery/Camera/python/viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/Camera/python/viewer.py -------------------------------------------------------------------------------- /STM32F4-Discovery/Camera/stm32/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /STM32F4-Discovery/Camera/stm32/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/Camera/stm32/.mxproject -------------------------------------------------------------------------------- /STM32F4-Discovery/Camera/stm32/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/Camera/stm32/.project -------------------------------------------------------------------------------- /STM32F4-Discovery/Camera/stm32/Camera.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/Camera/stm32/Camera.ioc -------------------------------------------------------------------------------- /STM32F4-Discovery/Camera/stm32/Inc/dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/Camera/stm32/Inc/dct.h -------------------------------------------------------------------------------- /STM32F4-Discovery/Camera/stm32/Inc/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/Camera/stm32/Inc/image.h -------------------------------------------------------------------------------- /STM32F4-Discovery/Camera/stm32/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/Camera/stm32/Inc/main.h -------------------------------------------------------------------------------- /STM32F4-Discovery/Camera/stm32/Inc/ov7670.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/Camera/stm32/Inc/ov7670.h -------------------------------------------------------------------------------- /STM32F4-Discovery/Camera/stm32/Inc/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/Camera/stm32/Inc/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /STM32F4-Discovery/Camera/stm32/Inc/stm32f4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/Camera/stm32/Inc/stm32f4xx_it.h -------------------------------------------------------------------------------- /STM32F4-Discovery/Camera/stm32/STM32F407VG_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/Camera/stm32/STM32F407VG_FLASH.ld -------------------------------------------------------------------------------- /STM32F4-Discovery/Camera/stm32/Src/dct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/Camera/stm32/Src/dct.c -------------------------------------------------------------------------------- /STM32F4-Discovery/Camera/stm32/Src/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/Camera/stm32/Src/image.c -------------------------------------------------------------------------------- /STM32F4-Discovery/Camera/stm32/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/Camera/stm32/Src/main.c -------------------------------------------------------------------------------- /STM32F4-Discovery/Camera/stm32/Src/ov7670.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/Camera/stm32/Src/ov7670.c -------------------------------------------------------------------------------- /STM32F4-Discovery/Camera/stm32/Src/stm32f4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/Camera/stm32/Src/stm32f4xx_hal_msp.c -------------------------------------------------------------------------------- /STM32F4-Discovery/Camera/stm32/Src/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/Camera/stm32/Src/stm32f4xx_it.c -------------------------------------------------------------------------------- /STM32F4-Discovery/Camera/stm32/Src/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/Camera/stm32/Src/system_stm32f4xx.c -------------------------------------------------------------------------------- /STM32F4-Discovery/Camera/stm32/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/Camera/stm32/syscalls.c -------------------------------------------------------------------------------- /STM32F4-Discovery/HelloWorld/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /STM32F4-Discovery/HelloWorld/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/HelloWorld/.mxproject -------------------------------------------------------------------------------- /STM32F4-Discovery/HelloWorld/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/HelloWorld/.project -------------------------------------------------------------------------------- /STM32F4-Discovery/HelloWorld/HelloWorld.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/HelloWorld/HelloWorld.ioc -------------------------------------------------------------------------------- /STM32F4-Discovery/HelloWorld/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/HelloWorld/Inc/main.h -------------------------------------------------------------------------------- /STM32F4-Discovery/HelloWorld/Inc/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/HelloWorld/Inc/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /STM32F4-Discovery/HelloWorld/Inc/stm32f4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/HelloWorld/Inc/stm32f4xx_it.h -------------------------------------------------------------------------------- /STM32F4-Discovery/HelloWorld/Inc/usb_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/HelloWorld/Inc/usb_host.h -------------------------------------------------------------------------------- /STM32F4-Discovery/HelloWorld/Inc/usbh_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/HelloWorld/Inc/usbh_conf.h -------------------------------------------------------------------------------- /STM32F4-Discovery/HelloWorld/Inc/usbh_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/HelloWorld/Inc/usbh_platform.h -------------------------------------------------------------------------------- /STM32F4-Discovery/HelloWorld/STM32F407VG_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/HelloWorld/STM32F407VG_FLASH.ld -------------------------------------------------------------------------------- /STM32F4-Discovery/HelloWorld/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/HelloWorld/Src/main.c -------------------------------------------------------------------------------- /STM32F4-Discovery/HelloWorld/Src/stm32f4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/HelloWorld/Src/stm32f4xx_hal_msp.c -------------------------------------------------------------------------------- /STM32F4-Discovery/HelloWorld/Src/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/HelloWorld/Src/stm32f4xx_it.c -------------------------------------------------------------------------------- /STM32F4-Discovery/HelloWorld/Src/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/HelloWorld/Src/system_stm32f4xx.c -------------------------------------------------------------------------------- /STM32F4-Discovery/HelloWorld/Src/usb_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/HelloWorld/Src/usb_host.c -------------------------------------------------------------------------------- /STM32F4-Discovery/HelloWorld/Src/usbh_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/HelloWorld/Src/usbh_conf.c -------------------------------------------------------------------------------- /STM32F4-Discovery/HelloWorld/Src/usbh_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/HelloWorld/Src/usbh_platform.c -------------------------------------------------------------------------------- /STM32F4-Discovery/HelloWorld/mx.scratch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/HelloWorld/mx.scratch -------------------------------------------------------------------------------- /STM32F4-Discovery/LED_blinking/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /STM32F4-Discovery/LED_blinking/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/LED_blinking/.mxproject -------------------------------------------------------------------------------- /STM32F4-Discovery/LED_blinking/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/LED_blinking/.project -------------------------------------------------------------------------------- /STM32F4-Discovery/LED_blinking/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/LED_blinking/Inc/main.h -------------------------------------------------------------------------------- /STM32F4-Discovery/LED_blinking/Inc/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/LED_blinking/Inc/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /STM32F4-Discovery/LED_blinking/Inc/stm32f4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/LED_blinking/Inc/stm32f4xx_it.h -------------------------------------------------------------------------------- /STM32F4-Discovery/LED_blinking/Inc/usb_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/LED_blinking/Inc/usb_host.h -------------------------------------------------------------------------------- /STM32F4-Discovery/LED_blinking/Inc/usbh_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/LED_blinking/Inc/usbh_conf.h -------------------------------------------------------------------------------- /STM32F4-Discovery/LED_blinking/Inc/usbh_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/LED_blinking/Inc/usbh_platform.h -------------------------------------------------------------------------------- /STM32F4-Discovery/LED_blinking/LED_blinking.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/LED_blinking/LED_blinking.ioc -------------------------------------------------------------------------------- /STM32F4-Discovery/LED_blinking/STM32F407VG_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/LED_blinking/STM32F407VG_FLASH.ld -------------------------------------------------------------------------------- /STM32F4-Discovery/LED_blinking/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/LED_blinking/Src/main.c -------------------------------------------------------------------------------- /STM32F4-Discovery/LED_blinking/Src/stm32f4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/LED_blinking/Src/stm32f4xx_hal_msp.c -------------------------------------------------------------------------------- /STM32F4-Discovery/LED_blinking/Src/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/LED_blinking/Src/stm32f4xx_it.c -------------------------------------------------------------------------------- /STM32F4-Discovery/LED_blinking/Src/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/LED_blinking/Src/system_stm32f4xx.c -------------------------------------------------------------------------------- /STM32F4-Discovery/LED_blinking/Src/usb_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/LED_blinking/Src/usb_host.c -------------------------------------------------------------------------------- /STM32F4-Discovery/LED_blinking/Src/usbh_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/LED_blinking/Src/usbh_conf.c -------------------------------------------------------------------------------- /STM32F4-Discovery/LED_blinking/Src/usbh_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/LED_blinking/Src/usbh_platform.c -------------------------------------------------------------------------------- /STM32F4-Discovery/LED_blinking/mx.scratch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/LED_blinking/mx.scratch -------------------------------------------------------------------------------- /STM32F4-Discovery/PWM-output/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /STM32F4-Discovery/PWM-output/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/PWM-output/.mxproject -------------------------------------------------------------------------------- /STM32F4-Discovery/PWM-output/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/PWM-output/.project -------------------------------------------------------------------------------- /STM32F4-Discovery/PWM-output/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/PWM-output/Inc/main.h -------------------------------------------------------------------------------- /STM32F4-Discovery/PWM-output/Inc/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/PWM-output/Inc/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /STM32F4-Discovery/PWM-output/Inc/stm32f4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/PWM-output/Inc/stm32f4xx_it.h -------------------------------------------------------------------------------- /STM32F4-Discovery/PWM-output/Inc/usb_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/PWM-output/Inc/usb_host.h -------------------------------------------------------------------------------- /STM32F4-Discovery/PWM-output/Inc/usbh_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/PWM-output/Inc/usbh_conf.h -------------------------------------------------------------------------------- /STM32F4-Discovery/PWM-output/Inc/usbh_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/PWM-output/Inc/usbh_platform.h -------------------------------------------------------------------------------- /STM32F4-Discovery/PWM-output/PWM-output.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/PWM-output/PWM-output.ioc -------------------------------------------------------------------------------- /STM32F4-Discovery/PWM-output/STM32F407VG_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/PWM-output/STM32F407VG_FLASH.ld -------------------------------------------------------------------------------- /STM32F4-Discovery/PWM-output/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/PWM-output/Src/main.c -------------------------------------------------------------------------------- /STM32F4-Discovery/PWM-output/Src/stm32f4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/PWM-output/Src/stm32f4xx_hal_msp.c -------------------------------------------------------------------------------- /STM32F4-Discovery/PWM-output/Src/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/PWM-output/Src/stm32f4xx_it.c -------------------------------------------------------------------------------- /STM32F4-Discovery/PWM-output/Src/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/PWM-output/Src/system_stm32f4xx.c -------------------------------------------------------------------------------- /STM32F4-Discovery/PWM-output/Src/usb_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/PWM-output/Src/usb_host.c -------------------------------------------------------------------------------- /STM32F4-Discovery/PWM-output/Src/usbh_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/PWM-output/Src/usbh_conf.c -------------------------------------------------------------------------------- /STM32F4-Discovery/PWM-output/Src/usbh_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/PWM-output/Src/usbh_platform.c -------------------------------------------------------------------------------- /STM32F4-Discovery/PWM-output/mx.scratch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/STM32F4-Discovery/PWM-output/mx.scratch -------------------------------------------------------------------------------- /analog_filter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/analog_filter/README.md -------------------------------------------------------------------------------- /analog_filter/analog_filter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/analog_filter/analog_filter.jpg -------------------------------------------------------------------------------- /analog_filter/kicad/dac2earphone-B.Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/analog_filter/kicad/dac2earphone-B.Cu.gbr -------------------------------------------------------------------------------- /analog_filter/kicad/dac2earphone-B.SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/analog_filter/kicad/dac2earphone-B.SilkS.gbr -------------------------------------------------------------------------------- /analog_filter/kicad/dac2earphone-F.Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/analog_filter/kicad/dac2earphone-F.Cu.gbr -------------------------------------------------------------------------------- /analog_filter/kicad/dac2earphone-F.SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/analog_filter/kicad/dac2earphone-F.SilkS.gbr -------------------------------------------------------------------------------- /analog_filter/kicad/dac2earphone.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/analog_filter/kicad/dac2earphone.kicad_pcb -------------------------------------------------------------------------------- /analog_filter/kicad/dac2earphone.kicad_pcb-bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/analog_filter/kicad/dac2earphone.kicad_pcb-bak -------------------------------------------------------------------------------- /analog_filter/kicad/dac2earphone.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/analog_filter/kicad/dac2earphone.net -------------------------------------------------------------------------------- /analog_filter/kicad/dac2earphone.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/analog_filter/kicad/dac2earphone.pdf -------------------------------------------------------------------------------- /analog_filter/kicad/dac2earphone.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/analog_filter/kicad/dac2earphone.pro -------------------------------------------------------------------------------- /analog_filter/kicad/dac2earphone.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/analog_filter/kicad/dac2earphone.sch -------------------------------------------------------------------------------- /analog_filter/kicad/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/analog_filter/kicad/fp-lib-table -------------------------------------------------------------------------------- /analog_filter/kicad/mcu.pretty/Capacitor.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/analog_filter/kicad/mcu.pretty/Capacitor.kicad_mod -------------------------------------------------------------------------------- /analog_filter/kicad/mcu.pretty/LED.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/analog_filter/kicad/mcu.pretty/LED.kicad_mod -------------------------------------------------------------------------------- /analog_filter/kicad/mcu.pretty/Pin Header 10P.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/analog_filter/kicad/mcu.pretty/Pin Header 10P.kicad_mod -------------------------------------------------------------------------------- /analog_filter/kicad/mcu.pretty/Pin Header 2P.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/analog_filter/kicad/mcu.pretty/Pin Header 2P.kicad_mod -------------------------------------------------------------------------------- /analog_filter/kicad/mcu.pretty/Pin Header 4P.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/analog_filter/kicad/mcu.pretty/Pin Header 4P.kicad_mod -------------------------------------------------------------------------------- /analog_filter/kicad/mcu.pretty/Pin Header 6P.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/analog_filter/kicad/mcu.pretty/Pin Header 6P.kicad_mod -------------------------------------------------------------------------------- /analog_filter/kicad/mcu.pretty/Pin Header 8P.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/analog_filter/kicad/mcu.pretty/Pin Header 8P.kicad_mod -------------------------------------------------------------------------------- /analog_filter/kicad/mcu.pretty/Pin_Header_3P.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/analog_filter/kicad/mcu.pretty/Pin_Header_3P.kicad_mod -------------------------------------------------------------------------------- /analog_filter/kicad/mcu.pretty/Register.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/analog_filter/kicad/mcu.pretty/Register.kicad_mod -------------------------------------------------------------------------------- /analog_filter/kicad/mcu.pretty/Tactile switch 4P.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /analog_filter/kicad/mcu.pretty/pin-socket-4p.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/analog_filter/kicad/mcu.pretty/pin-socket-4p.kicad_mod -------------------------------------------------------------------------------- /analog_filter/kicad/mcu.pretty/pin_socket_10P.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/analog_filter/kicad/mcu.pretty/pin_socket_10P.kicad_mod -------------------------------------------------------------------------------- /analog_filter/kicad/mcu.pretty/tactile-sw-4p.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/analog_filter/kicad/mcu.pretty/tactile-sw-4p.kicad_mod -------------------------------------------------------------------------------- /analog_filter/ltspice/LPF_HPF_for_DAC_and_earphone.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/analog_filter/ltspice/LPF_HPF_for_DAC_and_earphone.asc -------------------------------------------------------------------------------- /analog_filter/ltspice/LPF_HPF_for_DAC_and_earphone.fft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/analog_filter/ltspice/LPF_HPF_for_DAC_and_earphone.fft -------------------------------------------------------------------------------- /analog_filter/ltspice/LPF_HPF_for_DAC_and_earphone.imp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/analog_filter/ltspice/LPF_HPF_for_DAC_and_earphone.imp -------------------------------------------------------------------------------- /analog_filter/ltspice/LPF_HPF_for_DAC_and_earphone.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/analog_filter/ltspice/LPF_HPF_for_DAC_and_earphone.log -------------------------------------------------------------------------------- /analog_filter/ltspice/LPF_HPF_for_DAC_and_earphone.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/analog_filter/ltspice/LPF_HPF_for_DAC_and_earphone.pdf -------------------------------------------------------------------------------- /analog_filter/ltspice/LPF_HPF_for_DAC_and_earphone.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/analog_filter/ltspice/LPF_HPF_for_DAC_and_earphone.raw -------------------------------------------------------------------------------- /analog_filter/sine_wave_input.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/analog_filter/sine_wave_input.BMP -------------------------------------------------------------------------------- /analog_filter/sine_wave_output.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/analog_filter/sine_wave_output.BMP -------------------------------------------------------------------------------- /doc/PWM_waveform.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/doc/PWM_waveform.jpg -------------------------------------------------------------------------------- /doc/STM32F4_Discovery_UART.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/doc/STM32F4_Discovery_UART.jpg -------------------------------------------------------------------------------- /tips/CMSIS_DSP_RFFT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/tips/CMSIS_DSP_RFFT.md -------------------------------------------------------------------------------- /tips/ENABLE_DSP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/tips/ENABLE_DSP.md -------------------------------------------------------------------------------- /tips/ENABLE_PRINTF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/tips/ENABLE_PRINTF.md -------------------------------------------------------------------------------- /tips/RESOLUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/araobp/stm32-mcu/HEAD/tips/RESOLUTION.md --------------------------------------------------------------------------------