Trinity Devboard PCB V1.0 Firmware. FreeRTOS is setup and the MCU reads IMU data over SPI fand Magnetometer data over I2C, each with a seperate task. Sensordata is then run though MadgwickAHRS and send over USB as serial packet data to use in trinity visualizer. Bare minimum functionality works and is replicated from the first prototype.
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
################################################################################
|
||||
# Automatically-generated file. Do not edit!
|
||||
# Toolchain: GNU Tools for STM32 (14.3.rel1)
|
||||
################################################################################
|
||||
|
||||
# Add inputs and outputs from these tool invocations to the build variables
|
||||
C_SRCS += \
|
||||
../USB_Device/App/usb_device.c \
|
||||
../USB_Device/App/usbd_cdc_if.c \
|
||||
../USB_Device/App/usbd_desc.c
|
||||
|
||||
OBJS += \
|
||||
./USB_Device/App/usb_device.o \
|
||||
./USB_Device/App/usbd_cdc_if.o \
|
||||
./USB_Device/App/usbd_desc.o
|
||||
|
||||
C_DEPS += \
|
||||
./USB_Device/App/usb_device.d \
|
||||
./USB_Device/App/usbd_cdc_if.d \
|
||||
./USB_Device/App/usbd_desc.d
|
||||
|
||||
|
||||
# Each subdirectory must supply rules for building sources it contributes
|
||||
USB_Device/App/%.o USB_Device/App/%.su USB_Device/App/%.cyclo: ../USB_Device/App/%.c USB_Device/App/subdir.mk
|
||||
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32WB55xx -c -I../Core/Inc -I../USB_Device/App -I../USB_Device/Target -I../Drivers/STM32WBxx_HAL_Driver/Inc -I../Drivers/STM32WBxx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/RTOS2/Include -I../Middlewares/ST/STM32_USB_Device_Library/Core/Inc -I../Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc -I../Drivers/CMSIS/Device/ST/STM32WBxx/Include -I../Drivers/CMSIS/Include -I../STM32_WPAN/App -I../Utilities/lpm/tiny_lpm -I../Middlewares/ST/STM32_WPAN -I../Middlewares/ST/STM32_WPAN/interface/patterns/ble_thread -I../Middlewares/ST/STM32_WPAN/interface/patterns/ble_thread/tl -I../Middlewares/ST/STM32_WPAN/interface/patterns/ble_thread/shci -I../Middlewares/ST/STM32_WPAN/utilities -I../Middlewares/ST/STM32_WPAN/ble/core -I../Middlewares/ST/STM32_WPAN/ble/core/auto -I../Middlewares/ST/STM32_WPAN/ble/core/template -I../Middlewares/ST/STM32_WPAN/ble/svc/Inc -I../Middlewares/ST/STM32_WPAN/ble/svc/Src -I../Middlewares/ST/STM32_WPAN/ble -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
|
||||
clean: clean-USB_Device-2f-App
|
||||
|
||||
clean-USB_Device-2f-App:
|
||||
-$(RM) ./USB_Device/App/usb_device.cyclo ./USB_Device/App/usb_device.d ./USB_Device/App/usb_device.o ./USB_Device/App/usb_device.su ./USB_Device/App/usbd_cdc_if.cyclo ./USB_Device/App/usbd_cdc_if.d ./USB_Device/App/usbd_cdc_if.o ./USB_Device/App/usbd_cdc_if.su ./USB_Device/App/usbd_desc.cyclo ./USB_Device/App/usbd_desc.d ./USB_Device/App/usbd_desc.o ./USB_Device/App/usbd_desc.su
|
||||
|
||||
.PHONY: clean-USB_Device-2f-App
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
../USB_Device/App/usb_device.c:66:6:MX_USB_Device_Init 5
|
||||
@@ -0,0 +1,115 @@
|
||||
USB_Device/App/usb_device.o: ../USB_Device/App/usb_device.c \
|
||||
../USB_Device/App/usb_device.h \
|
||||
../Drivers/CMSIS/Device/ST/STM32WBxx/Include/stm32wbxx.h \
|
||||
../Drivers/CMSIS/Device/ST/STM32WBxx/Include/stm32wb55xx.h \
|
||||
../Drivers/CMSIS/Include/core_cm4.h \
|
||||
../Drivers/CMSIS/Include/cmsis_version.h \
|
||||
../Drivers/CMSIS/Include/cmsis_compiler.h \
|
||||
../Drivers/CMSIS/Include/cmsis_gcc.h \
|
||||
../Drivers/CMSIS/Include/mpu_armv7.h \
|
||||
../Drivers/CMSIS/Device/ST/STM32WBxx/Include/system_stm32wbxx.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal.h \
|
||||
../Core/Inc/stm32wbxx_hal_conf.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_dma.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_def.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_dma.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_dmamux.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_dma_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_cortex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_exti.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_flash.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_flash_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_gpio.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_gpio_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_hsem.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_i2c.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_i2c_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_ipcc.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_pcd.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_usb.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_pcd_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_pwr.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_pwr.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_exti.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_pwr_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_rcc.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_rcc.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_bus.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_rcc_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_crs.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_rtc.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_rtc_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_spi.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_spi_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_tim.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_tim_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_system.h \
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h \
|
||||
../USB_Device/Target/usbd_conf.h \
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h \
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h \
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h \
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h \
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h \
|
||||
../USB_Device/App/usbd_desc.h \
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc/usbd_cdc.h \
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h \
|
||||
../USB_Device/App/usbd_cdc_if.h
|
||||
../USB_Device/App/usb_device.h:
|
||||
../Drivers/CMSIS/Device/ST/STM32WBxx/Include/stm32wbxx.h:
|
||||
../Drivers/CMSIS/Device/ST/STM32WBxx/Include/stm32wb55xx.h:
|
||||
../Drivers/CMSIS/Include/core_cm4.h:
|
||||
../Drivers/CMSIS/Include/cmsis_version.h:
|
||||
../Drivers/CMSIS/Include/cmsis_compiler.h:
|
||||
../Drivers/CMSIS/Include/cmsis_gcc.h:
|
||||
../Drivers/CMSIS/Include/mpu_armv7.h:
|
||||
../Drivers/CMSIS/Device/ST/STM32WBxx/Include/system_stm32wbxx.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal.h:
|
||||
../Core/Inc/stm32wbxx_hal_conf.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_dma.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_def.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_dma.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_dmamux.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_dma_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_cortex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_exti.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_flash.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_flash_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_gpio.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_gpio_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_hsem.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_i2c.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_i2c_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_ipcc.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_pcd.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_usb.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_pcd_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_pwr.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_pwr.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_exti.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_pwr_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_rcc.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_rcc.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_bus.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_rcc_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_crs.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_rtc.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_rtc_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_spi.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_spi_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_tim.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_tim_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_system.h:
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h:
|
||||
../USB_Device/Target/usbd_conf.h:
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h:
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h:
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h:
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h:
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h:
|
||||
../USB_Device/App/usbd_desc.h:
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc/usbd_cdc.h:
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h:
|
||||
../USB_Device/App/usbd_cdc_if.h:
|
||||
Binary file not shown.
@@ -0,0 +1 @@
|
||||
../USB_Device/App/usb_device.c:66:6:MX_USB_Device_Init 8 static
|
||||
@@ -0,0 +1,6 @@
|
||||
../USB_Device/App/usbd_cdc_if.c:152:15:CDC_Init_FS 1
|
||||
../USB_Device/App/usbd_cdc_if.c:166:15:CDC_DeInit_FS 1
|
||||
../USB_Device/App/usbd_cdc_if.c:180:15:CDC_Control_FS 1
|
||||
../USB_Device/App/usbd_cdc_if.c:261:15:CDC_Receive_FS 1
|
||||
../USB_Device/App/usbd_cdc_if.c:281:9:CDC_Transmit_FS 2
|
||||
../USB_Device/App/usbd_cdc_if.c:307:15:CDC_TransmitCplt_FS 1
|
||||
@@ -0,0 +1,107 @@
|
||||
USB_Device/App/usbd_cdc_if.o: ../USB_Device/App/usbd_cdc_if.c \
|
||||
../USB_Device/App/usbd_cdc_if.h \
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc/usbd_cdc.h \
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h \
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h \
|
||||
../USB_Device/Target/usbd_conf.h \
|
||||
../Drivers/CMSIS/Device/ST/STM32WBxx/Include/stm32wbxx.h \
|
||||
../Drivers/CMSIS/Device/ST/STM32WBxx/Include/stm32wb55xx.h \
|
||||
../Drivers/CMSIS/Include/core_cm4.h \
|
||||
../Drivers/CMSIS/Include/cmsis_version.h \
|
||||
../Drivers/CMSIS/Include/cmsis_compiler.h \
|
||||
../Drivers/CMSIS/Include/cmsis_gcc.h \
|
||||
../Drivers/CMSIS/Include/mpu_armv7.h \
|
||||
../Drivers/CMSIS/Device/ST/STM32WBxx/Include/system_stm32wbxx.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal.h \
|
||||
../Core/Inc/stm32wbxx_hal_conf.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_dma.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_def.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_dma.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_dmamux.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_dma_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_cortex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_exti.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_flash.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_flash_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_gpio.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_gpio_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_hsem.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_i2c.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_i2c_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_ipcc.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_pcd.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_usb.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_pcd_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_pwr.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_pwr.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_exti.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_pwr_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_rcc.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_rcc.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_bus.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_rcc_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_crs.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_rtc.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_rtc_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_spi.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_spi_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_tim.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_tim_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_system.h \
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h \
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h \
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h
|
||||
../USB_Device/App/usbd_cdc_if.h:
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc/usbd_cdc.h:
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h:
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h:
|
||||
../USB_Device/Target/usbd_conf.h:
|
||||
../Drivers/CMSIS/Device/ST/STM32WBxx/Include/stm32wbxx.h:
|
||||
../Drivers/CMSIS/Device/ST/STM32WBxx/Include/stm32wb55xx.h:
|
||||
../Drivers/CMSIS/Include/core_cm4.h:
|
||||
../Drivers/CMSIS/Include/cmsis_version.h:
|
||||
../Drivers/CMSIS/Include/cmsis_compiler.h:
|
||||
../Drivers/CMSIS/Include/cmsis_gcc.h:
|
||||
../Drivers/CMSIS/Include/mpu_armv7.h:
|
||||
../Drivers/CMSIS/Device/ST/STM32WBxx/Include/system_stm32wbxx.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal.h:
|
||||
../Core/Inc/stm32wbxx_hal_conf.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_dma.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_def.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_dma.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_dmamux.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_dma_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_cortex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_exti.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_flash.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_flash_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_gpio.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_gpio_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_hsem.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_i2c.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_i2c_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_ipcc.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_pcd.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_usb.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_pcd_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_pwr.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_pwr.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_exti.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_pwr_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_rcc.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_rcc.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_bus.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_rcc_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_crs.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_rtc.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_rtc_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_spi.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_spi_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_tim.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_tim_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_system.h:
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h:
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h:
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h:
|
||||
Binary file not shown.
@@ -0,0 +1,6 @@
|
||||
../USB_Device/App/usbd_cdc_if.c:152:15:CDC_Init_FS 8 static
|
||||
../USB_Device/App/usbd_cdc_if.c:166:15:CDC_DeInit_FS 4 static
|
||||
../USB_Device/App/usbd_cdc_if.c:180:15:CDC_Control_FS 16 static
|
||||
../USB_Device/App/usbd_cdc_if.c:261:15:CDC_Receive_FS 16 static
|
||||
../USB_Device/App/usbd_cdc_if.c:281:9:CDC_Transmit_FS 24 static
|
||||
../USB_Device/App/usbd_cdc_if.c:307:15:CDC_TransmitCplt_FS 32 static
|
||||
@@ -0,0 +1,9 @@
|
||||
../USB_Device/App/usbd_desc.c:222:11:USBD_CDC_DeviceDescriptor 1
|
||||
../USB_Device/App/usbd_desc.c:235:11:USBD_CDC_LangIDStrDescriptor 1
|
||||
../USB_Device/App/usbd_desc.c:248:11:USBD_CDC_ProductStrDescriptor 2
|
||||
../USB_Device/App/usbd_desc.c:267:11:USBD_CDC_ManufacturerStrDescriptor 1
|
||||
../USB_Device/App/usbd_desc.c:280:11:USBD_CDC_SerialStrDescriptor 1
|
||||
../USB_Device/App/usbd_desc.c:302:11:USBD_CDC_ConfigStrDescriptor 2
|
||||
../USB_Device/App/usbd_desc.c:321:11:USBD_CDC_InterfaceStrDescriptor 2
|
||||
../USB_Device/App/usbd_desc.c:339:13:Get_SerialNum 2
|
||||
../USB_Device/App/usbd_desc.c:365:13:IntToUnicode 3
|
||||
@@ -0,0 +1,107 @@
|
||||
USB_Device/App/usbd_desc.o: ../USB_Device/App/usbd_desc.c \
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h \
|
||||
../USB_Device/Target/usbd_conf.h \
|
||||
../Drivers/CMSIS/Device/ST/STM32WBxx/Include/stm32wbxx.h \
|
||||
../Drivers/CMSIS/Device/ST/STM32WBxx/Include/stm32wb55xx.h \
|
||||
../Drivers/CMSIS/Include/core_cm4.h \
|
||||
../Drivers/CMSIS/Include/cmsis_version.h \
|
||||
../Drivers/CMSIS/Include/cmsis_compiler.h \
|
||||
../Drivers/CMSIS/Include/cmsis_gcc.h \
|
||||
../Drivers/CMSIS/Include/mpu_armv7.h \
|
||||
../Drivers/CMSIS/Device/ST/STM32WBxx/Include/system_stm32wbxx.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal.h \
|
||||
../Core/Inc/stm32wbxx_hal_conf.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_dma.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_def.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_dma.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_dmamux.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_dma_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_cortex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_exti.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_flash.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_flash_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_gpio.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_gpio_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_hsem.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_i2c.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_i2c_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_ipcc.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_pcd.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_usb.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_pcd_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_pwr.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_pwr.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_exti.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_pwr_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_rcc.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_rcc.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_bus.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_rcc_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_crs.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_rtc.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_rtc_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_spi.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_spi_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_tim.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_tim_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_system.h \
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h \
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h \
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h \
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h \
|
||||
../USB_Device/App/usbd_desc.h \
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h:
|
||||
../USB_Device/Target/usbd_conf.h:
|
||||
../Drivers/CMSIS/Device/ST/STM32WBxx/Include/stm32wbxx.h:
|
||||
../Drivers/CMSIS/Device/ST/STM32WBxx/Include/stm32wb55xx.h:
|
||||
../Drivers/CMSIS/Include/core_cm4.h:
|
||||
../Drivers/CMSIS/Include/cmsis_version.h:
|
||||
../Drivers/CMSIS/Include/cmsis_compiler.h:
|
||||
../Drivers/CMSIS/Include/cmsis_gcc.h:
|
||||
../Drivers/CMSIS/Include/mpu_armv7.h:
|
||||
../Drivers/CMSIS/Device/ST/STM32WBxx/Include/system_stm32wbxx.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal.h:
|
||||
../Core/Inc/stm32wbxx_hal_conf.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_dma.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_def.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_dma.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_dmamux.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_dma_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_cortex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_exti.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_flash.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_flash_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_gpio.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_gpio_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_hsem.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_i2c.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_i2c_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_ipcc.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_pcd.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_usb.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_pcd_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_pwr.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_pwr.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_exti.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_pwr_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_rcc.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_rcc.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_bus.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_rcc_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_crs.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_rtc.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_rtc_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_spi.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_spi_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_tim.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_tim_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_system.h:
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h:
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h:
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h:
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h:
|
||||
../USB_Device/App/usbd_desc.h:
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h:
|
||||
Binary file not shown.
@@ -0,0 +1,9 @@
|
||||
../USB_Device/App/usbd_desc.c:222:11:USBD_CDC_DeviceDescriptor 16 static
|
||||
../USB_Device/App/usbd_desc.c:235:11:USBD_CDC_LangIDStrDescriptor 16 static
|
||||
../USB_Device/App/usbd_desc.c:248:11:USBD_CDC_ProductStrDescriptor 16 static
|
||||
../USB_Device/App/usbd_desc.c:267:11:USBD_CDC_ManufacturerStrDescriptor 16 static
|
||||
../USB_Device/App/usbd_desc.c:280:11:USBD_CDC_SerialStrDescriptor 16 static
|
||||
../USB_Device/App/usbd_desc.c:302:11:USBD_CDC_ConfigStrDescriptor 16 static
|
||||
../USB_Device/App/usbd_desc.c:321:11:USBD_CDC_InterfaceStrDescriptor 16 static
|
||||
../USB_Device/App/usbd_desc.c:339:13:Get_SerialNum 24 static
|
||||
../USB_Device/App/usbd_desc.c:365:13:IntToUnicode 32 static
|
||||
@@ -0,0 +1,27 @@
|
||||
################################################################################
|
||||
# Automatically-generated file. Do not edit!
|
||||
# Toolchain: GNU Tools for STM32 (14.3.rel1)
|
||||
################################################################################
|
||||
|
||||
# Add inputs and outputs from these tool invocations to the build variables
|
||||
C_SRCS += \
|
||||
../USB_Device/Target/usbd_conf.c
|
||||
|
||||
OBJS += \
|
||||
./USB_Device/Target/usbd_conf.o
|
||||
|
||||
C_DEPS += \
|
||||
./USB_Device/Target/usbd_conf.d
|
||||
|
||||
|
||||
# Each subdirectory must supply rules for building sources it contributes
|
||||
USB_Device/Target/%.o USB_Device/Target/%.su USB_Device/Target/%.cyclo: ../USB_Device/Target/%.c USB_Device/Target/subdir.mk
|
||||
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32WB55xx -c -I../Core/Inc -I../USB_Device/App -I../USB_Device/Target -I../Drivers/STM32WBxx_HAL_Driver/Inc -I../Drivers/STM32WBxx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/RTOS2/Include -I../Middlewares/ST/STM32_USB_Device_Library/Core/Inc -I../Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc -I../Drivers/CMSIS/Device/ST/STM32WBxx/Include -I../Drivers/CMSIS/Include -I../STM32_WPAN/App -I../Utilities/lpm/tiny_lpm -I../Middlewares/ST/STM32_WPAN -I../Middlewares/ST/STM32_WPAN/interface/patterns/ble_thread -I../Middlewares/ST/STM32_WPAN/interface/patterns/ble_thread/tl -I../Middlewares/ST/STM32_WPAN/interface/patterns/ble_thread/shci -I../Middlewares/ST/STM32_WPAN/utilities -I../Middlewares/ST/STM32_WPAN/ble/core -I../Middlewares/ST/STM32_WPAN/ble/core/auto -I../Middlewares/ST/STM32_WPAN/ble/core/template -I../Middlewares/ST/STM32_WPAN/ble/svc/Inc -I../Middlewares/ST/STM32_WPAN/ble/svc/Src -I../Middlewares/ST/STM32_WPAN/ble -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
|
||||
clean: clean-USB_Device-2f-Target
|
||||
|
||||
clean-USB_Device-2f-Target:
|
||||
-$(RM) ./USB_Device/Target/usbd_conf.cyclo ./USB_Device/Target/usbd_conf.d ./USB_Device/Target/usbd_conf.o ./USB_Device/Target/usbd_conf.su
|
||||
|
||||
.PHONY: clean-USB_Device-2f-Target
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_bus.h:539:22:LL_AHB2_GRP1_EnableClock 1
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_bus.h:939:22:LL_APB1_GRP1_EnableClock 1
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_bus.h:1038:22:LL_APB1_GRP1_DisableClock 1
|
||||
../USB_Device/Target/usbd_conf.c:73:6:HAL_PCD_MspInit 3
|
||||
../USB_Device/Target/usbd_conf.c:125:6:HAL_PCD_MspDeInit 2
|
||||
../USB_Device/Target/usbd_conf.c:159:6:HAL_PCD_SetupStageCallback 1
|
||||
../USB_Device/Target/usbd_conf.c:180:6:HAL_PCD_DataOutStageCallback 1
|
||||
../USB_Device/Target/usbd_conf.c:201:6:HAL_PCD_DataInStageCallback 1
|
||||
../USB_Device/Target/usbd_conf.c:221:6:HAL_PCD_SOFCallback 1
|
||||
../USB_Device/Target/usbd_conf.c:241:6:HAL_PCD_ResetCallback 2
|
||||
../USB_Device/Target/usbd_conf.c:272:6:HAL_PCD_SuspendCallback 2
|
||||
../USB_Device/Target/usbd_conf.c:302:6:HAL_PCD_ResumeCallback 2
|
||||
../USB_Device/Target/usbd_conf.c:333:6:HAL_PCD_ISOOUTIncompleteCallback 1
|
||||
../USB_Device/Target/usbd_conf.c:354:6:HAL_PCD_ISOINIncompleteCallback 1
|
||||
../USB_Device/Target/usbd_conf.c:374:6:HAL_PCD_ConnectCallback 1
|
||||
../USB_Device/Target/usbd_conf.c:394:6:HAL_PCD_DisconnectCallback 1
|
||||
../USB_Device/Target/usbd_conf.c:419:20:USBD_LL_Init 2
|
||||
../USB_Device/Target/usbd_conf.c:486:20:USBD_LL_DeInit 1
|
||||
../USB_Device/Target/usbd_conf.c:503:20:USBD_LL_Start 1
|
||||
../USB_Device/Target/usbd_conf.c:520:20:USBD_LL_Stop 1
|
||||
../USB_Device/Target/usbd_conf.c:540:20:USBD_LL_OpenEP 1
|
||||
../USB_Device/Target/usbd_conf.c:558:20:USBD_LL_CloseEP 1
|
||||
../USB_Device/Target/usbd_conf.c:576:20:USBD_LL_FlushEP 1
|
||||
../USB_Device/Target/usbd_conf.c:594:20:USBD_LL_StallEP 1
|
||||
../USB_Device/Target/usbd_conf.c:612:20:USBD_LL_ClearStallEP 1
|
||||
../USB_Device/Target/usbd_conf.c:630:9:USBD_LL_IsStallEP 2
|
||||
../USB_Device/Target/usbd_conf.c:650:20:USBD_LL_SetUSBAddress 1
|
||||
../USB_Device/Target/usbd_conf.c:670:20:USBD_LL_Transmit 1
|
||||
../USB_Device/Target/usbd_conf.c:690:20:USBD_LL_PrepareReceive 1
|
||||
../USB_Device/Target/usbd_conf.c:708:10:USBD_LL_GetRxDataSize 1
|
||||
../USB_Device/Target/usbd_conf.c:722:6:HAL_PCDEx_LPM_Callback 5
|
||||
../USB_Device/Target/usbd_conf.c:758:6:USBD_LL_Delay 1
|
||||
../USB_Device/Target/usbd_conf.c:768:7:USBD_static_malloc 1
|
||||
../USB_Device/Target/usbd_conf.c:780:6:USBD_static_free 1
|
||||
../USB_Device/Target/usbd_conf.c:791:13:SystemClockConfig_Resume 1
|
||||
../USB_Device/Target/usbd_conf.c:802:20:USBD_Get_USB_Status 5
|
||||
@@ -0,0 +1,145 @@
|
||||
USB_Device/Target/usbd_conf.o: ../USB_Device/Target/usbd_conf.c \
|
||||
../Core/Inc/main.h ../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal.h \
|
||||
../Core/Inc/stm32wbxx_hal_conf.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_dma.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_def.h \
|
||||
../Drivers/CMSIS/Device/ST/STM32WBxx/Include/stm32wbxx.h \
|
||||
../Drivers/CMSIS/Device/ST/STM32WBxx/Include/stm32wb55xx.h \
|
||||
../Drivers/CMSIS/Include/core_cm4.h \
|
||||
../Drivers/CMSIS/Include/cmsis_version.h \
|
||||
../Drivers/CMSIS/Include/cmsis_compiler.h \
|
||||
../Drivers/CMSIS/Include/cmsis_gcc.h \
|
||||
../Drivers/CMSIS/Include/mpu_armv7.h \
|
||||
../Drivers/CMSIS/Device/ST/STM32WBxx/Include/system_stm32wbxx.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_dma.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_dmamux.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_dma_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_cortex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_exti.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_flash.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_flash_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_gpio.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_gpio_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_hsem.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_i2c.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_i2c_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_ipcc.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_pcd.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_usb.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_pcd_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_pwr.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_pwr.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_exti.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_pwr_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_rcc.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_rcc.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_bus.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_rcc_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_crs.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_rtc.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_rtc_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_spi.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_spi_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_tim.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_tim_ex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_system.h \
|
||||
../Core/Inc/app_conf.h \
|
||||
../Middlewares/ST/STM32_WPAN/interface/patterns/ble_thread/hw.h \
|
||||
../Core/Inc/hw_conf.h ../Core/Inc/FreeRTOSConfig.h ../Core/Inc/hw_if.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_exti.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_system.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_rcc.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_ipcc.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_bus.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_pwr.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_cortex.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_utils.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_hsem.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_gpio.h \
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_rtc.h \
|
||||
../Middlewares/ST/STM32_WPAN/ble/core/ble_bufsize.h \
|
||||
../Core/Inc/app_entry.h ../Core/Inc/app_common.h \
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h \
|
||||
../USB_Device/Target/usbd_conf.h \
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h \
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h \
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h \
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h \
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h \
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc/usbd_cdc.h \
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h
|
||||
../Core/Inc/main.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal.h:
|
||||
../Core/Inc/stm32wbxx_hal_conf.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_dma.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_def.h:
|
||||
../Drivers/CMSIS/Device/ST/STM32WBxx/Include/stm32wbxx.h:
|
||||
../Drivers/CMSIS/Device/ST/STM32WBxx/Include/stm32wb55xx.h:
|
||||
../Drivers/CMSIS/Include/core_cm4.h:
|
||||
../Drivers/CMSIS/Include/cmsis_version.h:
|
||||
../Drivers/CMSIS/Include/cmsis_compiler.h:
|
||||
../Drivers/CMSIS/Include/cmsis_gcc.h:
|
||||
../Drivers/CMSIS/Include/mpu_armv7.h:
|
||||
../Drivers/CMSIS/Device/ST/STM32WBxx/Include/system_stm32wbxx.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_dma.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_dmamux.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_dma_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_cortex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_exti.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_flash.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_flash_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_gpio.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_gpio_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_hsem.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_i2c.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_i2c_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_ipcc.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_pcd.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_usb.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_pcd_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_pwr.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_pwr.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_exti.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_pwr_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_rcc.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_rcc.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_bus.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_rcc_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_crs.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_rtc.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_rtc_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_spi.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_spi_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_tim.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_hal_tim_ex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_system.h:
|
||||
../Core/Inc/app_conf.h:
|
||||
../Middlewares/ST/STM32_WPAN/interface/patterns/ble_thread/hw.h:
|
||||
../Core/Inc/hw_conf.h:
|
||||
../Core/Inc/FreeRTOSConfig.h:
|
||||
../Core/Inc/hw_if.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_exti.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_system.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_rcc.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_ipcc.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_bus.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_pwr.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_cortex.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_utils.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_hsem.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_gpio.h:
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_rtc.h:
|
||||
../Middlewares/ST/STM32_WPAN/ble/core/ble_bufsize.h:
|
||||
../Core/Inc/app_entry.h:
|
||||
../Core/Inc/app_common.h:
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h:
|
||||
../USB_Device/Target/usbd_conf.h:
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h:
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h:
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h:
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h:
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h:
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc/usbd_cdc.h:
|
||||
../Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h:
|
||||
Binary file not shown.
@@ -0,0 +1,36 @@
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_bus.h:539:22:LL_AHB2_GRP1_EnableClock 24 static
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_bus.h:939:22:LL_APB1_GRP1_EnableClock 24 static
|
||||
../Drivers/STM32WBxx_HAL_Driver/Inc/stm32wbxx_ll_bus.h:1038:22:LL_APB1_GRP1_DisableClock 16 static
|
||||
../USB_Device/Target/usbd_conf.c:73:6:HAL_PCD_MspInit 120 static
|
||||
../USB_Device/Target/usbd_conf.c:125:6:HAL_PCD_MspDeInit 16 static
|
||||
../USB_Device/Target/usbd_conf.c:159:6:HAL_PCD_SetupStageCallback 16 static
|
||||
../USB_Device/Target/usbd_conf.c:180:6:HAL_PCD_DataOutStageCallback 16 static
|
||||
../USB_Device/Target/usbd_conf.c:201:6:HAL_PCD_DataInStageCallback 16 static
|
||||
../USB_Device/Target/usbd_conf.c:221:6:HAL_PCD_SOFCallback 16 static
|
||||
../USB_Device/Target/usbd_conf.c:241:6:HAL_PCD_ResetCallback 24 static
|
||||
../USB_Device/Target/usbd_conf.c:272:6:HAL_PCD_SuspendCallback 16 static
|
||||
../USB_Device/Target/usbd_conf.c:302:6:HAL_PCD_ResumeCallback 16 static
|
||||
../USB_Device/Target/usbd_conf.c:333:6:HAL_PCD_ISOOUTIncompleteCallback 16 static
|
||||
../USB_Device/Target/usbd_conf.c:354:6:HAL_PCD_ISOINIncompleteCallback 16 static
|
||||
../USB_Device/Target/usbd_conf.c:374:6:HAL_PCD_ConnectCallback 16 static
|
||||
../USB_Device/Target/usbd_conf.c:394:6:HAL_PCD_DisconnectCallback 16 static
|
||||
../USB_Device/Target/usbd_conf.c:419:20:USBD_LL_Init 16 static
|
||||
../USB_Device/Target/usbd_conf.c:486:20:USBD_LL_DeInit 24 static
|
||||
../USB_Device/Target/usbd_conf.c:503:20:USBD_LL_Start 24 static
|
||||
../USB_Device/Target/usbd_conf.c:520:20:USBD_LL_Stop 24 static
|
||||
../USB_Device/Target/usbd_conf.c:540:20:USBD_LL_OpenEP 24 static
|
||||
../USB_Device/Target/usbd_conf.c:558:20:USBD_LL_CloseEP 24 static
|
||||
../USB_Device/Target/usbd_conf.c:576:20:USBD_LL_FlushEP 24 static
|
||||
../USB_Device/Target/usbd_conf.c:594:20:USBD_LL_StallEP 24 static
|
||||
../USB_Device/Target/usbd_conf.c:612:20:USBD_LL_ClearStallEP 24 static
|
||||
../USB_Device/Target/usbd_conf.c:630:9:USBD_LL_IsStallEP 24 static
|
||||
../USB_Device/Target/usbd_conf.c:650:20:USBD_LL_SetUSBAddress 24 static
|
||||
../USB_Device/Target/usbd_conf.c:670:20:USBD_LL_Transmit 32 static
|
||||
../USB_Device/Target/usbd_conf.c:690:20:USBD_LL_PrepareReceive 32 static
|
||||
../USB_Device/Target/usbd_conf.c:708:10:USBD_LL_GetRxDataSize 16 static
|
||||
../USB_Device/Target/usbd_conf.c:722:6:HAL_PCDEx_LPM_Callback 16 static
|
||||
../USB_Device/Target/usbd_conf.c:758:6:USBD_LL_Delay 16 static
|
||||
../USB_Device/Target/usbd_conf.c:768:7:USBD_static_malloc 16 static
|
||||
../USB_Device/Target/usbd_conf.c:780:6:USBD_static_free 16 static
|
||||
../USB_Device/Target/usbd_conf.c:791:13:SystemClockConfig_Resume 8 static
|
||||
../USB_Device/Target/usbd_conf.c:802:20:USBD_Get_USB_Status 24 static
|
||||
Reference in New Issue
Block a user