├── APP ├── ICM20689 │ ├── LQ_ICM20689SPI_DMP.a │ ├── LQ_ICM20689SPI_DMP.lib │ ├── LQ_ICM20689_DMP.a │ ├── LQ_ICM20689_DMP.lib │ ├── LQ_ICM20689_I2CDMP.h │ ├── LQ_ICM20689_SPIDMP.h │ ├── LQ_demo_20689I2CDMP.c │ ├── LQ_demo_20689SPIDMP.c │ └── 截至4月4日,ICM20689DMP尚未搞定.txt ├── LQ_AAConfig.h ├── LQ_AnoScope.c ├── LQ_AnoScope.h ├── LQ_Balance.c ├── LQ_Balance.h ├── LQ_CAMERA.c ├── LQ_CAMERA.h ├── LQ_GPIO_EXIT.c ├── LQ_GPIO_EXIT.h ├── LQ_GPIO_KEY.c ├── LQ_GPIO_KEY.h ├── LQ_GPIO_LED.c ├── LQ_GPIO_LED.h ├── LQ_ICM20689.c ├── LQ_ICM20689.h ├── LQ_ImageProcess.c ├── LQ_ImageProcess.h ├── LQ_Inductor.c ├── LQ_Inductor.h ├── LQ_MT9V034.c ├── LQ_MT9V034.h ├── LQ_MotorServo.c ├── LQ_MotorServo.h ├── LQ_OLED096.c ├── LQ_OLED096.h ├── LQ_PID.c ├── LQ_PID.h ├── LQ_TFT18.c ├── LQ_TFT18.h ├── LQ_TFT18Pic.h ├── MPU6050 │ ├── LQ_I2C_MPU6050.c │ ├── LQ_I2C_MPU6050.h │ ├── LQ_MPU6050_DMP.a │ ├── LQ_MPU6050_DMP.h │ ├── LQ_MPU6050_DMP.lib │ └── LQ_demo_DMP.c ├── MPU9250 │ ├── LQ_I2C_MPU9250.c │ └── LQ_I2C_MPU9250.h ├── include.h └── 用户可以在此文件夹添加自己的文件.txt ├── DRV ├── LQ_ADC.c ├── LQ_ADC.h ├── LQ_DMA.c ├── LQ_DMA.h ├── LQ_Encoder.c ├── LQ_Encoder.h ├── LQ_FLASH.c ├── LQ_FLASH.h ├── LQ_GPIO.c ├── LQ_GPIO.h ├── LQ_I2C.c ├── LQ_I2C.h ├── LQ_PWM.c ├── LQ_PWM.h ├── LQ_SOFTI2C.c ├── LQ_SOFTI2C.h ├── LQ_SOFTSPI.c ├── LQ_SOFTSPI.h ├── LQ_SPI.c ├── LQ_SPI.h ├── LQ_SYS.c ├── LQ_SYS.h ├── LQ_TIMER.c ├── LQ_TIMER.h ├── LQ_UART.c └── LQ_UART.h ├── Device ├── CMSIS │ ├── IAR_Core │ │ ├── arm_common_tables.h │ │ ├── arm_const_structs.h │ │ ├── arm_math.h │ │ ├── cmsis_armcc.h │ │ ├── cmsis_armclang.h │ │ ├── cmsis_compiler.h │ │ ├── cmsis_gcc.h │ │ ├── core_armv8mbl.h │ │ ├── core_armv8mml.h │ │ ├── core_cm0.h │ │ ├── core_cm0plus.h │ │ ├── core_cm23.h │ │ ├── core_cm3.h │ │ ├── core_cm33.h │ │ ├── core_cm4.h │ │ ├── core_cm7.h │ │ ├── core_sc000.h │ │ ├── core_sc300.h │ │ └── tz_context.h │ └── KEIL_Core │ │ ├── arm_common_tables.h │ │ ├── arm_const_structs.h │ │ ├── arm_math.h │ │ ├── cmsis_armcc.h │ │ ├── cmsis_armclang.h │ │ ├── cmsis_compiler.h │ │ ├── cmsis_gcc.h │ │ ├── core_armv8mbl.h │ │ ├── core_armv8mml.h │ │ ├── core_cm0.h │ │ ├── core_cm0plus.h │ │ ├── core_cm23.h │ │ ├── core_cm3.h │ │ ├── core_cm33.h │ │ ├── core_cm4.h │ │ ├── core_cm7.h │ │ ├── core_sc000.h │ │ ├── core_sc300.h │ │ └── tz_context.h └── MM32F3277 │ ├── HAL_Lib │ ├── Inc │ │ ├── dtype.h │ │ ├── hal_adc.h │ │ ├── hal_bkp.h │ │ ├── hal_can.h │ │ ├── hal_comp.h │ │ ├── hal_conf.h │ │ ├── hal_crc.h │ │ ├── hal_crs.h │ │ ├── hal_dac.h │ │ ├── hal_dbg.h │ │ ├── hal_device.h │ │ ├── hal_dma.h │ │ ├── hal_eth.h │ │ ├── hal_eth_conf.h │ │ ├── hal_exti.h │ │ ├── hal_flash.h │ │ ├── hal_fsmc.h │ │ ├── hal_gpio.h │ │ ├── hal_i2c.h │ │ ├── hal_iwdg.h │ │ ├── hal_misc.h │ │ ├── hal_pwr.h │ │ ├── hal_rcc.h │ │ ├── hal_redefine.h │ │ ├── hal_rtc.h │ │ ├── hal_sdio.h │ │ ├── hal_spi.h │ │ ├── hal_syscfg.h │ │ ├── hal_tim.h │ │ ├── hal_uart.h │ │ ├── hal_uid.h │ │ ├── hal_ver.h │ │ └── hal_wwdg.h │ └── Src │ │ ├── hal_adc.c │ │ ├── hal_bkp.c │ │ ├── hal_can.c │ │ ├── hal_comp.c │ │ ├── hal_crc.c │ │ ├── hal_crs.c │ │ ├── hal_dac.c │ │ ├── hal_dbg.c │ │ ├── hal_dma.c │ │ ├── hal_eth.c │ │ ├── hal_exti.c │ │ ├── hal_flash.c │ │ ├── hal_fsmc.c │ │ ├── hal_gpio.c │ │ ├── hal_i2c.c │ │ ├── hal_iwdg.c │ │ ├── hal_misc.c │ │ ├── hal_pwr.c │ │ ├── hal_rcc.c │ │ ├── hal_rtc.c │ │ ├── hal_sdio.c │ │ ├── hal_spi.c │ │ ├── hal_tim.c │ │ ├── hal_uart.c │ │ ├── hal_uid.c │ │ ├── hal_ver.c │ │ └── hal_wwdg.c │ ├── Include │ ├── mm32_device.h │ ├── mm32_reg.h │ ├── mm32_reg_redefine_v1.h │ ├── reg_adc.h │ ├── reg_bkp.h │ ├── reg_can.h │ ├── reg_common.h │ ├── reg_comp.h │ ├── reg_crc.h │ ├── reg_crs.h │ ├── reg_dac.h │ ├── reg_dbg.h │ ├── reg_dma.h │ ├── reg_eth.h │ ├── reg_exti.h │ ├── reg_flash.h │ ├── reg_fsmc.h │ ├── reg_gpio.h │ ├── reg_i2c.h │ ├── reg_iwdg.h │ ├── reg_pwm.h │ ├── reg_pwr.h │ ├── reg_rcc.h │ ├── reg_root.h │ ├── reg_rtc.h │ ├── reg_sdio.h │ ├── reg_spi.h │ ├── reg_syscfg.h │ ├── reg_tim.h │ ├── reg_uart.h │ ├── reg_usb.h │ ├── reg_usb_otg_fs.h │ ├── reg_wwdg.h │ └── types.h │ └── Source │ ├── IAR_StartAsm │ └── startup_mm32f327x_iar.s │ ├── KEIL_StartAsm │ └── startup_mm32f327x_keil.s │ └── system_mm32f327x.c ├── IARprj ├── Backup (2) of LQ_F3277_Lib.dep ├── Backup (2) of LQ_F3277_Lib.ewp ├── Backup of LQ_F3277_Lib.dep ├── Backup of LQ_F3277_Lib.ewp ├── Debug │ ├── Exe │ │ ├── MM32.out │ │ └── MM32.sim │ ├── List │ │ └── MM32.map │ └── Obj │ │ ├── Backup (2) of LQ_F3277_Lib.pbd │ │ ├── Backup (2) of LQ_F3277_Lib.pbd.browse │ │ ├── Backup (2) of LQ_F3277_Lib.pbd.linf │ │ ├── Backup (2) of LQ_F3277_Lib.pbd.tmp │ │ ├── Backup of LQ_F3277_Lib.pbd │ │ ├── Backup of LQ_F3277_Lib.pbd.linf │ │ ├── Backup of LQ_F3277_Lib.pbd.tmp │ │ ├── LQ_ADC.o │ │ ├── LQ_ADC.pbi │ │ ├── LQ_ADC.pbi.xcl │ │ ├── LQ_AnoScope.o │ │ ├── LQ_AnoScope.pbi │ │ ├── LQ_AnoScope.pbi.xcl │ │ ├── LQ_Balance.o │ │ ├── LQ_Balance.pbi │ │ ├── LQ_Balance.pbi.xcl │ │ ├── LQ_CAMERA.o │ │ ├── LQ_CAMERA.pbi │ │ ├── LQ_CAMERA.pbi.xcl │ │ ├── LQ_DMA.o │ │ ├── LQ_DMA.pbi │ │ ├── LQ_DMA.pbi.xcl │ │ ├── LQ_Encoder.o │ │ ├── LQ_Encoder.pbi │ │ ├── LQ_Encoder.pbi.xcl │ │ ├── LQ_F3277_Lib.pbd │ │ ├── LQ_F3277_Lib.pbd.browse │ │ ├── LQ_F3277_Lib.pbd.linf │ │ ├── LQ_FLASH.o │ │ ├── LQ_FLASH.pbi │ │ ├── LQ_FLASH.pbi.xcl │ │ ├── LQ_GPIO.o │ │ ├── LQ_GPIO.pbi │ │ ├── LQ_GPIO.pbi.xcl │ │ ├── LQ_GPIO_EXIT.o │ │ ├── LQ_GPIO_EXIT.pbi │ │ ├── LQ_GPIO_EXIT.pbi.xcl │ │ ├── LQ_GPIO_KEY.o │ │ ├── LQ_GPIO_KEY.pbi │ │ ├── LQ_GPIO_KEY.pbi.xcl │ │ ├── LQ_GPIO_LED.o │ │ ├── LQ_GPIO_LED.pbi │ │ ├── LQ_GPIO_LED.pbi.xcl │ │ ├── LQ_I2C.o │ │ ├── LQ_I2C.pbi │ │ ├── LQ_I2C.pbi.xcl │ │ ├── LQ_I2C_MPU6050.o │ │ ├── LQ_I2C_MPU6050.pbi │ │ ├── LQ_I2C_MPU6050.pbi.xcl │ │ ├── LQ_ICM20689.o │ │ ├── LQ_ICM20689.pbi │ │ ├── LQ_ICM20689.pbi.xcl │ │ ├── LQ_ImageProcess.o │ │ ├── LQ_ImageProcess.pbi │ │ ├── LQ_ImageProcess.pbi.xcl │ │ ├── LQ_Inductor.o │ │ ├── LQ_Inductor.pbi │ │ ├── LQ_Inductor.pbi.xcl │ │ ├── LQ_MT9V034.o │ │ ├── LQ_MT9V034.pbi │ │ ├── LQ_MT9V034.pbi.xcl │ │ ├── LQ_MotorServo.o │ │ ├── LQ_MotorServo.pbi │ │ ├── LQ_MotorServo.pbi.xcl │ │ ├── LQ_OLED096.o │ │ ├── LQ_OLED096.pbi │ │ ├── LQ_OLED096.pbi.xcl │ │ ├── LQ_PID.o │ │ ├── LQ_PID.pbi │ │ ├── LQ_PID.pbi.xcl │ │ ├── LQ_PWM.o │ │ ├── LQ_PWM.pbi │ │ ├── LQ_PWM.pbi.xcl │ │ ├── LQ_SOFTI2C.o │ │ ├── LQ_SOFTI2C.pbi │ │ ├── LQ_SOFTI2C.pbi.xcl │ │ ├── LQ_SOFTSPI.o │ │ ├── LQ_SOFTSPI.pbi │ │ ├── LQ_SOFTSPI.pbi.xcl │ │ ├── LQ_SPI.o │ │ ├── LQ_SPI.pbi │ │ ├── LQ_SPI.pbi.xcl │ │ ├── LQ_SYS.o │ │ ├── LQ_SYS.pbi │ │ ├── LQ_SYS.pbi.xcl │ │ ├── LQ_TFT18.o │ │ ├── LQ_TFT18.pbi │ │ ├── LQ_TFT18.pbi.xcl │ │ ├── LQ_TIMER.o │ │ ├── LQ_TIMER.pbi │ │ ├── LQ_TIMER.pbi.xcl │ │ ├── LQ_UART.o │ │ ├── LQ_UART.pbi │ │ ├── LQ_UART.pbi.xcl │ │ ├── LQ_demo_DMP.o │ │ ├── LQ_demo_DMP.pbi │ │ ├── LQ_demo_DMP.pbi.xcl │ │ ├── SIR_BELL.o │ │ ├── SIR_BELL.pbi │ │ ├── SIR_BELL.pbi.xcl │ │ ├── hal_adc.o │ │ ├── hal_adc.pbi │ │ ├── hal_adc.pbi.xcl │ │ ├── hal_bkp.o │ │ ├── hal_bkp.pbi │ │ ├── hal_bkp.pbi.xcl │ │ ├── hal_can.o │ │ ├── hal_can.pbi │ │ ├── hal_can.pbi.xcl │ │ ├── hal_comp.o │ │ ├── hal_comp.pbi │ │ ├── hal_comp.pbi.xcl │ │ ├── hal_crc.o │ │ ├── hal_crc.pbi │ │ ├── hal_crc.pbi.xcl │ │ ├── hal_crs.o │ │ ├── hal_crs.pbi │ │ ├── hal_crs.pbi.xcl │ │ ├── hal_dac.o │ │ ├── hal_dac.pbi │ │ ├── hal_dac.pbi.xcl │ │ ├── hal_dbg.o │ │ ├── hal_dbg.pbi │ │ ├── hal_dbg.pbi.xcl │ │ ├── hal_dma.o │ │ ├── hal_dma.pbi │ │ ├── hal_dma.pbi.xcl │ │ ├── hal_eth.o │ │ ├── hal_eth.pbi │ │ ├── hal_eth.pbi.xcl │ │ ├── hal_exti.o │ │ ├── hal_exti.pbi │ │ ├── hal_exti.pbi.xcl │ │ ├── hal_flash.o │ │ ├── hal_flash.pbi │ │ ├── hal_flash.pbi.xcl │ │ ├── hal_fsmc.o │ │ ├── hal_fsmc.pbi │ │ ├── hal_fsmc.pbi.xcl │ │ ├── hal_gpio.o │ │ ├── hal_gpio.pbi │ │ ├── hal_gpio.pbi.xcl │ │ ├── hal_i2c.o │ │ ├── hal_i2c.pbi │ │ ├── hal_i2c.pbi.xcl │ │ ├── hal_iwdg.o │ │ ├── hal_iwdg.pbi │ │ ├── hal_iwdg.pbi.xcl │ │ ├── hal_misc.o │ │ ├── hal_misc.pbi │ │ ├── hal_misc.pbi.xcl │ │ ├── hal_pwr.o │ │ ├── hal_pwr.pbi │ │ ├── hal_pwr.pbi.xcl │ │ ├── hal_rcc.o │ │ ├── hal_rcc.pbi │ │ ├── hal_rcc.pbi.xcl │ │ ├── hal_rtc.o │ │ ├── hal_rtc.pbi │ │ ├── hal_rtc.pbi.xcl │ │ ├── hal_sdio.o │ │ ├── hal_sdio.pbi │ │ ├── hal_sdio.pbi.xcl │ │ ├── hal_spi.o │ │ ├── hal_spi.pbi │ │ ├── hal_spi.pbi.xcl │ │ ├── hal_tim.o │ │ ├── hal_tim.pbi │ │ ├── hal_tim.pbi.xcl │ │ ├── hal_uart.o │ │ ├── hal_uart.pbi │ │ ├── hal_uart.pbi.xcl │ │ ├── hal_uid.o │ │ ├── hal_uid.pbi │ │ ├── hal_uid.pbi.xcl │ │ ├── hal_ver.o │ │ ├── hal_ver.pbi │ │ ├── hal_ver.pbi.xcl │ │ ├── hal_wwdg.o │ │ ├── hal_wwdg.pbi │ │ ├── hal_wwdg.pbi.xcl │ │ ├── main.o │ │ ├── main.pbi │ │ ├── main.pbi.xcl │ │ ├── startup_mm32f327x_iar.o │ │ ├── system_mm32f327x.o │ │ ├── system_mm32f327x.pbi │ │ └── system_mm32f327x.pbi.xcl ├── IAR删除临时文件.bat ├── LQ_F3277_Lib.dep ├── LQ_F3277_Lib.ewd ├── LQ_F3277_Lib.ewp ├── LQ_F3277_Lib.ewt ├── LQ_F3277_Lib.eww └── settings │ ├── 1.wsdt │ ├── 123.wsdt │ ├── 1233.wsdt │ ├── Backup (2) of LQ_F3277_Lib.Debug.cspy.bat │ ├── Backup (2) of LQ_F3277_Lib.Debug.cspy.ps1 │ ├── Backup (2) of LQ_F3277_Lib.Debug.driver.xcl │ ├── Backup (2) of LQ_F3277_Lib.Debug.general.xcl │ ├── Backup (2) of LQ_F3277_Lib.crun │ ├── Backup (2) of LQ_F3277_Lib.dbgdt │ ├── Backup (2) of LQ_F3277_Lib.dnx │ ├── Backup of LQ_F3277_Lib.Debug.cspy.bat │ ├── Backup of LQ_F3277_Lib.Debug.cspy.ps1 │ ├── Backup of LQ_F3277_Lib.Debug.driver.xcl │ ├── Backup of LQ_F3277_Lib.Debug.general.xcl │ ├── Backup of LQ_F3277_Lib.crun │ ├── Backup of LQ_F3277_Lib.dbgdt │ ├── Backup of LQ_F3277_Lib.dnx │ ├── LQ_F3277_Lib.Debug.cspy.bat │ ├── LQ_F3277_Lib.Debug.cspy.ps1 │ ├── LQ_F3277_Lib.Debug.driver.xcl │ ├── LQ_F3277_Lib.Debug.general.xcl │ ├── LQ_F3277_Lib.crun │ ├── LQ_F3277_Lib.dbgdt │ ├── LQ_F3277_Lib.dnx │ ├── LQ_F3277_Lib.wsdt │ └── LQ_F3277_Lib_Debug.jlink ├── MDKprj ├── JLinkLog.txt ├── JLinkSettings.ini ├── LQ_F3227_Lib.uvguix.Administrator ├── LQ_F3227_Lib.uvoptx ├── LQ_F3227_Lib.uvprojx ├── Listings │ ├── LQ_F3227_Lib.map │ └── startup_mm32f327x_keil.lst ├── MDK删除临时文件.bat └── Objects │ ├── LQ_F3227_Lib.build_log.htm │ ├── LQ_F3227_Lib.htm │ ├── LQ_F3227_Lib.lnp │ ├── LQ_F3227_Lib.sct │ ├── LQ_F3227_Lib_LQ_F3227_Lib.dep │ ├── hal_adc.crf │ ├── hal_adc.d │ ├── hal_adc.o │ ├── hal_bkp.crf │ ├── hal_bkp.d │ ├── hal_bkp.o │ ├── hal_can.crf │ ├── hal_can.d │ ├── hal_can.o │ ├── hal_comp.crf │ ├── hal_comp.d │ ├── hal_comp.o │ ├── hal_crc.crf │ ├── hal_crc.d │ ├── hal_crc.o │ ├── hal_crs.crf │ ├── hal_crs.d │ ├── hal_crs.o │ ├── hal_dac.crf │ ├── hal_dac.d │ ├── hal_dac.o │ ├── hal_dbg.crf │ ├── hal_dbg.d │ ├── hal_dbg.o │ ├── hal_dma.crf │ ├── hal_dma.d │ ├── hal_dma.o │ ├── hal_eth.crf │ ├── hal_eth.d │ ├── hal_eth.o │ ├── hal_exti.crf │ ├── hal_exti.d │ ├── hal_exti.o │ ├── hal_flash.crf │ ├── hal_flash.d │ ├── hal_flash.o │ ├── hal_fsmc.crf │ ├── hal_fsmc.d │ ├── hal_fsmc.o │ ├── hal_gpio.crf │ ├── hal_gpio.d │ ├── hal_gpio.o │ ├── hal_i2c.crf │ ├── hal_i2c.d │ ├── hal_i2c.o │ ├── hal_iwdg.crf │ ├── hal_iwdg.d │ ├── hal_iwdg.o │ ├── hal_misc.crf │ ├── hal_misc.d │ ├── hal_misc.o │ ├── hal_pwr.crf │ ├── hal_pwr.d │ ├── hal_pwr.o │ ├── hal_rcc.crf │ ├── hal_rcc.d │ ├── hal_rcc.o │ ├── hal_rtc.crf │ ├── hal_rtc.d │ ├── hal_rtc.o │ ├── hal_sdio.crf │ ├── hal_sdio.d │ ├── hal_sdio.o │ ├── hal_spi.crf │ ├── hal_spi.d │ ├── hal_spi.o │ ├── hal_tim.crf │ ├── hal_tim.d │ ├── hal_tim.o │ ├── hal_uart.crf │ ├── hal_uart.d │ ├── hal_uart.o │ ├── hal_uid.crf │ ├── hal_uid.d │ ├── hal_uid.o │ ├── hal_ver.crf │ ├── hal_ver.d │ ├── hal_ver.o │ ├── hal_wwdg.crf │ ├── hal_wwdg.d │ ├── hal_wwdg.o │ ├── lq_adc.crf │ ├── lq_adc.d │ ├── lq_adc.o │ ├── lq_anoscope.crf │ ├── lq_anoscope.d │ ├── lq_anoscope.o │ ├── lq_balance.crf │ ├── lq_balance.d │ ├── lq_balance.o │ ├── lq_camera.crf │ ├── lq_camera.d │ ├── lq_camera.o │ ├── lq_demo_dmp.crf │ ├── lq_demo_dmp.d │ ├── lq_demo_dmp.o │ ├── lq_dma.crf │ ├── lq_dma.d │ ├── lq_dma.o │ ├── lq_encoder.crf │ ├── lq_encoder.d │ ├── lq_encoder.o │ ├── lq_flash.crf │ ├── lq_flash.d │ ├── lq_flash.o │ ├── lq_gpio.crf │ ├── lq_gpio.d │ ├── lq_gpio.o │ ├── lq_gpio_exit.crf │ ├── lq_gpio_exit.d │ ├── lq_gpio_exit.o │ ├── lq_gpio_key.crf │ ├── lq_gpio_key.d │ ├── lq_gpio_key.o │ ├── lq_gpio_led.crf │ ├── lq_gpio_led.d │ ├── lq_gpio_led.o │ ├── lq_i2c.crf │ ├── lq_i2c.d │ ├── lq_i2c.o │ ├── lq_i2c_mpu6050.crf │ ├── lq_i2c_mpu6050.d │ ├── lq_i2c_mpu6050.o │ ├── lq_i2c_mpu9250.crf │ ├── lq_i2c_mpu9250.d │ ├── lq_i2c_mpu9250.o │ ├── lq_icm20689.crf │ ├── lq_icm20689.d │ ├── lq_icm20689.o │ ├── lq_imageprocess.crf │ ├── lq_imageprocess.d │ ├── lq_imageprocess.o │ ├── lq_inductor.crf │ ├── lq_inductor.d │ ├── lq_inductor.o │ ├── lq_motorservo.crf │ ├── lq_motorservo.d │ ├── lq_motorservo.o │ ├── lq_mt9v034.crf │ ├── lq_mt9v034.d │ ├── lq_mt9v034.o │ ├── lq_oled096.crf │ ├── lq_oled096.d │ ├── lq_oled096.o │ ├── lq_pid.crf │ ├── lq_pid.d │ ├── lq_pid.o │ ├── lq_pwm.crf │ ├── lq_pwm.d │ ├── lq_pwm.o │ ├── lq_softi2c.crf │ ├── lq_softi2c.d │ ├── lq_softi2c.o │ ├── lq_softspi.crf │ ├── lq_softspi.d │ ├── lq_softspi.o │ ├── lq_spi.crf │ ├── lq_spi.d │ ├── lq_spi.o │ ├── lq_sys.crf │ ├── lq_sys.d │ ├── lq_sys.o │ ├── lq_tft18.crf │ ├── lq_tft18.d │ ├── lq_tft18.o │ ├── lq_timer.crf │ ├── lq_timer.d │ ├── lq_timer.o │ ├── lq_uart.crf │ ├── lq_uart.d │ ├── lq_uart.o │ ├── main.crf │ ├── main.d │ ├── main.o │ ├── startup_mm32f327x_keil.d │ ├── startup_mm32f327x_keil.o │ ├── system_mm32f327x.crf │ ├── system_mm32f327x.d │ └── system_mm32f327x.o ├── README.md ├── SIR ├── Attitude_Calculation.c ├── Attitude_Calculation.h ├── SIR_BELL.c ├── SIR_BELL.h ├── SIR_SPI.c └── SIR_SPI.h └── USER ├── main.c ├── 用户可以在此文件夹添加自己的文件.txt └── 龙邱ARM144p母板资源分配.txt /APP/ICM20689/LQ_ICM20689SPI_DMP.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/ICM20689/LQ_ICM20689SPI_DMP.a -------------------------------------------------------------------------------- /APP/ICM20689/LQ_ICM20689SPI_DMP.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/ICM20689/LQ_ICM20689SPI_DMP.lib -------------------------------------------------------------------------------- /APP/ICM20689/LQ_ICM20689_DMP.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/ICM20689/LQ_ICM20689_DMP.a -------------------------------------------------------------------------------- /APP/ICM20689/LQ_ICM20689_DMP.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/ICM20689/LQ_ICM20689_DMP.lib -------------------------------------------------------------------------------- /APP/ICM20689/LQ_ICM20689_I2CDMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/ICM20689/LQ_ICM20689_I2CDMP.h -------------------------------------------------------------------------------- /APP/ICM20689/LQ_ICM20689_SPIDMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/ICM20689/LQ_ICM20689_SPIDMP.h -------------------------------------------------------------------------------- /APP/ICM20689/LQ_demo_20689I2CDMP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/ICM20689/LQ_demo_20689I2CDMP.c -------------------------------------------------------------------------------- /APP/ICM20689/LQ_demo_20689SPIDMP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/ICM20689/LQ_demo_20689SPIDMP.c -------------------------------------------------------------------------------- /APP/ICM20689/截至4月4日,ICM20689DMP尚未搞定.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/ICM20689/截至4月4日,ICM20689DMP尚未搞定.txt -------------------------------------------------------------------------------- /APP/LQ_AAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/LQ_AAConfig.h -------------------------------------------------------------------------------- /APP/LQ_AnoScope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/LQ_AnoScope.c -------------------------------------------------------------------------------- /APP/LQ_AnoScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/LQ_AnoScope.h -------------------------------------------------------------------------------- /APP/LQ_Balance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/LQ_Balance.c -------------------------------------------------------------------------------- /APP/LQ_Balance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/LQ_Balance.h -------------------------------------------------------------------------------- /APP/LQ_CAMERA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/LQ_CAMERA.c -------------------------------------------------------------------------------- /APP/LQ_CAMERA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/LQ_CAMERA.h -------------------------------------------------------------------------------- /APP/LQ_GPIO_EXIT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/LQ_GPIO_EXIT.c -------------------------------------------------------------------------------- /APP/LQ_GPIO_EXIT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/LQ_GPIO_EXIT.h -------------------------------------------------------------------------------- /APP/LQ_GPIO_KEY.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/LQ_GPIO_KEY.c -------------------------------------------------------------------------------- /APP/LQ_GPIO_KEY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/LQ_GPIO_KEY.h -------------------------------------------------------------------------------- /APP/LQ_GPIO_LED.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/LQ_GPIO_LED.c -------------------------------------------------------------------------------- /APP/LQ_GPIO_LED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/LQ_GPIO_LED.h -------------------------------------------------------------------------------- /APP/LQ_ICM20689.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/LQ_ICM20689.c -------------------------------------------------------------------------------- /APP/LQ_ICM20689.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/LQ_ICM20689.h -------------------------------------------------------------------------------- /APP/LQ_ImageProcess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/LQ_ImageProcess.c -------------------------------------------------------------------------------- /APP/LQ_ImageProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/LQ_ImageProcess.h -------------------------------------------------------------------------------- /APP/LQ_Inductor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/LQ_Inductor.c -------------------------------------------------------------------------------- /APP/LQ_Inductor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/LQ_Inductor.h -------------------------------------------------------------------------------- /APP/LQ_MT9V034.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/LQ_MT9V034.c -------------------------------------------------------------------------------- /APP/LQ_MT9V034.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/LQ_MT9V034.h -------------------------------------------------------------------------------- /APP/LQ_MotorServo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/LQ_MotorServo.c -------------------------------------------------------------------------------- /APP/LQ_MotorServo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/LQ_MotorServo.h -------------------------------------------------------------------------------- /APP/LQ_OLED096.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/LQ_OLED096.c -------------------------------------------------------------------------------- /APP/LQ_OLED096.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/LQ_OLED096.h -------------------------------------------------------------------------------- /APP/LQ_PID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/LQ_PID.c -------------------------------------------------------------------------------- /APP/LQ_PID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/LQ_PID.h -------------------------------------------------------------------------------- /APP/LQ_TFT18.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/LQ_TFT18.c -------------------------------------------------------------------------------- /APP/LQ_TFT18.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/LQ_TFT18.h -------------------------------------------------------------------------------- /APP/LQ_TFT18Pic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/LQ_TFT18Pic.h -------------------------------------------------------------------------------- /APP/MPU6050/LQ_I2C_MPU6050.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/MPU6050/LQ_I2C_MPU6050.c -------------------------------------------------------------------------------- /APP/MPU6050/LQ_I2C_MPU6050.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/MPU6050/LQ_I2C_MPU6050.h -------------------------------------------------------------------------------- /APP/MPU6050/LQ_MPU6050_DMP.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/MPU6050/LQ_MPU6050_DMP.a -------------------------------------------------------------------------------- /APP/MPU6050/LQ_MPU6050_DMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/MPU6050/LQ_MPU6050_DMP.h -------------------------------------------------------------------------------- /APP/MPU6050/LQ_MPU6050_DMP.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/MPU6050/LQ_MPU6050_DMP.lib -------------------------------------------------------------------------------- /APP/MPU6050/LQ_demo_DMP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/MPU6050/LQ_demo_DMP.c -------------------------------------------------------------------------------- /APP/MPU9250/LQ_I2C_MPU9250.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/MPU9250/LQ_I2C_MPU9250.c -------------------------------------------------------------------------------- /APP/MPU9250/LQ_I2C_MPU9250.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/MPU9250/LQ_I2C_MPU9250.h -------------------------------------------------------------------------------- /APP/include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/include.h -------------------------------------------------------------------------------- /APP/用户可以在此文件夹添加自己的文件.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/APP/用户可以在此文件夹添加自己的文件.txt -------------------------------------------------------------------------------- /DRV/LQ_ADC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/DRV/LQ_ADC.c -------------------------------------------------------------------------------- /DRV/LQ_ADC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/DRV/LQ_ADC.h -------------------------------------------------------------------------------- /DRV/LQ_DMA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/DRV/LQ_DMA.c -------------------------------------------------------------------------------- /DRV/LQ_DMA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/DRV/LQ_DMA.h -------------------------------------------------------------------------------- /DRV/LQ_Encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/DRV/LQ_Encoder.c -------------------------------------------------------------------------------- /DRV/LQ_Encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/DRV/LQ_Encoder.h -------------------------------------------------------------------------------- /DRV/LQ_FLASH.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/DRV/LQ_FLASH.c -------------------------------------------------------------------------------- /DRV/LQ_FLASH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/DRV/LQ_FLASH.h -------------------------------------------------------------------------------- /DRV/LQ_GPIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/DRV/LQ_GPIO.c -------------------------------------------------------------------------------- /DRV/LQ_GPIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/DRV/LQ_GPIO.h -------------------------------------------------------------------------------- /DRV/LQ_I2C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/DRV/LQ_I2C.c -------------------------------------------------------------------------------- /DRV/LQ_I2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/DRV/LQ_I2C.h -------------------------------------------------------------------------------- /DRV/LQ_PWM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/DRV/LQ_PWM.c -------------------------------------------------------------------------------- /DRV/LQ_PWM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/DRV/LQ_PWM.h -------------------------------------------------------------------------------- /DRV/LQ_SOFTI2C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/DRV/LQ_SOFTI2C.c -------------------------------------------------------------------------------- /DRV/LQ_SOFTI2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/DRV/LQ_SOFTI2C.h -------------------------------------------------------------------------------- /DRV/LQ_SOFTSPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/DRV/LQ_SOFTSPI.c -------------------------------------------------------------------------------- /DRV/LQ_SOFTSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/DRV/LQ_SOFTSPI.h -------------------------------------------------------------------------------- /DRV/LQ_SPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/DRV/LQ_SPI.c -------------------------------------------------------------------------------- /DRV/LQ_SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/DRV/LQ_SPI.h -------------------------------------------------------------------------------- /DRV/LQ_SYS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/DRV/LQ_SYS.c -------------------------------------------------------------------------------- /DRV/LQ_SYS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/DRV/LQ_SYS.h -------------------------------------------------------------------------------- /DRV/LQ_TIMER.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/DRV/LQ_TIMER.c -------------------------------------------------------------------------------- /DRV/LQ_TIMER.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/DRV/LQ_TIMER.h -------------------------------------------------------------------------------- /DRV/LQ_UART.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/DRV/LQ_UART.c -------------------------------------------------------------------------------- /DRV/LQ_UART.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/DRV/LQ_UART.h -------------------------------------------------------------------------------- /Device/CMSIS/IAR_Core/tz_context.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015-2016 ARM Limited. All rights reserved. 3 | * 4 | * SPDX-License-Identifier: Apache-2.0 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the License); you may 7 | * not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an AS IS BASIS, WITHOUT 14 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | * 18 | * ---------------------------------------------------------------------------- 19 | * 20 | * $Date: 21. September 2016 21 | * $Revision: V1.0 22 | * 23 | * Project: TrustZone for ARMv8-M 24 | * Title: Context Management for ARMv8-M TrustZone 25 | * 26 | * Version 1.0 27 | * Initial Release 28 | *---------------------------------------------------------------------------*/ 29 | 30 | #ifndef TZ_CONTEXT_H 31 | #define TZ_CONTEXT_H 32 | 33 | #include 34 | 35 | #ifndef TZ_MODULEID_T 36 | #define TZ_MODULEID_T 37 | /// \details Data type that identifies secure software modules called by a process. 38 | typedef uint32_t TZ_ModuleId_t; 39 | #endif 40 | 41 | /// \details TZ Memory ID identifies an allocated memory slot. 42 | typedef uint32_t TZ_MemoryId_t; 43 | 44 | /// Initialize secure context memory system 45 | /// \return execution status (1: success, 0: error) 46 | uint32_t TZ_InitContextSystem_S (void); 47 | 48 | /// Allocate context memory for calling secure software modules in TrustZone 49 | /// \param[in] module identifies software modules called from non-secure mode 50 | /// \return value != 0 id TrustZone memory slot identifier 51 | /// \return value 0 no memory available or internal error 52 | TZ_MemoryId_t TZ_AllocModuleContext_S (TZ_ModuleId_t module); 53 | 54 | /// Free context memory that was previously allocated with \ref TZ_AllocModuleContext_S 55 | /// \param[in] id TrustZone memory slot identifier 56 | /// \return execution status (1: success, 0: error) 57 | uint32_t TZ_FreeModuleContext_S (TZ_MemoryId_t id); 58 | 59 | /// Load secure context (called on RTOS thread context switch) 60 | /// \param[in] id TrustZone memory slot identifier 61 | /// \return execution status (1: success, 0: error) 62 | uint32_t TZ_LoadContext_S (TZ_MemoryId_t id); 63 | 64 | /// Store secure context (called on RTOS thread context switch) 65 | /// \param[in] id TrustZone memory slot identifier 66 | /// \return execution status (1: success, 0: error) 67 | uint32_t TZ_StoreContext_S (TZ_MemoryId_t id); 68 | 69 | #endif // TZ_CONTEXT_H 70 | -------------------------------------------------------------------------------- /Device/CMSIS/KEIL_Core/tz_context.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015-2016 ARM Limited. All rights reserved. 3 | * 4 | * SPDX-License-Identifier: Apache-2.0 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the License); you may 7 | * not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an AS IS BASIS, WITHOUT 14 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | * 18 | * ---------------------------------------------------------------------------- 19 | * 20 | * $Date: 21. September 2016 21 | * $Revision: V1.0 22 | * 23 | * Project: TrustZone for ARMv8-M 24 | * Title: Context Management for ARMv8-M TrustZone 25 | * 26 | * Version 1.0 27 | * Initial Release 28 | *---------------------------------------------------------------------------*/ 29 | 30 | #ifndef TZ_CONTEXT_H 31 | #define TZ_CONTEXT_H 32 | 33 | #include 34 | 35 | #ifndef TZ_MODULEID_T 36 | #define TZ_MODULEID_T 37 | /// \details Data type that identifies secure software modules called by a process. 38 | typedef uint32_t TZ_ModuleId_t; 39 | #endif 40 | 41 | /// \details TZ Memory ID identifies an allocated memory slot. 42 | typedef uint32_t TZ_MemoryId_t; 43 | 44 | /// Initialize secure context memory system 45 | /// \return execution status (1: success, 0: error) 46 | uint32_t TZ_InitContextSystem_S (void); 47 | 48 | /// Allocate context memory for calling secure software modules in TrustZone 49 | /// \param[in] module identifies software modules called from non-secure mode 50 | /// \return value != 0 id TrustZone memory slot identifier 51 | /// \return value 0 no memory available or internal error 52 | TZ_MemoryId_t TZ_AllocModuleContext_S (TZ_ModuleId_t module); 53 | 54 | /// Free context memory that was previously allocated with \ref TZ_AllocModuleContext_S 55 | /// \param[in] id TrustZone memory slot identifier 56 | /// \return execution status (1: success, 0: error) 57 | uint32_t TZ_FreeModuleContext_S (TZ_MemoryId_t id); 58 | 59 | /// Load secure context (called on RTOS thread context switch) 60 | /// \param[in] id TrustZone memory slot identifier 61 | /// \return execution status (1: success, 0: error) 62 | uint32_t TZ_LoadContext_S (TZ_MemoryId_t id); 63 | 64 | /// Store secure context (called on RTOS thread context switch) 65 | /// \param[in] id TrustZone memory slot identifier 66 | /// \return execution status (1: success, 0: error) 67 | uint32_t TZ_StoreContext_S (TZ_MemoryId_t id); 68 | 69 | #endif // TZ_CONTEXT_H 70 | -------------------------------------------------------------------------------- /Device/MM32F3277/HAL_Lib/Inc/dtype.h: -------------------------------------------------------------------------------- 1 | //////////////////////////////////////////////////////////////////////////////// 2 | /// @file: dtype.h 3 | /// @author AE TEAM 4 | /// @brief Define the data types to be used in the project, including the function 5 | /// library and application code. Use the data types defined in this file. 6 | //////////////////////////////////////////////////////////////////////////////// 7 | #ifndef __DTYPE_H 8 | #define __DTYPE_H //This is done to avoid including the header file repeatedly in the same file 9 | 10 | 11 | //Defines the read and write characteristics of data, which is often used for storage limits of peripheral registers 12 | #ifndef __I 13 | #define __I volatile const //only read 14 | #endif 15 | #ifndef __O 16 | #define __O volatile //only write 17 | #endif 18 | #ifndef __IO 19 | #define __IO volatile //read write 20 | #endif 21 | 22 | //Common data type definitions 23 | 24 | typedef unsigned char int8u; //haven't symbol8 bit integer variable 25 | typedef signed char int8s; //have symbol8 bit integer variable 26 | typedef unsigned short int16u; //haven't symbol16 bit integer variable 27 | typedef signed short int16s; //have symbol16 bit integer variable 28 | typedef unsigned int int32u; //haven't symbol32 bit integer variable 29 | typedef signed int int32s; //have symbol32 bit integer variable 30 | typedef float fp32; //Single-precision floating-point number (32-bit length) 31 | typedef double fp64; //Double-precision floating-point number (64-bit length) 32 | 33 | #endif //__DTYPE_H 34 | -------------------------------------------------------------------------------- /Device/MM32F3277/HAL_Lib/Inc/hal_conf.h: -------------------------------------------------------------------------------- 1 | //////////////////////////////////////////////////////////////////////////////// 2 | /// @file hal_conf.h 3 | /// @author AE TEAM 4 | /// @brief THIS FILE CONTAINS ALL THE FUNCTIONS PROTOTYPES FOR THE GENERIC MICROCONTROLLER 5 | /// FIRMWARE LIBRARY. 6 | //////////////////////////////////////////////////////////////////////////////// 7 | /// @attention 8 | /// 9 | /// THE EXISTING FIRMWARE IS ONLY FOR REFERENCE, WHICH IS DESIGNED TO PROVIDE 10 | /// CUSTOMERS WITH CODING INFORMATION ABOUT THEIR PRODUCTS SO THEY CAN SAVE 11 | /// TIME. THEREFORE, MINDMOTION SHALL NOT BE LIABLE FOR ANY DIRECT, INDIRECT OR 12 | /// CONSEQUENTIAL DAMAGES ABOUT ANY CLAIMS ARISING OUT OF THE CONTENT OF SUCH 13 | /// HARDWARE AND/OR THE USE OF THE CODING INFORMATION CONTAINED HEREIN IN 14 | /// CONNECTION WITH PRODUCTS MADE BY CUSTOMERS. 15 | /// 16 | ///

© COPYRIGHT MINDMOTION

17 | //////////////////////////////////////////////////////////////////////////////// 18 | 19 | // Define to prevent recursive inclusion 20 | #ifndef __HAL_CONF_H 21 | #define __HAL_CONF_H 22 | // Files includes 23 | #include "mm32_device.h" 24 | 25 | #include "hal_adc.h" 26 | #include "hal_bkp.h" 27 | #include "hal_can.h" 28 | #include "hal_comp.h" 29 | #include "hal_crc.h" 30 | #include "hal_crs.h" 31 | #include "hal_dac.h" 32 | #include "hal_dbg.h" 33 | #include "hal_dma.h" 34 | #include "hal_exti.h" 35 | #include "hal_flash.h" 36 | #include "hal_gpio.h" 37 | #include "hal_i2c.h" 38 | #include "hal_iwdg.h" 39 | #include "hal_misc.h" 40 | #include "hal_pwr.h" 41 | #include "hal_rcc.h" 42 | #include "hal_rtc.h" 43 | #include "hal_spi.h" 44 | #include "hal_syscfg.h" 45 | #include "hal_tim.h" 46 | #include "hal_uart.h" 47 | #include "hal_uid.h" 48 | #include "hal_wwdg.h" 49 | #include "hal_redefine.h" 50 | #include "hal_eth.h" 51 | #include "hal_eth_conf.h" 52 | #include "hal_fsmc.h" 53 | 54 | /// @} 55 | 56 | /// @} 57 | 58 | /// @} 59 | 60 | //////////////////////////////////////////////////////////////////////////////// 61 | #endif //__HAL_CONF_H 62 | //////////////////////////////////////////////////////////////////////////////// 63 | -------------------------------------------------------------------------------- /Device/MM32F3277/HAL_Lib/Inc/hal_crc.h: -------------------------------------------------------------------------------- 1 | //////////////////////////////////////////////////////////////////////////////// 2 | /// @file hal_crc.h 3 | /// @author AE TEAM 4 | /// @brief THIS FILE CONTAINS ALL THE FUNCTIONS PROTOTYPES FOR THE CRC 5 | /// FIRMWARE LIBRARY. 6 | //////////////////////////////////////////////////////////////////////////////// 7 | /// @attention 8 | /// 9 | /// THE EXISTING FIRMWARE IS ONLY FOR REFERENCE, WHICH IS DESIGNED TO PROVIDE 10 | /// CUSTOMERS WITH CODING INFORMATION ABOUT THEIR PRODUCTS SO THEY CAN SAVE 11 | /// TIME. THEREFORE, MINDMOTION SHALL NOT BE LIABLE FOR ANY DIRECT, INDIRECT OR 12 | /// CONSEQUENTIAL DAMAGES ABOUT ANY CLAIMS ARISING OUT OF THE CONTENT OF SUCH 13 | /// HARDWARE AND/OR THE USE OF THE CODING INFORMATION CONTAINED HEREIN IN 14 | /// CONNECTION WITH PRODUCTS MADE BY CUSTOMERS. 15 | /// 16 | ///

© COPYRIGHT MINDMOTION

17 | //////////////////////////////////////////////////////////////////////////////// 18 | 19 | // Define to prevent recursive inclusion 20 | #ifndef __HAL_CRC_H 21 | #define __HAL_CRC_H 22 | 23 | // Files includes 24 | #include "types.h" 25 | #include "reg_common.h" 26 | #include "reg_crc.h" 27 | 28 | //////////////////////////////////////////////////////////////////////////////// 29 | /// @addtogroup MM32_Hardware_Abstract_Layer 30 | /// @{ 31 | 32 | //////////////////////////////////////////////////////////////////////////////// 33 | /// @defgroup CRC_HAL 34 | /// @brief CRC HAL modules 35 | /// @{ 36 | 37 | 38 | //////////////////////////////////////////////////////////////////////////////// 39 | /// @defgroup CRC_Exported_Types 40 | /// @{ 41 | 42 | /// @} 43 | 44 | //////////////////////////////////////////////////////////////////////////////// 45 | /// @defgroup CRC_Exported_Constants 46 | /// @{ 47 | 48 | /// @} 49 | 50 | //////////////////////////////////////////////////////////////////////////////// 51 | /// @defgroup CRC_Exported_Variables 52 | /// @{ 53 | #ifdef _HAL_CRC_C_ 54 | #define GLOBAL 55 | 56 | #else 57 | #define GLOBAL extern 58 | #endif 59 | 60 | #undef GLOBAL 61 | /// @} 62 | 63 | //////////////////////////////////////////////////////////////////////////////// 64 | /// @defgroup CRC_Exported_Functions 65 | /// @{ 66 | void CRC_ResetDR(void); 67 | void CRC_SetIDRegister(u8 id_value); 68 | 69 | u32 CRC_CalcCRC(u32 data); 70 | u32 CRC_CalcBlockCRC(u32* buffer, u32 length); 71 | u32 CRC_GetCRC(void); 72 | 73 | u8 CRC_GetIDRegister(void); 74 | 75 | /// @} 76 | 77 | /// @} 78 | 79 | /// @} 80 | 81 | 82 | //////////////////////////////////////////////////////////////////////////////// 83 | #endif // __HAL_CRC_H 84 | //////////////////////////////////////////////////////////////////////////////// 85 | -------------------------------------------------------------------------------- /Device/MM32F3277/HAL_Lib/Inc/hal_crs.h: -------------------------------------------------------------------------------- 1 | //////////////////////////////////////////////////////////////////////////////// 2 | /// @file hal_crs.h 3 | /// @author AE TEAM 4 | /// @brief THIS FILE CONTAINS ALL THE FUNCTIONS PROTOTYPES FOR THE CRS 5 | /// FIRMWARE LIBRARY. 6 | //////////////////////////////////////////////////////////////////////////////// 7 | /// @attention 8 | /// 9 | /// THE EXISTING FIRMWARE IS ONLY FOR REFERENCE, WHICH IS DESIGNED TO PROVIDE 10 | /// CUSTOMERS WITH CODING INFORMATION ABOUT THEIR PRODUCTS SO THEY CAN SAVE 11 | /// TIME. THEREFORE, MINDMOTION SHALL NOT BE LIABLE FOR ANY DIRECT, INDIRECT OR 12 | /// CONSEQUENTIAL DAMAGES ABOUT ANY CLAIMS ARISING OUT OF THE CONTENT OF SUCH 13 | /// HARDWARE AND/OR THE USE OF THE CODING INFORMATION CONTAINED HEREIN IN 14 | /// CONNECTION WITH PRODUCTS MADE BY CUSTOMERS. 15 | /// 16 | ///

© COPYRIGHT MINDMOTION

17 | //////////////////////////////////////////////////////////////////////////////// 18 | 19 | // Define to prevent recursive inclusion 20 | #ifndef __HAL_CRS_H 21 | #define __HAL_CRS_H 22 | 23 | 24 | // Files includes 25 | #include "types.h" 26 | #include "reg_crs.h" 27 | 28 | //////////////////////////////////////////////////////////////////////////////// 29 | /// @addtogroup MM32_Hardware_Abstract_Layer 30 | /// @{ 31 | 32 | //////////////////////////////////////////////////////////////////////////////// 33 | /// @defgroup CRS_HAL 34 | /// @brief CRS HAL modules 35 | /// @{ 36 | 37 | //////////////////////////////////////////////////////////////////////////////// 38 | /// @defgroup GPIO_Exported_Types 39 | /// @{ 40 | 41 | 42 | 43 | //////////////////////////////////////////////////////////////////////////////// 44 | #endif 45 | //////////////////////////////////////////////////////////////////////////////// 46 | 47 | -------------------------------------------------------------------------------- /Device/MM32F3277/HAL_Lib/Inc/hal_dbg.h: -------------------------------------------------------------------------------- 1 | //////////////////////////////////////////////////////////////////////////////// 2 | /// @file hal_dbg.h 3 | /// @author AE TEAM 4 | /// @brief THIS FILE CONTAINS ALL THE FUNCTIONS PROTOTYPES FOR THE DBG 5 | /// FIRMWARE LIBRARY. 6 | //////////////////////////////////////////////////////////////////////////////// 7 | /// @attention 8 | /// 9 | /// THE EXISTING FIRMWARE IS ONLY FOR REFERENCE, WHICH IS DESIGNED TO PROVIDE 10 | /// CUSTOMERS WITH CODING INFORMATION ABOUT THEIR PRODUCTS SO THEY CAN SAVE 11 | /// TIME. THEREFORE, MINDMOTION SHALL NOT BE LIABLE FOR ANY DIRECT, INDIRECT OR 12 | /// CONSEQUENTIAL DAMAGES ABOUT ANY CLAIMS ARISING OUT OF THE CONTENT OF SUCH 13 | /// HARDWARE AND/OR THE USE OF THE CODING INFORMATION CONTAINED HEREIN IN 14 | /// CONNECTION WITH PRODUCTS MADE BY CUSTOMERS. 15 | /// 16 | ///

© COPYRIGHT MINDMOTION

17 | //////////////////////////////////////////////////////////////////////////////// 18 | 19 | // Define to prevent recursive inclusion 20 | #ifndef __HAL_DBG_H 21 | #define __HAL_DBG_H 22 | 23 | // Files includes 24 | #include "types.h" 25 | #include "reg_common.h" 26 | #include "reg_dbg.h" 27 | 28 | //////////////////////////////////////////////////////////////////////////////// 29 | /// @addtogroup MM32_Hardware_Abstract_Layer 30 | /// @{ 31 | 32 | //////////////////////////////////////////////////////////////////////////////// 33 | /// @defgroup DBG_HAL 34 | /// @brief DBG HAL modules 35 | /// @{ 36 | 37 | //////////////////////////////////////////////////////////////////////////////// 38 | /// @defgroup DBG_Exported_Types 39 | /// @{ 40 | 41 | //////////////////////////////////////////////////////////////////////////////// 42 | /// @defgroup DIV_Exported_Variables 43 | /// @{ 44 | #ifdef _HAL_DBG_C_ 45 | 46 | #define GLOBAL 47 | #else 48 | #define GLOBAL extern 49 | #endif 50 | 51 | #undef GLOBAL 52 | /// @} 53 | 54 | 55 | 56 | //////////////////////////////////////////////////////////////////////////////// 57 | /// @defgroup DBG_Exported_Functions 58 | /// @{ 59 | void DBGMCU_Configure(u32 periph, FunctionalState state); 60 | 61 | /// @} 62 | 63 | 64 | /// @} 65 | 66 | /// @} 67 | 68 | /// @} 69 | 70 | //////////////////////////////////////////////////////////////////////////////// 71 | #endif // __HAL_DBG_H 72 | //////////////////////////////////////////////////////////////////////////////// 73 | -------------------------------------------------------------------------------- /Device/MM32F3277/HAL_Lib/Inc/hal_device.h: -------------------------------------------------------------------------------- 1 | //////////////////////////////////////////////////////////////////////////////// 2 | /// @file hal_device.h 3 | /// @author AE team 4 | /// @brief CMSIS Cortex-M Peripheral Access Layer for MindMotion 5 | /// microcontroller devices 6 | //////////////////////////////////////////////////////////////////////////////// 7 | /// @attention 8 | /// 9 | /// THE EXISTING FIRMWARE IS ONLY FOR REFERENCE, WHICH IS DESIGNED TO PROVIDE 10 | /// CUSTOMERS WITH CODING INFORMATION ABOUT THEIR PRODUCTS SO THEY CAN SAVE 11 | /// TIME. THEREFORE, MINDMOTION SHALL NOT BE LIABLE FOR ANY DIRECT, INDIRECT OR 12 | /// CONSEQUENTIAL DAMAGES ABOUT ANY CLAIMS ARISING OUT OF THE CONTENT OF SUCH 13 | /// HARDWARE AND/OR THE USE OF THE CODING INFORMATION CONTAINED HEREIN IN 14 | /// CONNECTION WITH PRODUCTS MADE BY CUSTOMERS. 15 | /// 16 | ///

© COPYRIGHT MINDMOTION

17 | //////////////////////////////////////////////////////////////////////////////// 18 | 19 | 20 | // Define to prevent recursive inclusion 21 | #ifndef __HAL_DEVICE_H 22 | #define __HAL_DEVICE_H 23 | 24 | 25 | 26 | 27 | 28 | #include "mm32_device.h" 29 | 30 | 31 | #endif // __HAL_device_H 32 | 33 | /// @} 34 | 35 | 36 | /// @} 37 | 38 | /// @} 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Device/MM32F3277/HAL_Lib/Inc/hal_eth_conf.h: -------------------------------------------------------------------------------- 1 | //////////////////////////////////////////////////////////////////////////////// 2 | /// @file hal_eth_conf.h 3 | /// @author AE TEAM 4 | /// @brief THIS FILE CONTAINS ALL THE FUNCTIONS PROTOTYPES FOR THE hal_eth_conf.h EXAMPLES. 5 | /// //////////////////////////////////////////////////////////////////////////// 6 | /// @attention 7 | /// 8 | /// THE EXISTING FIRMWARE IS ONLY FOR REFERENCE, WHICH IS DESIGNED TO PROVIDE 9 | /// CUSTOMERS WITH CODING INFORMATION ABOUT THEIR PRODUCTS SO THEY CAN SAVE 10 | /// TIME. THEREFORE, MINDMOTION SHALL NOT BE LIABLE FOR ANY DIRECT, INDIRECT OR 11 | /// CONSEQUENTIAL DAMAGES ABOUT ANY CLAIMS ARISING OUT OF THE CONTENT OF SUCH 12 | /// HARDWARE AND/OR THE USE OF THE CODING INFORMATION CONTAINED HEREIN IN 13 | /// CONNECTION WITH PRODUCTS MADE BY CUSTOMERS. 14 | /// 15 | ///

© COPYRIGHT MINDMOTION

16 | //////////////////////////////////////////////////////////////////////////////// 17 | 18 | #ifndef __HAL_ETH_CONF_H 19 | #define __HAL_ETH_CONF_H 20 | //////////////////////////////////////////////////////////////////////////////// 21 | /// @addtogroup MM32_Hardware_Abstract_Layer 22 | /// @{ 23 | 24 | //////////////////////////////////////////////////////////////////////////////// 25 | /// @defgroup ETH_HAL 26 | /// @brief ETH HAL modules 27 | /// @{ 28 | 29 | //////////////////////////////////////////////////////////////////////////////// 30 | /// @defgroup ETH_Exported_Types 31 | /// @{ 32 | 33 | 34 | // #define USE_ENHANCED_DMA_DESCRIPTORS 35 | // #define CUSTOM_DRIVER_BUFFERS_CONFIG 36 | #define DP83848 37 | 38 | #ifdef CUSTOM_DRIVER_BUFFERS_CONFIG 39 | #define ETH_RX_BUF_SIZE ETH_MAX_PACKET_SIZE 40 | #define ETH_TX_BUF_SIZE ETH_MAX_PACKET_SIZE 41 | #define ETH_RX_BUF_NUM 4 42 | #define ETH_TX_BUF_NUM 4 43 | #endif 44 | 45 | //////////////////////////////////////////////////////////////////////////////// 46 | #if defined(DP83848) 47 | #define PHY_SR ((u16)0x10) 48 | #define PHY_SR_LINKSTATUS ((u16)0x0001) 49 | #define PHY_SPEED_STATUS ((u16)0x0002) 50 | #define PHY_DUPLEX_STATUS ((u16)0x0004) 51 | 52 | #define PHY_MICR ((u16)0x11) 53 | #define PHY_MICR_INT_EN ((u16)0x0002) 54 | #define PHY_MICR_INT_OE ((u16)0x0001) 55 | 56 | #define PHY_MISR ((u16)0x12) 57 | #define PHY_MISR_LINK_INT_EN ((u16)0x0020) 58 | #define PHY_LINK_STATUS ((u16)0x2000) 59 | #endif 60 | 61 | /// @} 62 | 63 | /// @} 64 | 65 | /// @} 66 | //////////////////////////////////////////////////////////////////////////////// 67 | #endif //__HAL_ETH_CONF_H 68 | //////////////////////////////////////////////////////////////////////////////// 69 | -------------------------------------------------------------------------------- /Device/MM32F3277/HAL_Lib/Inc/hal_syscfg.h: -------------------------------------------------------------------------------- 1 | //////////////////////////////////////////////////////////////////////////////// 2 | /// @file hal_syscfg.h 3 | /// @author AE TEAM 4 | /// @brief THIS FILE CONTAINS ALL THE FUNCTIONS PROTOTYPES FOR THE EXTI 5 | /// FIRMWARE LIBRARY. 6 | //////////////////////////////////////////////////////////////////////////////// 7 | /// @attention 8 | /// 9 | /// THE EXISTING FIRMWARE IS ONLY FOR REFERENCE, WHICH IS DESIGNED TO PROVIDE 10 | /// CUSTOMERS WITH CODING INFORMATION ABOUT THEIR PRODUCTS SO THEY CAN SAVE 11 | /// TIME. THEREFORE, MINDMOTION SHALL NOT BE LIABLE FOR ANY DIRECT, INDIRECT OR 12 | /// CONSEQUENTIAL DAMAGES ABOUT ANY CLAIMS ARISING OUT OF THE CONTENT OF SUCH 13 | /// HARDWARE AND/OR THE USE OF THE CODING INFORMATION CONTAINED HEREIN IN 14 | /// CONNECTION WITH PRODUCTS MADE BY CUSTOMERS. 15 | /// 16 | ///

© COPYRIGHT MINDMOTION

17 | //////////////////////////////////////////////////////////////////////////////// 18 | 19 | // Define to prevent recursive inclusion 20 | #ifndef __HAL_SYSCFG_H 21 | #define __HAL_SYSCFG_H 22 | 23 | // Files includes 24 | #include "types.h" 25 | #include "mm32_device.h" 26 | #include "hal_EXTI.H" 27 | //////////////////////////////////////////////////////////////////////////////// 28 | /// @addtogroup MM32_Hardware_Abstract_Layer 29 | /// @{ 30 | 31 | //////////////////////////////////////////////////////////////////////////////// 32 | /// @defgroup SYSCFG_HAL 33 | /// @brief SYSCFG HAL modules 34 | /// @{ 35 | 36 | 37 | //////////////////////////////////////////////////////////////////////////////// 38 | /// @defgroup SYSCFG_Exported_Types 39 | /// @{ 40 | 41 | //////////////////////////////////////////////////////////////////////////////// 42 | /// @brief SYSCFG mode enumeration 43 | //////////////////////////////////////////////////////////////////////////////// 44 | // @defgroup SYSCFG_Memory_Remap_Config 45 | #define SYSCFG_MemoryRemap_Flash ((u8)0x00) 46 | #define SYSCFG_MemoryRemap_SystemMemory ((u8)0x01) 47 | #define SYSCFG_MemoryRemap_SRAM ((u8)0x03) 48 | 49 | 50 | 51 | 52 | /// 53 | /// @} 54 | /// 55 | 56 | 57 | 58 | 59 | // Exported macro ------------------------------------------------------------ 60 | // Exported functions ------------------------------------------------------- 61 | 62 | // Function used to set the SYSCFG configuration to the default reset state 63 | #define SYSCFG_DeInit EXTI_DeInit 64 | #define SYSCFG_MemoryRemapConfig EXTI_MemoryRemapConfig 65 | #define SYSCFG_EXTILineConfig EXTI_LineConfig 66 | u32 SYSCFG_GetPendingIT(u32 ITSourceLine); 67 | void SYSCFG_BreakConfig(u32 SYSCFG_Break); 68 | FlagStatus SYSCFG_GetFlagStatus(u32 SYSCFG_Flag); 69 | void SYSCFG_ClearFlag(u32 SYSCFG_Flag); 70 | 71 | 72 | /// @} 73 | 74 | /// @} 75 | 76 | /// @} 77 | 78 | //////////////////////////////////////////////////////////////////////////////// 79 | #endif //__HAL_SYSCFG_H 80 | //////////////////////////////////////////////////////////////////////////////// 81 | 82 | 83 | 84 | -------------------------------------------------------------------------------- /Device/MM32F3277/HAL_Lib/Inc/hal_uid.h: -------------------------------------------------------------------------------- 1 | //////////////////////////////////////////////////////////////////////////////// 2 | /// @file hal_uid.h 3 | /// @author AE TEAM 4 | /// @brief THIS FILE CONTAINS ALL THE FUNCTIONS PROTOTYPES FOR THE UID 5 | /// FIRMWARE LIBRARY. 6 | //////////////////////////////////////////////////////////////////////////////// 7 | /// @attention 8 | /// 9 | /// THE EXISTING FIRMWARE IS ONLY FOR REFERENCE, WHICH IS DESIGNED TO PROVIDE 10 | /// CUSTOMERS WITH CODING INFORMATION ABOUT THEIR PRODUCTS SO THEY CAN SAVE 11 | /// TIME. THEREFORE, MINDMOTION SHALL NOT BE LIABLE FOR ANY DIRECT, INDIRECT OR 12 | /// CONSEQUENTIAL DAMAGES ABOUT ANY CLAIMS ARISING OUT OF THE CONTENT OF SUCH 13 | /// HARDWARE AND/OR THE USE OF THE CODING INFORMATION CONTAINED HEREIN IN 14 | /// CONNECTION WITH PRODUCTS MADE BY CUSTOMERS. 15 | /// 16 | ///

© COPYRIGHT MINDMOTION

17 | //////////////////////////////////////////////////////////////////////////////// 18 | 19 | // Define to prevent recursive inclusion 20 | #ifndef __HAL_UID_H 21 | #define __HAL_UID_H 22 | 23 | // Files includes 24 | #include "types.h" 25 | #include "reg_common.h" 26 | 27 | //////////////////////////////////////////////////////////////////////////////// 28 | /// @addtogroup MM32_Hardware_Abstract_Layer 29 | /// @{ 30 | 31 | //////////////////////////////////////////////////////////////////////////////// 32 | /// @defgroup UID_HAL 33 | /// @brief UID HAL modules 34 | /// @{ 35 | 36 | 37 | /////////////////////////////////////1/////////////////////////////////////////// 38 | /// @defgroup UID_Exported_Variables 39 | /// @{ 40 | #ifdef _HAL_UID_C_ 41 | #define GLOBAL 42 | 43 | #else 44 | #define GLOBAL extern 45 | 46 | 47 | #endif 48 | GLOBAL u8 device_id_data[12]; 49 | 50 | #undef GLOBAL 51 | 52 | 53 | /// @} 54 | 55 | //////////////////////////////////////////////////////////////////////////////// 56 | /// @defgroup UID_Exported_Functions 57 | /// @{ 58 | void GetChipUID(void); 59 | 60 | /// @} 61 | 62 | 63 | 64 | /// @} 65 | 66 | /// @} 67 | 68 | //////////////////////////////////////////////////////////////////////////////// 69 | #endif // __HAL_UID_H 70 | //////////////////////////////////////////////////////////////////////////////// 71 | 72 | -------------------------------------------------------------------------------- /Device/MM32F3277/HAL_Lib/Inc/hal_ver.h: -------------------------------------------------------------------------------- 1 | //////////////////////////////////////////////////////////////////////////////// 2 | /// @file hal_ver.h 3 | /// @author AE TEAM 4 | /// @brief THIS FILE CONTAINS ALL THE FUNCTIONS PROTOTYPES FOR THE UART 5 | /// FIRMWARE LIBRARY. 6 | //////////////////////////////////////////////////////////////////////////////// 7 | /// @attention 8 | /// 9 | /// THE EXISTING FIRMWARE IS ONLY FOR REFERENCE, WHICH IS DESIGNED TO PROVIDE 10 | /// CUSTOMERS WITH CODING INFORMATION ABOUT THEIR PRODUCTS SO THEY CAN SAVE 11 | /// TIME. THEREFORE, MINDMOTION SHALL NOT BE LIABLE FOR ANY DIRECT, INDIRECT OR 12 | /// CONSEQUENTIAL DAMAGES ABOUT ANY CLAIMS ARISING OUT OF THE CONTENT OF SUCH 13 | /// HARDWARE AND/OR THE USE OF THE CODING INFORMATION CONTAINED HEREIN IN 14 | /// CONNECTION WITH PRODUCTS MADE BY CUSTOMERS. 15 | /// 16 | ///

© COPYRIGHT MINDMOTION

17 | //////////////////////////////////////////////////////////////////////////////// 18 | 19 | // Define to prevent recursive inclusion 20 | #ifndef __HAL_VER_H 21 | #define __HAL_VER_H 22 | 23 | // Files includes 24 | #include "reg_common.h" 25 | #include "reg_dbg.h" 26 | 27 | //////////////////////////////////////////////////////////////////////////////// 28 | /// @addtogroup MM32_Hardware_Abstract_Layer 29 | /// @{ 30 | 31 | /////////////////////////////////////1/////////////////////////////////////////// 32 | /// @defgroup UART_HAL 33 | /// @brief UART HAL modules 34 | /// @{ 35 | 36 | 37 | //////////////////////////////////////////////////////////////////////////////// 38 | /// @defgroup UART_Exported_Types 39 | /// @{ 40 | /// 41 | 42 | //////////////////////////////////////////////////////////////////////////////// 43 | /// @brief UART Word Length Enumerate definition 44 | /// @anchor UART_Word_Length 45 | //////////////////////////////////////////////////////////////////////////////// 46 | 47 | /// @} 48 | 49 | //////////////////////////////////////////////////////////////////////////////// 50 | /// @defgroup UART_Exported_Constants 51 | /// @{ 52 | 53 | /// @} 54 | 55 | //////////////////////////////////////////////////////////////////////////////// 56 | /// @defgroup UART_Exported_Variables 57 | /// @{ 58 | #ifdef _HAL_VER_C_ 59 | 60 | #define GLOBAL 61 | #else 62 | #define GLOBAL extern 63 | #endif 64 | 65 | #undef GLOBAL 66 | /// @} 67 | 68 | //////////////////////////////////////////////////////////////////////////////// 69 | /// @defgroup UART_Exported_Functions 70 | /// @{ 71 | 72 | u32 Get_MM32LibVersion(void); 73 | u32 Get_ChipsetREVID(void); 74 | u32 Get_ChipsetDEVID(void); 75 | u32 Get_ChipsetUIDw0(void); 76 | u32 Get_ChipsetUIDw1(void); 77 | u32 Get_ChipsetUIDw2(void); 78 | 79 | 80 | 81 | /// @} 82 | 83 | /// @} 84 | 85 | /// @} 86 | 87 | //////////////////////////////////////////////////////////////////////////////// 88 | #endif // __HAL_VER_H 89 | //////////////////////////////////////////////////////////////////////////////// 90 | -------------------------------------------------------------------------------- /Device/MM32F3277/HAL_Lib/Src/hal_crs.c: -------------------------------------------------------------------------------- 1 | //////////////////////////////////////////////////////////////////////////////// 2 | /// @file hal_crs.c 3 | /// @author AE TEAM 4 | /// @brief THIS FILE PROVIDES ALL THE CRS FIRMWARE FUNCTIONS. 5 | //////////////////////////////////////////////////////////////////////////////// 6 | /// @attention 7 | /// 8 | /// THE EXISTING FIRMWARE IS ONLY FOR REFERENCE, WHICH IS DESIGNED TO PROVIDE 9 | /// CUSTOMERS WITH CODING INFORMATION ABOUT THEIR PRODUCTS SO THEY CAN SAVE 10 | /// TIME. THEREFORE, MINDMOTION SHALL NOT BE LIABLE FOR ANY DIRECT, INDIRECT OR 11 | /// CONSEQUENTIAL DAMAGES ABOUT ANY CLAIMS ARISING OUT OF THE CONTENT OF SUCH 12 | /// HARDWARE AND/OR THE USE OF THE CODING INFORMATION CONTAINED HEREIN IN 13 | /// CONNECTION WITH PRODUCTS MADE BY CUSTOMERS. 14 | /// 15 | ///

© COPYRIGHT MINDMOTION

16 | //////////////////////////////////////////////////////////////////////////////// 17 | 18 | // Define to prevent recursive inclusion 19 | #define _HAL_CRS_C_ 20 | 21 | // Files includes 22 | #include "hal_rcc.h" 23 | #include "hal_crs.h" 24 | 25 | //////////////////////////////////////////////////////////////////////////////// 26 | /// @addtogroup MM32_Hardware_Abstract_Layer 27 | /// @{ 28 | 29 | //////////////////////////////////////////////////////////////////////////////// 30 | /// @addtogroup CRS_HAL 31 | /// @{ 32 | 33 | //////////////////////////////////////////////////////////////////////////////// 34 | /// @addtogroup CRS_Exported_Functions 35 | /// @{ 36 | 37 | /// @} 38 | 39 | /// @} 40 | 41 | /// @} 42 | 43 | 44 | -------------------------------------------------------------------------------- /Device/MM32F3277/HAL_Lib/Src/hal_dbg.c: -------------------------------------------------------------------------------- 1 | //////////////////////////////////////////////////////////////////////////////// 2 | /// @file hal_dbg.c 3 | /// @author AE TEAM 4 | /// @brief THIS FILE PROVIDES ALL THE DBG FIRMWARE FUNCTIONS. 5 | //////////////////////////////////////////////////////////////////////////////// 6 | /// @attention 7 | /// 8 | /// THE EXISTING FIRMWARE IS ONLY FOR REFERENCE, WHICH IS DESIGNED TO PROVIDE 9 | /// CUSTOMERS WITH CODING INFORMATION ABOUT THEIR PRODUCTS SO THEY CAN SAVE 10 | /// TIME. THEREFORE, MINDMOTION SHALL NOT BE LIABLE FOR ANY DIRECT, INDIRECT OR 11 | /// CONSEQUENTIAL DAMAGES ABOUT ANY CLAIMS ARISING OUT OF THE CONTENT OF SUCH 12 | /// HARDWARE AND/OR THE USE OF THE CODING INFORMATION CONTAINED HEREIN IN 13 | /// CONNECTION WITH PRODUCTS MADE BY CUSTOMERS. 14 | /// 15 | ///

© COPYRIGHT MINDMOTION

16 | //////////////////////////////////////////////////////////////////////////////// 17 | 18 | // Define to prevent recursive inclusion 19 | #define _HAL_DBG_C 20 | 21 | // Files includes 22 | #include "types.h" 23 | #include "hal_dbg.h" 24 | 25 | //////////////////////////////////////////////////////////////////////////////// 26 | /// @addtogroup MM32_Hardware_Abstract_Layer 27 | /// @{ 28 | 29 | //////////////////////////////////////////////////////////////////////////////// 30 | /// @addtogroup DBG_HAL 31 | /// @{ 32 | 33 | //////////////////////////////////////////////////////////////////////////////// 34 | /// @addtogroup DBG_Exported_Functions 35 | /// @{ 36 | 37 | //////////////////////////////////////////////////////////////////////////////// 38 | /// @brief Enables or disables the specified DBG peripheral. 39 | /// @param periph: DBG peripheral. 40 | /// @param state: new state of the specified DBG peripheral. 41 | /// This parameter can be: ENABLE or DISABLE. 42 | /// @retval None. 43 | //////////////////////////////////////////////////////////////////////////////// 44 | void DBGMCU_Configure(u32 periph, FunctionalState state) 45 | { 46 | (state) ? (DBGMCU->CR |= periph) : (DBGMCU->CR &= ~periph); 47 | } 48 | 49 | /// @} 50 | 51 | /// @} 52 | 53 | /// @} 54 | -------------------------------------------------------------------------------- /Device/MM32F3277/HAL_Lib/Src/hal_uid.c: -------------------------------------------------------------------------------- 1 | //////////////////////////////////////////////////////////////////////////////// 2 | /// @file hal_uid.c 3 | /// @author AE TEAM 4 | /// @brief THIS FILE PROVIDES ALL THE UID FIRMWARE FUNCTIONS. 5 | //////////////////////////////////////////////////////////////////////////////// 6 | /// @attention 7 | /// 8 | /// THE EXISTING FIRMWARE IS ONLY FOR REFERENCE, WHICH IS DESIGNED TO PROVIDE 9 | /// CUSTOMERS WITH CODING INFORMATION ABOUT THEIR PRODUCTS SO THEY CAN SAVE 10 | /// TIME. THEREFORE, MINDMOTION SHALL NOT BE LIABLE FOR ANY DIRECT, INDIRECT OR 11 | /// CONSEQUENTIAL DAMAGES ABOUT ANY CLAIMS ARISING OUT OF THE CONTENT OF SUCH 12 | /// HARDWARE AND/OR THE USE OF THE CODING INFORMATION CONTAINED HEREIN IN 13 | /// CONNECTION WITH PRODUCTS MADE BY CUSTOMERS. 14 | /// 15 | ///

© COPYRIGHT MINDMOTION

16 | //////////////////////////////////////////////////////////////////////////////// 17 | 18 | // Define to prevent recursive inclusion 19 | #define _HAL_UID_C_ 20 | 21 | // Files includes 22 | #include "hal_uid.h" 23 | //////////////////////////////////////////////////////////////////////////////// 24 | /// @addtogroup MM32_Hardware_Abstract_Layer 25 | /// @{ 26 | 27 | //////////////////////////////////////////////////////////////////////////////// 28 | ///@addtogroup UID_HAL 29 | ///@{ 30 | 31 | //////////////////////////////////////////////////////////////////////////////// 32 | /// @addtogroup UID_Exported_Functions 33 | /// @{ 34 | 35 | u8 device_id_data[12] = {0}; 36 | 37 | //////////////////////////////////////////////////////////////////////////////// 38 | /// @brief Get device ID. 39 | /// @param None. 40 | /// @retval None. 41 | //////////////////////////////////////////////////////////////////////////////// 42 | void GetChipUID(void) 43 | { 44 | u8 i; 45 | u8* device_id; 46 | device_id = (u8*)UID_BASE; 47 | 48 | for (i = 0; i < 12; i++) { 49 | device_id_data[i] = *(device_id + i); 50 | } 51 | } 52 | 53 | /// @} 54 | 55 | /// @} 56 | 57 | /// @} 58 | -------------------------------------------------------------------------------- /Device/MM32F3277/Include/mm32_device.h: -------------------------------------------------------------------------------- 1 | ///----------------------------------------------------------------------------- 2 | /// @file mm32_device.h 3 | /// @brief CMSIS Cortex-M Peripheral Access Layer for MindMotion 4 | /// microcontroller devices 5 | /// 6 | /// This is a convenience header file for defining the part number on the 7 | /// build command line, instead of specifying the part specific header file. 8 | /// 9 | /// Example: Add MM32 series to your build options, to define part 10 | /// Add "#include "mm32_device.h" to your source files 11 | /// 12 | /// 13 | /// 14 | /// 15 | ///----------------------------------------------------------------------------- 16 | 17 | #ifndef __MM32_DEVICE_H 18 | #define __MM32_DEVICE_H 19 | 20 | #include "mm32_reg.h" 21 | 22 | #endif // __MM32_DEVICE_H 23 | 24 | -------------------------------------------------------------------------------- /Device/MM32F3277/Include/mm32_reg.h: -------------------------------------------------------------------------------- 1 | //////////////////////////////////////////////////////////////////////////////// 2 | /// @file mm32_reg.h 3 | /// @author AE TEAM 4 | /// @brief THIS FILE CONTAINS ALL THE FUNCTIONS PROTOTYPES FOR THE SERIES OF 5 | /// MM32 FIRMWARE LIBRARY. 6 | //////////////////////////////////////////////////////////////////////////////// 7 | /// @attention 8 | /// 9 | /// THE EXISTING FIRMWARE IS ONLY FOR REFERENCE, WHICH IS DESIGNED TO PROVIDE 10 | /// CUSTOMERS WITH CODING INFORMATION ABOUT THEIR PRODUCTS SO THEY CAN SAVE 11 | /// TIME. THEREFORE, MINDMOTION SHALL NOT BE LIABLE FOR ANY DIRECT, INDIRECT OR 12 | /// CONSEQUENTIAL DAMAGES ABOUT ANY CLAIMS ARISING OUT OF THE CONTENT OF SUCH 13 | /// HARDWARE AND/OR THE USE OF THE CODING INFORMATION CONTAINED HEREIN IN 14 | /// CONNECTION WITH PRODUCTS MADE BY CUSTOMERS. 15 | /// 16 | ///

© COPYRIGHT MINDMOTION

17 | //////////////////////////////////////////////////////////////////////////////// 18 | 19 | // Define to prevent recursive inclusion 20 | //////////////////////////////////////////////////////////////////////////////// 21 | #ifndef __MM32_REG_H 22 | #define __MM32_REG_H 23 | 24 | #include 25 | #include 26 | #include "types.h" 27 | 28 | 29 | 30 | 31 | #include "reg_common.h" 32 | #include "reg_adc.h" 33 | #include "reg_bkp.h" 34 | #include "reg_can.h" 35 | #include "reg_comp.h" 36 | #include "reg_crc.h" 37 | #include "reg_crs.h" 38 | #include "reg_dac.h" 39 | #include "reg_dbg.h" 40 | #include "reg_dma.h" 41 | #include "reg_exti.h" 42 | #include "reg_eth.h" 43 | #include "reg_flash.h" 44 | #include "reg_gpio.h" 45 | #include "reg_i2c.h" 46 | #include "reg_iwdg.h" 47 | #include "reg_pwm.h" 48 | #include "reg_pwr.h" 49 | #include "reg_rcc.h" 50 | #include "reg_rtc.h" 51 | #include "reg_sdio.h" 52 | #include "reg_spi.h" 53 | #include "reg_syscfg.h" 54 | #include "reg_tim.h" 55 | #include "reg_uart.h" 56 | #include "reg_usb_otg_fs.h" 57 | #include "reg_wwdg.h" 58 | 59 | //////////////////////////////////////////////////////////////////////////////// 60 | #include "mm32_reg_redefine_v1.h" 61 | //////////////////////////////////////////////////////////////////////////////// 62 | 63 | /// @} 64 | 65 | /// @} 66 | 67 | /// @} 68 | 69 | //////////////////////////////////////////////////////////////////////////////// 70 | #endif // __MM32_REG_H 71 | //////////////////////////////////////////////////////////////////////////////// 72 | -------------------------------------------------------------------------------- /Device/MM32F3277/Include/reg_pwm.h: -------------------------------------------------------------------------------- 1 | //////////////////////////////////////////////////////////////////////////////// 2 | /// @file reg_pwm.h 3 | /// @author AE TEAM 4 | /// @brief THIS FILE CONTAINS ALL THE FUNCTIONS PROTOTYPES FOR THE SERIES OF 5 | /// MM32 FIRMWARE LIBRARY. 6 | //////////////////////////////////////////////////////////////////////////////// 7 | /// @attention 8 | /// 9 | /// THE EXISTING FIRMWARE IS ONLY FOR REFERENCE, WHICH IS DESIGNED TO PROVIDE 10 | /// CUSTOMERS WITH CODING INFORMATION ABOUT THEIR PRODUCTS SO THEY CAN SAVE 11 | /// TIME. THEREFORE, MINDMOTION SHALL NOT BE LIABLE FOR ANY DIRECT, INDIRECT OR 12 | /// CONSEQUENTIAL DAMAGES ABOUT ANY CLAIMS ARISING OUT OF THE CONTENT OF SUCH 13 | /// HARDWARE AND/OR THE USE OF THE CODING INFORMATION CONTAINED HEREIN IN 14 | /// CONNECTION WITH PRODUCTS MADE BY CUSTOMERS. 15 | /// 16 | ///

© COPYRIGHT MINDMOTION

17 | //////////////////////////////////////////////////////////////////////////////// 18 | 19 | // Define to prevent recursive inclusion 20 | 21 | #ifndef __REG_PWM_H 22 | #define __REG_PWM_H 23 | 24 | // Files includes 25 | 26 | #include 27 | #include 28 | #include "types.h" 29 | 30 | 31 | 32 | 33 | #if defined ( __CC_ARM ) 34 | #pragma anon_unions 35 | #endif 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | //////////////////////////////////////////////////////////////////////////////// 45 | /// @brief PWM Base Address Definition 46 | //////////////////////////////////////////////////////////////////////////////// 47 | 48 | 49 | 50 | 51 | 52 | //////////////////////////////////////////////////////////////////////////////// 53 | /// @brief PWM Register Structure Definition 54 | //////////////////////////////////////////////////////////////////////////////// 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | /// @} 65 | 66 | /// @} 67 | 68 | /// @} 69 | 70 | //////////////////////////////////////////////////////////////////////////////// 71 | #endif 72 | //////////////////////////////////////////////////////////////////////////////// 73 | -------------------------------------------------------------------------------- /Device/MM32F3277/Include/reg_root.h: -------------------------------------------------------------------------------- 1 | //////////////////////////////////////////////////////////////////////////////// 2 | /// @file reg_root.h 3 | /// @author AE TEAM 4 | /// @brief THIS FILE CONTAINS ALL THE FUNCTIONS PROTOTYPES FOR THE SERIES OF 5 | /// MM32 FIRMWARE LIBRARY. 6 | //////////////////////////////////////////////////////////////////////////////// 7 | /// @attention 8 | /// 9 | /// THE EXISTING FIRMWARE IS ONLY FOR REFERENCE, WHICH IS DESIGNED TO PROVIDE 10 | /// CUSTOMERS WITH CODING INFORMATION ABOUT THEIR PRODUCTS SO THEY CAN SAVE 11 | /// TIME. THEREFORE, MINDMOTION SHALL NOT BE LIABLE FOR ANY DIRECT, INDIRECT OR 12 | /// CONSEQUENTIAL DAMAGES ABOUT ANY CLAIMS ARISING OUT OF THE CONTENT OF SUCH 13 | /// HARDWARE AND/OR THE USE OF THE CODING INFORMATION CONTAINED HEREIN IN 14 | /// CONNECTION WITH PRODUCTS MADE BY CUSTOMERS. 15 | /// 16 | ///

© COPYRIGHT MINDMOTION

17 | //////////////////////////////////////////////////////////////////////////////// 18 | 19 | // Define to prevent recursive inclusion 20 | 21 | #ifndef __REG_ROOT_H 22 | #define __REG_ROOT_H 23 | 24 | // Files includes 25 | 26 | #include 27 | #include 28 | #include "types.h" 29 | #include "reg_common.h" 30 | 31 | 32 | 33 | #if defined ( __CC_ARM ) 34 | #pragma anon_unions 35 | #endif 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | //////////////////////////////////////////////////////////////////////////////// 45 | /// @brief SQRT Base Address Definition 46 | //////////////////////////////////////////////////////////////////////////////// 47 | 48 | 49 | 50 | 51 | 52 | 53 | //////////////////////////////////////////////////////////////////////////////// 54 | /// @brief SQRT Register Structure Definition 55 | //////////////////////////////////////////////////////////////////////////////// 56 | 57 | 58 | //////////////////////////////////////////////////////////////////////////////// 59 | /// @brief SQRT type pointer Definition 60 | //////////////////////////////////////////////////////////////////////////////// 61 | 62 | 63 | 64 | 65 | 66 | 67 | /// @} 68 | 69 | /// @} 70 | 71 | /// @} 72 | 73 | //////////////////////////////////////////////////////////////////////////////// 74 | #endif 75 | //////////////////////////////////////////////////////////////////////////////// 76 | -------------------------------------------------------------------------------- /Device/MM32F3277/Include/reg_usb.h: -------------------------------------------------------------------------------- 1 | //////////////////////////////////////////////////////////////////////////////// 2 | /// @file reg_usb.h 3 | /// @author AE TEAM 4 | /// @brief THIS FILE CONTAINS ALL THE FUNCTIONS PROTOTYPES FOR THE SERIES OF 5 | /// MM32 FIRMWARE LIBRARY. 6 | //////////////////////////////////////////////////////////////////////////////// 7 | /// @attention 8 | /// 9 | /// THE EXISTING FIRMWARE IS ONLY FOR REFERENCE, WHICH IS DESIGNED TO PROVIDE 10 | /// CUSTOMERS WITH CODING INFORMATION ABOUT THEIR PRODUCTS SO THEY CAN SAVE 11 | /// TIME. THEREFORE, MINDMOTION SHALL NOT BE LIABLE FOR ANY DIRECT, INDIRECT OR 12 | /// CONSEQUENTIAL DAMAGES ABOUT ANY CLAIMS ARISING OUT OF THE CONTENT OF SUCH 13 | /// HARDWARE AND/OR THE USE OF THE CODING INFORMATION CONTAINED HEREIN IN 14 | /// CONNECTION WITH PRODUCTS MADE BY CUSTOMERS. 15 | /// 16 | ///

© COPYRIGHT MINDMOTION

17 | //////////////////////////////////////////////////////////////////////////////// 18 | 19 | // Define to prevent recursive inclusion 20 | 21 | #ifndef __REG_USB_H 22 | #define __REG_USB_H 23 | 24 | // Files includes 25 | 26 | #include 27 | #include 28 | #include "types.h" 29 | 30 | 31 | 32 | 33 | #if defined ( __CC_ARM ) 34 | #pragma anon_unions 35 | #endif 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | //////////////////////////////////////////////////////////////////////////////// 47 | /// @brief USB Base Address Definition 48 | //////////////////////////////////////////////////////////////////////////////// 49 | 50 | 51 | 52 | 53 | 54 | //////////////////////////////////////////////////////////////////////////////// 55 | /// @brief USB Register Structure Definition 56 | //////////////////////////////////////////////////////////////////////////////// 57 | 58 | //////////////////////////////////////////////////////////////////////////////// 59 | /// @brief USBD type pointer Definition 60 | //////////////////////////////////////////////////////////////////////////////// 61 | 62 | 63 | 64 | 65 | 66 | 67 | /// @} 68 | 69 | /// @} 70 | 71 | /// @} 72 | 73 | //////////////////////////////////////////////////////////////////////////////// 74 | #endif 75 | //////////////////////////////////////////////////////////////////////////////// 76 | -------------------------------------------------------------------------------- /Device/MM32F3277/Source/system_mm32f327x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/Device/MM32F3277/Source/system_mm32f327x.c -------------------------------------------------------------------------------- /IARprj/Debug/Exe/MM32.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Exe/MM32.out -------------------------------------------------------------------------------- /IARprj/Debug/Exe/MM32.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Exe/MM32.sim -------------------------------------------------------------------------------- /IARprj/Debug/List/MM32.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/List/MM32.map -------------------------------------------------------------------------------- /IARprj/Debug/Obj/Backup (2) of LQ_F3277_Lib.pbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/Backup (2) of LQ_F3277_Lib.pbd -------------------------------------------------------------------------------- /IARprj/Debug/Obj/Backup (2) of LQ_F3277_Lib.pbd.browse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/Backup (2) of LQ_F3277_Lib.pbd.browse -------------------------------------------------------------------------------- /IARprj/Debug/Obj/Backup (2) of LQ_F3277_Lib.pbd.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/Backup (2) of LQ_F3277_Lib.pbd.tmp -------------------------------------------------------------------------------- /IARprj/Debug/Obj/Backup of LQ_F3277_Lib.pbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/Backup of LQ_F3277_Lib.pbd -------------------------------------------------------------------------------- /IARprj/Debug/Obj/Backup of LQ_F3277_Lib.pbd.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/Backup of LQ_F3277_Lib.pbd.tmp -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_ADC.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_ADC.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_ADC.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_ADC.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_AnoScope.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_AnoScope.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_AnoScope.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_AnoScope.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_Balance.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_Balance.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_Balance.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_Balance.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_CAMERA.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_CAMERA.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_CAMERA.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_CAMERA.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_DMA.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_DMA.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_DMA.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_DMA.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_Encoder.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_Encoder.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_Encoder.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_Encoder.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_F3277_Lib.pbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_F3277_Lib.pbd -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_F3277_Lib.pbd.browse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_F3277_Lib.pbd.browse -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_FLASH.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_FLASH.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_FLASH.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_FLASH.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_GPIO.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_GPIO.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_GPIO.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_GPIO.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_GPIO_EXIT.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_GPIO_EXIT.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_GPIO_EXIT.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_GPIO_EXIT.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_GPIO_KEY.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_GPIO_KEY.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_GPIO_KEY.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_GPIO_KEY.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_GPIO_LED.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_GPIO_LED.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_GPIO_LED.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_GPIO_LED.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_I2C.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_I2C.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_I2C.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_I2C.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_I2C_MPU6050.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_I2C_MPU6050.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_I2C_MPU6050.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_I2C_MPU6050.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_ICM20689.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_ICM20689.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_ICM20689.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_ICM20689.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_ImageProcess.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_ImageProcess.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_ImageProcess.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_ImageProcess.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_Inductor.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_Inductor.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_Inductor.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_Inductor.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_MT9V034.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_MT9V034.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_MT9V034.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_MT9V034.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_MotorServo.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_MotorServo.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_MotorServo.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_MotorServo.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_OLED096.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_OLED096.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_OLED096.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_OLED096.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_PID.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_PID.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_PID.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_PID.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_PWM.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_PWM.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_PWM.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_PWM.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_SOFTI2C.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_SOFTI2C.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_SOFTI2C.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_SOFTI2C.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_SOFTSPI.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_SOFTSPI.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_SOFTSPI.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_SOFTSPI.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_SPI.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_SPI.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_SPI.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_SPI.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_SYS.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_SYS.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_SYS.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_SYS.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_TFT18.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_TFT18.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_TFT18.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_TFT18.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_TIMER.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_TIMER.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_TIMER.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_TIMER.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_UART.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_UART.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_UART.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_UART.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_demo_DMP.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_demo_DMP.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/LQ_demo_DMP.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/LQ_demo_DMP.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/SIR_BELL.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/SIR_BELL.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/SIR_BELL.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/SIR_BELL.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_adc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_adc.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_adc.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_adc.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_bkp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_bkp.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_bkp.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_bkp.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_can.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_can.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_can.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_can.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_comp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_comp.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_comp.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_comp.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_crc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_crc.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_crc.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_crc.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_crs.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_crs.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_crs.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_crs.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_dac.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_dac.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_dac.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_dac.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_dbg.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_dbg.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_dbg.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_dbg.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_dma.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_dma.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_dma.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_dma.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_eth.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_eth.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_eth.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_eth.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_exti.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_exti.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_exti.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_exti.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_flash.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_flash.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_flash.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_flash.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_fsmc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_fsmc.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_fsmc.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_fsmc.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_gpio.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_gpio.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_gpio.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_i2c.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_i2c.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_i2c.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_i2c.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_iwdg.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_iwdg.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_iwdg.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_iwdg.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_misc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_misc.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_misc.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_misc.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_pwr.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_pwr.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_pwr.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_pwr.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_rcc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_rcc.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_rcc.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_rcc.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_rtc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_rtc.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_rtc.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_rtc.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_sdio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_sdio.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_sdio.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_sdio.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_spi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_spi.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_spi.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_spi.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_tim.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_tim.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_tim.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_tim.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_uart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_uart.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_uart.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_uart.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_uid.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_uid.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_uid.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_uid.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_ver.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_ver.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_ver.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_ver.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_wwdg.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_wwdg.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/hal_wwdg.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/hal_wwdg.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/main.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/main.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/main.pbi -------------------------------------------------------------------------------- /IARprj/Debug/Obj/startup_mm32f327x_iar.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/startup_mm32f327x_iar.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/system_mm32f327x.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/system_mm32f327x.o -------------------------------------------------------------------------------- /IARprj/Debug/Obj/system_mm32f327x.pbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/IARprj/Debug/Obj/system_mm32f327x.pbi -------------------------------------------------------------------------------- /IARprj/IAR删除临时文件.bat: -------------------------------------------------------------------------------- 1 | del *.map /s 2 | del *.out /s 3 | del *.o /s 4 | del *.pbi /s 5 | del *.crun /s 6 | del *.dbgdt /s 7 | del *.ps1 /s 8 | del *.ps1 /s 9 | del *.xcl /s 10 | del *.reggroups /s 11 | rmdir Release /s /q 12 | rmdir Debug /s /q 13 | rmdir settings /s /q 14 | 15 | exit 16 | -------------------------------------------------------------------------------- /IARprj/LQ_F3277_Lib.eww: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $WS_DIR$\LQ_F3277_Lib.ewp 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /IARprj/settings/Backup (2) of LQ_F3277_Lib.Debug.cspy.bat: -------------------------------------------------------------------------------- 1 | @REM This batch file has been generated by the IAR Embedded Workbench 2 | @REM C-SPY Debugger, as an aid to preparing a command line for running 3 | @REM the cspybat command line utility using the appropriate settings. 4 | @REM 5 | @REM Note that this file is generated every time a new debug session 6 | @REM is initialized, so you may want to move or rename the file before 7 | @REM making changes. 8 | @REM 9 | @REM You can launch cspybat by typing the name of this batch file followed 10 | @REM by the name of the debug file (usually an ELF/DWARF or UBROF file). 11 | @REM 12 | @REM Read about available command line parameters in the C-SPY Debugging 13 | @REM Guide. Hints about additional command line parameters that may be 14 | @REM useful in specific cases: 15 | @REM --download_only Downloads a code image without starting a debug 16 | @REM session afterwards. 17 | @REM --silent Omits the sign-on message. 18 | @REM --timeout Limits the maximum allowed execution time. 19 | @REM 20 | 21 | 22 | @echo off 23 | 24 | if not "%~1" == "" goto debugFile 25 | 26 | @echo on 27 | 28 | "E:\car\common\bin\cspybat" -f "E:\智能车\LQ_F3277_Lib 2111119直立信标\IARprj\settings\Backup (2) of LQ_F3277_Lib.Debug.general.xcl" --backend -f "E:\智能车\LQ_F3277_Lib 2111119直立信标\IARprj\settings\Backup (2) of LQ_F3277_Lib.Debug.driver.xcl" 29 | 30 | @echo off 31 | goto end 32 | 33 | :debugFile 34 | 35 | @echo on 36 | 37 | "E:\car\common\bin\cspybat" -f "E:\智能车\LQ_F3277_Lib 2111119直立信标\IARprj\settings\Backup (2) of LQ_F3277_Lib.Debug.general.xcl" "--debug_file=%~1" --backend -f "E:\智能车\LQ_F3277_Lib 2111119直立信标\IARprj\settings\Backup (2) of LQ_F3277_Lib.Debug.driver.xcl" 38 | 39 | @echo off 40 | :end -------------------------------------------------------------------------------- /IARprj/settings/Backup (2) of LQ_F3277_Lib.Debug.cspy.ps1: -------------------------------------------------------------------------------- 1 | param([String]$debugfile = ""); 2 | 3 | # This powershell file has been generated by the IAR Embedded Workbench 4 | # C - SPY Debugger, as an aid to preparing a command line for running 5 | # the cspybat command line utility using the appropriate settings. 6 | # 7 | # Note that this file is generated every time a new debug session 8 | # is initialized, so you may want to move or rename the file before 9 | # making changes. 10 | # 11 | # You can launch cspybat by typing Powershell.exe -File followed by the name of this batch file, followed 12 | # by the name of the debug file (usually an ELF / DWARF or UBROF file). 13 | # 14 | # Read about available command line parameters in the C - SPY Debugging 15 | # Guide. Hints about additional command line parameters that may be 16 | # useful in specific cases : 17 | # --download_only Downloads a code image without starting a debug 18 | # session afterwards. 19 | # --silent Omits the sign - on message. 20 | # --timeout Limits the maximum allowed execution time. 21 | # 22 | 23 | 24 | if ($debugfile -eq "") 25 | { 26 | & "E:\car\common\bin\cspybat" -f "E:\智能车\LQ_F3277_Lib 2111119直立信标\IARprj\settings\Backup (2) of LQ_F3277_Lib.Debug.general.xcl" --backend -f "E:\智能车\LQ_F3277_Lib 2111119直立信标\IARprj\settings\Backup (2) of LQ_F3277_Lib.Debug.driver.xcl" 27 | } 28 | else 29 | { 30 | & "E:\car\common\bin\cspybat" -f "E:\智能车\LQ_F3277_Lib 2111119直立信标\IARprj\settings\Backup (2) of LQ_F3277_Lib.Debug.general.xcl" --debug_file=$debugfile --backend -f "E:\智能车\LQ_F3277_Lib 2111119直立信标\IARprj\settings\Backup (2) of LQ_F3277_Lib.Debug.driver.xcl" 31 | } 32 | -------------------------------------------------------------------------------- /IARprj/settings/Backup (2) of LQ_F3277_Lib.Debug.driver.xcl: -------------------------------------------------------------------------------- 1 | "--endian=little" 2 | 3 | "--cpu=Cortex-M3" 4 | 5 | "--fpu=None" 6 | 7 | "-p" 8 | 9 | "E:\car\arm\CONFIG\debugger\MindMotion\MM32F3270.ddf" 10 | 11 | "--semihosting" 12 | 13 | "--device=MM32F3277G9P" 14 | 15 | "--multicore_nr_of_cores=1" 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /IARprj/settings/Backup (2) of LQ_F3277_Lib.Debug.general.xcl: -------------------------------------------------------------------------------- 1 | "E:\car\arm\bin\armproc.dll" 2 | 3 | "E:\car\arm\bin\armsim2.dll" 4 | 5 | "E:\智能车\LQ_F3277_Lib 2111119直立信标\IARprj\Debug\Exe\MM32.out" 6 | 7 | --plugin "E:\car\arm\bin\armbat.dll" 8 | 9 | --device_macro "E:\car\arm\config\debugger\MindMotion\MM32F3270.dmac" 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /IARprj/settings/Backup (2) of LQ_F3277_Lib.crun: -------------------------------------------------------------------------------- 1 | 2 | 3 | 1 4 | 5 | 6 | * 7 | * 8 | * 9 | 0 10 | 1 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /IARprj/settings/Backup (2) of LQ_F3277_Lib.dnx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 1465574547 5 | 6 | 7 | _ 0 8 | 9 | 10 | 0 11 | 1 12 | 90 13 | 1 14 | 1 15 | 1 16 | main 17 | 0 18 | 50 19 | 20 | 21 | 0 22 | 23 | 24 | 0 25 | 1 26 | 0 27 | 0 28 | 29 | 30 | 31 | 0 32 | 1 33 | 34 | 35 | 0 36 | 37 | 38 | 1 39 | 40 | 41 | _ 0 42 | _ "" 43 | _ 0 44 | 45 | 46 | _ 0 47 | _ 0 48 | 49 | 50 | _ 0 51 | _ "" 52 | 53 | 54 | 0 55 | 56 | 57 | 0 58 | 0 59 | 1 60 | 0 61 | 1 62 | 0 63 | 64 | 65 | 0 66 | 0 67 | 1 68 | 0 69 | 1 70 | 71 | 72 | 0 73 | 74 | 75 | 0 76 | 77 | 78 | 1 79 | 80 | 81 | 1 82 | 0 83 | 1 84 | 0 85 | 1 86 | 87 | 88 | 0 89 | 0 90 | 91 | 92 | 10000000 93 | 0 94 | 1 95 | 96 | 97 | -------------------------------------------------------------------------------- /IARprj/settings/Backup of LQ_F3277_Lib.Debug.cspy.bat: -------------------------------------------------------------------------------- 1 | @REM This batch file has been generated by the IAR Embedded Workbench 2 | @REM C-SPY Debugger, as an aid to preparing a command line for running 3 | @REM the cspybat command line utility using the appropriate settings. 4 | @REM 5 | @REM Note that this file is generated every time a new debug session 6 | @REM is initialized, so you may want to move or rename the file before 7 | @REM making changes. 8 | @REM 9 | @REM You can launch cspybat by typing the name of this batch file followed 10 | @REM by the name of the debug file (usually an ELF/DWARF or UBROF file). 11 | @REM 12 | @REM Read about available command line parameters in the C-SPY Debugging 13 | @REM Guide. Hints about additional command line parameters that may be 14 | @REM useful in specific cases: 15 | @REM --download_only Downloads a code image without starting a debug 16 | @REM session afterwards. 17 | @REM --silent Omits the sign-on message. 18 | @REM --timeout Limits the maximum allowed execution time. 19 | @REM 20 | 21 | 22 | @echo off 23 | 24 | if not "%~1" == "" goto debugFile 25 | 26 | @echo on 27 | 28 | "E:\car\common\bin\cspybat" -f "E:\智能车\LQ_F3277_Lib 2111119直立信标\IARprj\settings\Backup of LQ_F3277_Lib.Debug.general.xcl" --backend -f "E:\智能车\LQ_F3277_Lib 2111119直立信标\IARprj\settings\Backup of LQ_F3277_Lib.Debug.driver.xcl" 29 | 30 | @echo off 31 | goto end 32 | 33 | :debugFile 34 | 35 | @echo on 36 | 37 | "E:\car\common\bin\cspybat" -f "E:\智能车\LQ_F3277_Lib 2111119直立信标\IARprj\settings\Backup of LQ_F3277_Lib.Debug.general.xcl" "--debug_file=%~1" --backend -f "E:\智能车\LQ_F3277_Lib 2111119直立信标\IARprj\settings\Backup of LQ_F3277_Lib.Debug.driver.xcl" 38 | 39 | @echo off 40 | :end -------------------------------------------------------------------------------- /IARprj/settings/Backup of LQ_F3277_Lib.Debug.cspy.ps1: -------------------------------------------------------------------------------- 1 | param([String]$debugfile = ""); 2 | 3 | # This powershell file has been generated by the IAR Embedded Workbench 4 | # C - SPY Debugger, as an aid to preparing a command line for running 5 | # the cspybat command line utility using the appropriate settings. 6 | # 7 | # Note that this file is generated every time a new debug session 8 | # is initialized, so you may want to move or rename the file before 9 | # making changes. 10 | # 11 | # You can launch cspybat by typing Powershell.exe -File followed by the name of this batch file, followed 12 | # by the name of the debug file (usually an ELF / DWARF or UBROF file). 13 | # 14 | # Read about available command line parameters in the C - SPY Debugging 15 | # Guide. Hints about additional command line parameters that may be 16 | # useful in specific cases : 17 | # --download_only Downloads a code image without starting a debug 18 | # session afterwards. 19 | # --silent Omits the sign - on message. 20 | # --timeout Limits the maximum allowed execution time. 21 | # 22 | 23 | 24 | if ($debugfile -eq "") 25 | { 26 | & "E:\car\common\bin\cspybat" -f "E:\智能车\LQ_F3277_Lib 2111119直立信标\IARprj\settings\Backup of LQ_F3277_Lib.Debug.general.xcl" --backend -f "E:\智能车\LQ_F3277_Lib 2111119直立信标\IARprj\settings\Backup of LQ_F3277_Lib.Debug.driver.xcl" 27 | } 28 | else 29 | { 30 | & "E:\car\common\bin\cspybat" -f "E:\智能车\LQ_F3277_Lib 2111119直立信标\IARprj\settings\Backup of LQ_F3277_Lib.Debug.general.xcl" --debug_file=$debugfile --backend -f "E:\智能车\LQ_F3277_Lib 2111119直立信标\IARprj\settings\Backup of LQ_F3277_Lib.Debug.driver.xcl" 31 | } 32 | -------------------------------------------------------------------------------- /IARprj/settings/Backup of LQ_F3277_Lib.Debug.driver.xcl: -------------------------------------------------------------------------------- 1 | "--endian=little" 2 | 3 | "--cpu=Cortex-M3" 4 | 5 | "--fpu=None" 6 | 7 | "-p" 8 | 9 | "E:\car\arm\CONFIG\debugger\MindMotion\MM32F3270.ddf" 10 | 11 | "--semihosting" 12 | 13 | "--device=MM32F3277G9P" 14 | 15 | "--multicore_nr_of_cores=1" 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /IARprj/settings/Backup of LQ_F3277_Lib.Debug.general.xcl: -------------------------------------------------------------------------------- 1 | "E:\car\arm\bin\armproc.dll" 2 | 3 | "E:\car\arm\bin\armsim2.dll" 4 | 5 | "E:\智能车\LQ_F3277_Lib 2111119直立信标\IARprj\Debug\Exe\MM32.out" 6 | 7 | --plugin "E:\car\arm\bin\armbat.dll" 8 | 9 | --device_macro "E:\car\arm\config\debugger\MindMotion\MM32F3270.dmac" 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /IARprj/settings/Backup of LQ_F3277_Lib.crun: -------------------------------------------------------------------------------- 1 | 2 | 3 | 1 4 | 5 | 6 | * 7 | * 8 | * 9 | 0 10 | 1 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /IARprj/settings/Backup of LQ_F3277_Lib.dnx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 745468015 5 | 6 | 7 | _ 0 8 | 9 | 10 | 0 11 | 1 12 | 90 13 | 1 14 | 1 15 | 1 16 | main 17 | 0 18 | 50 19 | 20 | 21 | 0 22 | 23 | 24 | 0 25 | 1 26 | 27 | 28 | _ 0 29 | _ 0 30 | 31 | 32 | 0 33 | 34 | 35 | 0 36 | 1 37 | 0 38 | 0 39 | 40 | 41 | 42 | 0 43 | 44 | 45 | 1 46 | 47 | 48 | _ 0 49 | _ "" 50 | 51 | 52 | _ 0 53 | _ "" 54 | _ 0 55 | 56 | 57 | 0 58 | 0 59 | 1 60 | 0 61 | 1 62 | 0 63 | 64 | 65 | 0 66 | 0 67 | 1 68 | 0 69 | 1 70 | 71 | 72 | 0 73 | 74 | 75 | 0 76 | 77 | 78 | 1 79 | 80 | 81 | 1 82 | 0 83 | 1 84 | 0 85 | 1 86 | 87 | 88 | 0 89 | 0 90 | 91 | 92 | 10000000 93 | 0 94 | 1 95 | 96 | 97 | -------------------------------------------------------------------------------- /IARprj/settings/LQ_F3277_Lib.Debug.cspy.bat: -------------------------------------------------------------------------------- 1 | @REM This batch file has been generated by the IAR Embedded Workbench 2 | @REM C-SPY Debugger, as an aid to preparing a command line for running 3 | @REM the cspybat command line utility using the appropriate settings. 4 | @REM 5 | @REM Note that this file is generated every time a new debug session 6 | @REM is initialized, so you may want to move or rename the file before 7 | @REM making changes. 8 | @REM 9 | @REM You can launch cspybat by typing the name of this batch file followed 10 | @REM by the name of the debug file (usually an ELF/DWARF or UBROF file). 11 | @REM 12 | @REM Read about available command line parameters in the C-SPY Debugging 13 | @REM Guide. Hints about additional command line parameters that may be 14 | @REM useful in specific cases: 15 | @REM --download_only Downloads a code image without starting a debug 16 | @REM session afterwards. 17 | @REM --silent Omits the sign-on message. 18 | @REM --timeout Limits the maximum allowed execution time. 19 | @REM 20 | 21 | 22 | @echo off 23 | 24 | if not "%~1" == "" goto debugFile 25 | 26 | @echo on 27 | 28 | "E:\car\common\bin\cspybat" -f "C:\Users\Administrator\Desktop\7.19晚\IARprj\settings\LQ_F3277_Lib.Debug.general.xcl" --backend -f "C:\Users\Administrator\Desktop\7.19晚\IARprj\settings\LQ_F3277_Lib.Debug.driver.xcl" 29 | 30 | @echo off 31 | goto end 32 | 33 | :debugFile 34 | 35 | @echo on 36 | 37 | "E:\car\common\bin\cspybat" -f "C:\Users\Administrator\Desktop\7.19晚\IARprj\settings\LQ_F3277_Lib.Debug.general.xcl" "--debug_file=%~1" --backend -f "C:\Users\Administrator\Desktop\7.19晚\IARprj\settings\LQ_F3277_Lib.Debug.driver.xcl" 38 | 39 | @echo off 40 | :end -------------------------------------------------------------------------------- /IARprj/settings/LQ_F3277_Lib.Debug.cspy.ps1: -------------------------------------------------------------------------------- 1 | param([String]$debugfile = ""); 2 | 3 | # This powershell file has been generated by the IAR Embedded Workbench 4 | # C - SPY Debugger, as an aid to preparing a command line for running 5 | # the cspybat command line utility using the appropriate settings. 6 | # 7 | # Note that this file is generated every time a new debug session 8 | # is initialized, so you may want to move or rename the file before 9 | # making changes. 10 | # 11 | # You can launch cspybat by typing Powershell.exe -File followed by the name of this batch file, followed 12 | # by the name of the debug file (usually an ELF / DWARF or UBROF file). 13 | # 14 | # Read about available command line parameters in the C - SPY Debugging 15 | # Guide. Hints about additional command line parameters that may be 16 | # useful in specific cases : 17 | # --download_only Downloads a code image without starting a debug 18 | # session afterwards. 19 | # --silent Omits the sign - on message. 20 | # --timeout Limits the maximum allowed execution time. 21 | # 22 | 23 | 24 | if ($debugfile -eq "") 25 | { 26 | & "E:\car\common\bin\cspybat" -f "C:\Users\Administrator\Desktop\7.19晚\IARprj\settings\LQ_F3277_Lib.Debug.general.xcl" --backend -f "C:\Users\Administrator\Desktop\7.19晚\IARprj\settings\LQ_F3277_Lib.Debug.driver.xcl" 27 | } 28 | else 29 | { 30 | & "E:\car\common\bin\cspybat" -f "C:\Users\Administrator\Desktop\7.19晚\IARprj\settings\LQ_F3277_Lib.Debug.general.xcl" --debug_file=$debugfile --backend -f "C:\Users\Administrator\Desktop\7.19晚\IARprj\settings\LQ_F3277_Lib.Debug.driver.xcl" 31 | } 32 | -------------------------------------------------------------------------------- /IARprj/settings/LQ_F3277_Lib.Debug.driver.xcl: -------------------------------------------------------------------------------- 1 | "--endian=little" 2 | 3 | "--cpu=Cortex-M3" 4 | 5 | "--fpu=None" 6 | 7 | "-p" 8 | 9 | "E:\car\arm\CONFIG\debugger\MindMotion\MM32F3270.ddf" 10 | 11 | "--semihosting" 12 | 13 | "--device=MM32F3277G9P" 14 | 15 | "--drv_communication=USB0" 16 | 17 | "--drv_interface_speed=4000" 18 | 19 | "--jlink_reset_strategy=0,2" 20 | 21 | "--drv_interface=SWD" 22 | 23 | "--drv_catch_exceptions=0x000" 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /IARprj/settings/LQ_F3277_Lib.Debug.general.xcl: -------------------------------------------------------------------------------- 1 | "E:\car\arm\bin\armproc.dll" 2 | 3 | "E:\car\arm\bin\armjlink2.dll" 4 | 5 | "C:\Users\Administrator\Desktop\7.19晚\IARprj\Debug\Exe\MM32.out" 6 | 7 | --plugin "E:\car\arm\bin\armbat.dll" 8 | 9 | --device_macro "E:\car\arm\config\debugger\MindMotion\MM32F3270.dmac" 10 | 11 | --flash_loader "E:\car\arm\config\flashloader\MindMotion\FlashMM32F327xGx.board" 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /IARprj/settings/LQ_F3277_Lib.crun: -------------------------------------------------------------------------------- 1 | 2 | 3 | 1 4 | 5 | 6 | * 7 | * 8 | * 9 | 0 10 | 1 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /IARprj/settings/LQ_F3277_Lib_Debug.jlink: -------------------------------------------------------------------------------- 1 | [BREAKPOINTS] 2 | ForceImpTypeAny = 0 3 | ShowInfoWin = 1 4 | EnableFlashBP = 2 5 | BPDuringExecution = 0 6 | [CFI] 7 | CFISize = 0x00 8 | CFIAddr = 0x00 9 | [CPU] 10 | MonModeVTableAddr = 0xFFFFFFFF 11 | MonModeDebug = 0 12 | MaxNumAPs = 0 13 | LowPowerHandlingMode = 0 14 | OverrideMemMap = 0 15 | AllowSimulation = 1 16 | ScriptFile="" 17 | [FLASH] 18 | CacheExcludeSize = 0x00 19 | CacheExcludeAddr = 0x00 20 | MinNumBytesFlashDL = 0 21 | SkipProgOnCRCMatch = 1 22 | VerifyDownload = 1 23 | AllowCaching = 1 24 | EnableFlashDL = 2 25 | Override = 1 26 | Device="ARM7" 27 | [GENERAL] 28 | WorkRAMSize = 0x00 29 | WorkRAMAddr = 0x00 30 | RAMUsageLimit = 0x00 31 | [SWO] 32 | SWOLogFile="" 33 | [MEM] 34 | RdOverrideOrMask = 0x00 35 | RdOverrideAndMask = 0xFFFFFFFF 36 | RdOverrideAddr = 0xFFFFFFFF 37 | WrOverrideOrMask = 0x00 38 | WrOverrideAndMask = 0xFFFFFFFF 39 | WrOverrideAddr = 0xFFFFFFFF 40 | -------------------------------------------------------------------------------- /MDKprj/JLinkLog.txt: -------------------------------------------------------------------------------- 1 | T3F3C 000:013.667 SEGGER J-Link V7.22b Log File 2 | T3F3C 000:014.195 DLL Compiled: Jun 17 2021 17:22:49 3 | T3F3C 000:014.208 Logging started @ 2022-02-23 13:50 4 | T3F3C 000:014.221 - 14.228ms 5 | T3F3C 000:014.401 JLINK_SetWarnOutHandler(...) 6 | T3F3C 000:014.545 - 0.151ms 7 | T3F3C 000:014.561 JLINK_OpenEx(...) 8 | T3F3C 000:023.608 Firmware: J-Link V9 compiled May 17 2019 09:50:41 9 | T3F3C 000:024.197 Firmware: J-Link V9 compiled May 17 2019 09:50:41 10 | T3F3C 000:025.073 Decompressing FW timestamp took 400 us 11 | T3F3C 000:030.371 Decompressing FW took 5100 us 12 | T3F3C 000:030.664 Looking for J-Link GUI Server exe at: D:\diansai\stm32\ARM\Segger\JLinkGUIServer.exe 13 | T3F3C 000:030.820 Looking for J-Link GUI Server exe at: \JLinkGUIServer.exe 14 | T3F3C 000:333.776 Failed to connect to J-Link GUI Server. 15 | T3F3C 001:572.833 Updating firmware: J-Link V9 compiled May 7 2021 16:26:12 16 | T3F3C 001:575.045 Replacing firmware: J-Link V9 compiled May 17 2019 09:50:41 17 | T3F3C 001:729.324 18 | ***** Error: 19 | T3F3C 001:729.349 Communication timed out: Requested 1 bytes, received -1 bytes ! 20 | T3F3C 001:729.357 21 | ***** Error: 22 | T3F3C 001:729.363 Communication timed out - Can not execute firmware update 23 | T3F3C 002:906.561 24 | ***** Error: 25 | T3F3C 002:906.595 Cannot connect to J-Link 26 | T3F3C 002:927.358 - 2912.811ms returns "Communication timed out: Requested 1 bytes, received -1 bytes ! 27 | Communication timed out - Can not execute firmware update 28 | Cannot connect to J-Link" 29 | T3F3C 004:681.307 JLINK_Close() 30 | T3F3C 004:681.797 - 0.498ms 31 | T3F3C 004:681.808 32 | T3F3C 004:681.813 Closed 33 | -------------------------------------------------------------------------------- /MDKprj/JLinkSettings.ini: -------------------------------------------------------------------------------- 1 | [BREAKPOINTS] 2 | ForceImpTypeAny = 0 3 | ShowInfoWin = 1 4 | EnableFlashBP = 2 5 | BPDuringExecution = 0 6 | [CFI] 7 | CFISize = 0x00 8 | CFIAddr = 0x00 9 | [CPU] 10 | MonModeVTableAddr = 0xFFFFFFFF 11 | MonModeDebug = 0 12 | MaxNumAPs = 0 13 | LowPowerHandlingMode = 0 14 | OverrideMemMap = 0 15 | AllowSimulation = 1 16 | ScriptFile="" 17 | [FLASH] 18 | CacheExcludeSize = 0x00 19 | CacheExcludeAddr = 0x00 20 | MinNumBytesFlashDL = 0 21 | SkipProgOnCRCMatch = 1 22 | VerifyDownload = 1 23 | AllowCaching = 1 24 | EnableFlashDL = 2 25 | Override = 1 26 | Device="Cortex-M0" 27 | [GENERAL] 28 | WorkRAMSize = 0x00 29 | WorkRAMAddr = 0x00 30 | RAMUsageLimit = 0x00 31 | [SWO] 32 | SWOLogFile="" 33 | [MEM] 34 | RdOverrideOrMask = 0x00 35 | RdOverrideAndMask = 0xFFFFFFFF 36 | RdOverrideAddr = 0xFFFFFFFF 37 | WrOverrideOrMask = 0x00 38 | WrOverrideAndMask = 0xFFFFFFFF 39 | WrOverrideAddr = 0xFFFFFFFF 40 | -------------------------------------------------------------------------------- /MDKprj/MDK删除临时文件.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/MDK删除临时文件.bat -------------------------------------------------------------------------------- /MDKprj/Objects/LQ_F3227_Lib.build_log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/LQ_F3227_Lib.build_log.htm -------------------------------------------------------------------------------- /MDKprj/Objects/LQ_F3227_Lib.lnp: -------------------------------------------------------------------------------- 1 | --cpu Cortex-M3 2 | ".\objects\main.o" 3 | ".\objects\lq_balance.o" 4 | ".\objects\lq_anoscope.o" 5 | ".\objects\lq_camera.o" 6 | ".\objects\lq_gpio_exit.o" 7 | ".\objects\lq_gpio_key.o" 8 | ".\objects\lq_gpio_led.o" 9 | ".\objects\lq_icm20689.o" 10 | ".\objects\lq_imageprocess.o" 11 | ".\objects\lq_inductor.o" 12 | ".\objects\lq_motorservo.o" 13 | ".\objects\lq_mt9v034.o" 14 | ".\objects\lq_oled096.o" 15 | ".\objects\lq_pid.o" 16 | ".\objects\lq_tft18.o" 17 | ".\objects\lq_demo_dmp.o" 18 | "..\APP\MPU6050\LQ_MPU6050_DMP.lib" 19 | ".\objects\lq_i2c_mpu9250.o" 20 | ".\objects\lq_i2c_mpu6050.o" 21 | ".\objects\startup_mm32f327x_keil.o" 22 | ".\objects\system_mm32f327x.o" 23 | ".\objects\hal_adc.o" 24 | ".\objects\hal_bkp.o" 25 | ".\objects\hal_can.o" 26 | ".\objects\hal_comp.o" 27 | ".\objects\hal_crc.o" 28 | ".\objects\hal_crs.o" 29 | ".\objects\hal_dac.o" 30 | ".\objects\hal_dbg.o" 31 | ".\objects\hal_dma.o" 32 | ".\objects\hal_eth.o" 33 | ".\objects\hal_exti.o" 34 | ".\objects\hal_flash.o" 35 | ".\objects\hal_fsmc.o" 36 | ".\objects\hal_gpio.o" 37 | ".\objects\hal_i2c.o" 38 | ".\objects\hal_iwdg.o" 39 | ".\objects\hal_misc.o" 40 | ".\objects\hal_pwr.o" 41 | ".\objects\hal_rcc.o" 42 | ".\objects\hal_rtc.o" 43 | ".\objects\hal_sdio.o" 44 | ".\objects\hal_spi.o" 45 | ".\objects\hal_tim.o" 46 | ".\objects\hal_uart.o" 47 | ".\objects\hal_uid.o" 48 | ".\objects\hal_ver.o" 49 | ".\objects\hal_wwdg.o" 50 | ".\objects\lq_adc.o" 51 | ".\objects\lq_dma.o" 52 | ".\objects\lq_encoder.o" 53 | ".\objects\lq_flash.o" 54 | ".\objects\lq_gpio.o" 55 | ".\objects\lq_i2c.o" 56 | ".\objects\lq_pwm.o" 57 | ".\objects\lq_softi2c.o" 58 | ".\objects\lq_softspi.o" 59 | ".\objects\lq_spi.o" 60 | ".\objects\lq_sys.o" 61 | ".\objects\lq_timer.o" 62 | ".\objects\lq_uart.o" 63 | --library_type=microlib --strict --scatter ".\Objects\LQ_F3227_Lib.sct" 64 | --summary_stderr --info summarysizes --map --load_addr_map_info --xref --callgraph --symbols 65 | --info sizes --info totals --info unused --info veneers 66 | --list ".\Listings\LQ_F3227_Lib.map" -o .\Objects\LQ_F3227_Lib.axf -------------------------------------------------------------------------------- /MDKprj/Objects/LQ_F3227_Lib.sct: -------------------------------------------------------------------------------- 1 | ; ************************************************************* 2 | ; *** Scatter-Loading Description File generated by uVision *** 3 | ; ************************************************************* 4 | 5 | LR_IROM1 0x00000000 0x00040000 { ; load region size_region 6 | ER_IROM1 0x00000000 0x00040000 { ; load address = execution address 7 | *.o (RESET, +First) 8 | *(InRoot$$Sections) 9 | .ANY (+RO) 10 | .ANY (+XO) 11 | } 12 | RW_IRAM1 0x20000000 0x00020000 { ; RW data 13 | .ANY (+RW +ZI) 14 | } 15 | } 16 | 17 | -------------------------------------------------------------------------------- /MDKprj/Objects/LQ_F3227_Lib_LQ_F3227_Lib.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/LQ_F3227_Lib_LQ_F3227_Lib.dep -------------------------------------------------------------------------------- /MDKprj/Objects/hal_adc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_adc.crf -------------------------------------------------------------------------------- /MDKprj/Objects/hal_adc.d: -------------------------------------------------------------------------------- 1 | .\objects\hal_adc.o: ..\Device\MM32F3277\HAL_Lib\Src\hal_adc.c 2 | .\objects\hal_adc.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_adc.h 3 | .\objects\hal_adc.o: ..\Device\MM32F3277\Include\types.h 4 | .\objects\hal_adc.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdint.h 5 | .\objects\hal_adc.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdbool.h 6 | .\objects\hal_adc.o: ..\Device\MM32F3277\Include\reg_adc.h 7 | .\objects\hal_adc.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_rcc.h 8 | .\objects\hal_adc.o: ..\Device\MM32F3277\Include\reg_common.h 9 | .\objects\hal_adc.o: ..\Device\CMSIS\KEIL_Core\core_cm3.h 10 | .\objects\hal_adc.o: ..\Device\CMSIS\KEIL_Core\cmsis_compiler.h 11 | .\objects\hal_adc.o: ..\Device\CMSIS\KEIL_Core\cmsis_armcc.h 12 | .\objects\hal_adc.o: ..\Device\MM32F3277\Include\mm32_reg.h 13 | .\objects\hal_adc.o: ..\Device\MM32F3277\Include\reg_bkp.h 14 | .\objects\hal_adc.o: ..\Device\MM32F3277\Include\reg_can.h 15 | .\objects\hal_adc.o: ..\Device\MM32F3277\Include\reg_comp.h 16 | .\objects\hal_adc.o: ..\Device\MM32F3277\Include\reg_crc.h 17 | .\objects\hal_adc.o: ..\Device\MM32F3277\Include\reg_crs.h 18 | .\objects\hal_adc.o: ..\Device\MM32F3277\Include\reg_dac.h 19 | .\objects\hal_adc.o: ..\Device\MM32F3277\Include\reg_dbg.h 20 | .\objects\hal_adc.o: ..\Device\MM32F3277\Include\reg_dma.h 21 | .\objects\hal_adc.o: ..\Device\MM32F3277\Include\reg_exti.h 22 | .\objects\hal_adc.o: ..\Device\MM32F3277\Include\reg_eth.h 23 | .\objects\hal_adc.o: ..\Device\MM32F3277\Include\reg_flash.h 24 | .\objects\hal_adc.o: ..\Device\MM32F3277\Include\reg_gpio.h 25 | .\objects\hal_adc.o: ..\Device\MM32F3277\Include\reg_i2c.h 26 | .\objects\hal_adc.o: ..\Device\MM32F3277\Include\reg_iwdg.h 27 | .\objects\hal_adc.o: ..\Device\MM32F3277\Include\reg_pwm.h 28 | .\objects\hal_adc.o: ..\Device\MM32F3277\Include\reg_pwr.h 29 | .\objects\hal_adc.o: ..\Device\MM32F3277\Include\reg_rcc.h 30 | .\objects\hal_adc.o: ..\Device\MM32F3277\Include\reg_rtc.h 31 | .\objects\hal_adc.o: ..\Device\MM32F3277\Include\reg_sdio.h 32 | .\objects\hal_adc.o: ..\Device\MM32F3277\Include\mm32_reg.h 33 | .\objects\hal_adc.o: ..\Device\MM32F3277\Include\reg_spi.h 34 | .\objects\hal_adc.o: ..\Device\MM32F3277\Include\reg_syscfg.h 35 | .\objects\hal_adc.o: ..\Device\MM32F3277\Include\reg_tim.h 36 | .\objects\hal_adc.o: ..\Device\MM32F3277\Include\reg_uart.h 37 | .\objects\hal_adc.o: ..\Device\MM32F3277\Include\reg_usb_otg_fs.h 38 | .\objects\hal_adc.o: ..\Device\MM32F3277\Include\reg_wwdg.h 39 | .\objects\hal_adc.o: ..\Device\MM32F3277\Include\mm32_reg_redefine_v1.h 40 | -------------------------------------------------------------------------------- /MDKprj/Objects/hal_adc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_adc.o -------------------------------------------------------------------------------- /MDKprj/Objects/hal_bkp.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_bkp.crf -------------------------------------------------------------------------------- /MDKprj/Objects/hal_bkp.d: -------------------------------------------------------------------------------- 1 | .\objects\hal_bkp.o: ..\Device\MM32F3277\HAL_Lib\Src\hal_bkp.c 2 | .\objects\hal_bkp.o: ..\Device\MM32F3277\Include\types.h 3 | .\objects\hal_bkp.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdint.h 4 | .\objects\hal_bkp.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdbool.h 5 | .\objects\hal_bkp.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_pwr.h 6 | .\objects\hal_bkp.o: ..\Device\MM32F3277\Include\reg_pwr.h 7 | .\objects\hal_bkp.o: ..\Device\MM32F3277\Include\reg_syscfg.h 8 | .\objects\hal_bkp.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_rcc.h 9 | .\objects\hal_bkp.o: ..\Device\MM32F3277\Include\reg_common.h 10 | .\objects\hal_bkp.o: ..\Device\CMSIS\KEIL_Core\core_cm3.h 11 | .\objects\hal_bkp.o: ..\Device\CMSIS\KEIL_Core\cmsis_compiler.h 12 | .\objects\hal_bkp.o: ..\Device\CMSIS\KEIL_Core\cmsis_armcc.h 13 | .\objects\hal_bkp.o: ..\Device\MM32F3277\Include\mm32_reg.h 14 | .\objects\hal_bkp.o: ..\Device\MM32F3277\Include\reg_adc.h 15 | .\objects\hal_bkp.o: ..\Device\MM32F3277\Include\reg_bkp.h 16 | .\objects\hal_bkp.o: ..\Device\MM32F3277\Include\reg_can.h 17 | .\objects\hal_bkp.o: ..\Device\MM32F3277\Include\reg_comp.h 18 | .\objects\hal_bkp.o: ..\Device\MM32F3277\Include\reg_crc.h 19 | .\objects\hal_bkp.o: ..\Device\MM32F3277\Include\reg_crs.h 20 | .\objects\hal_bkp.o: ..\Device\MM32F3277\Include\reg_dac.h 21 | .\objects\hal_bkp.o: ..\Device\MM32F3277\Include\reg_dbg.h 22 | .\objects\hal_bkp.o: ..\Device\MM32F3277\Include\reg_dma.h 23 | .\objects\hal_bkp.o: ..\Device\MM32F3277\Include\reg_exti.h 24 | .\objects\hal_bkp.o: ..\Device\MM32F3277\Include\reg_eth.h 25 | .\objects\hal_bkp.o: ..\Device\MM32F3277\Include\reg_flash.h 26 | .\objects\hal_bkp.o: ..\Device\MM32F3277\Include\reg_gpio.h 27 | .\objects\hal_bkp.o: ..\Device\MM32F3277\Include\reg_i2c.h 28 | .\objects\hal_bkp.o: ..\Device\MM32F3277\Include\reg_iwdg.h 29 | .\objects\hal_bkp.o: ..\Device\MM32F3277\Include\reg_pwm.h 30 | .\objects\hal_bkp.o: ..\Device\MM32F3277\Include\reg_rcc.h 31 | .\objects\hal_bkp.o: ..\Device\MM32F3277\Include\reg_rtc.h 32 | .\objects\hal_bkp.o: ..\Device\MM32F3277\Include\reg_sdio.h 33 | .\objects\hal_bkp.o: ..\Device\MM32F3277\Include\mm32_reg.h 34 | .\objects\hal_bkp.o: ..\Device\MM32F3277\Include\reg_spi.h 35 | .\objects\hal_bkp.o: ..\Device\MM32F3277\Include\reg_tim.h 36 | .\objects\hal_bkp.o: ..\Device\MM32F3277\Include\reg_uart.h 37 | .\objects\hal_bkp.o: ..\Device\MM32F3277\Include\reg_usb_otg_fs.h 38 | .\objects\hal_bkp.o: ..\Device\MM32F3277\Include\reg_wwdg.h 39 | .\objects\hal_bkp.o: ..\Device\MM32F3277\Include\mm32_reg_redefine_v1.h 40 | .\objects\hal_bkp.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_bkp.h 41 | -------------------------------------------------------------------------------- /MDKprj/Objects/hal_bkp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_bkp.o -------------------------------------------------------------------------------- /MDKprj/Objects/hal_can.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_can.crf -------------------------------------------------------------------------------- /MDKprj/Objects/hal_can.d: -------------------------------------------------------------------------------- 1 | .\objects\hal_can.o: ..\Device\MM32F3277\HAL_Lib\Src\hal_can.c 2 | .\objects\hal_can.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_can.h 3 | .\objects\hal_can.o: ..\Device\MM32F3277\Include\types.h 4 | .\objects\hal_can.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdint.h 5 | .\objects\hal_can.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdbool.h 6 | .\objects\hal_can.o: ..\Device\MM32F3277\Include\reg_can.h 7 | .\objects\hal_can.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_rcc.h 8 | .\objects\hal_can.o: ..\Device\MM32F3277\Include\reg_common.h 9 | .\objects\hal_can.o: ..\Device\CMSIS\KEIL_Core\core_cm3.h 10 | .\objects\hal_can.o: ..\Device\CMSIS\KEIL_Core\cmsis_compiler.h 11 | .\objects\hal_can.o: ..\Device\CMSIS\KEIL_Core\cmsis_armcc.h 12 | .\objects\hal_can.o: ..\Device\MM32F3277\Include\mm32_reg.h 13 | .\objects\hal_can.o: ..\Device\MM32F3277\Include\reg_adc.h 14 | .\objects\hal_can.o: ..\Device\MM32F3277\Include\reg_bkp.h 15 | .\objects\hal_can.o: ..\Device\MM32F3277\Include\reg_comp.h 16 | .\objects\hal_can.o: ..\Device\MM32F3277\Include\reg_crc.h 17 | .\objects\hal_can.o: ..\Device\MM32F3277\Include\reg_crs.h 18 | .\objects\hal_can.o: ..\Device\MM32F3277\Include\reg_dac.h 19 | .\objects\hal_can.o: ..\Device\MM32F3277\Include\reg_dbg.h 20 | .\objects\hal_can.o: ..\Device\MM32F3277\Include\reg_dma.h 21 | .\objects\hal_can.o: ..\Device\MM32F3277\Include\reg_exti.h 22 | .\objects\hal_can.o: ..\Device\MM32F3277\Include\reg_eth.h 23 | .\objects\hal_can.o: ..\Device\MM32F3277\Include\reg_flash.h 24 | .\objects\hal_can.o: ..\Device\MM32F3277\Include\reg_gpio.h 25 | .\objects\hal_can.o: ..\Device\MM32F3277\Include\reg_i2c.h 26 | .\objects\hal_can.o: ..\Device\MM32F3277\Include\reg_iwdg.h 27 | .\objects\hal_can.o: ..\Device\MM32F3277\Include\reg_pwm.h 28 | .\objects\hal_can.o: ..\Device\MM32F3277\Include\reg_pwr.h 29 | .\objects\hal_can.o: ..\Device\MM32F3277\Include\reg_rcc.h 30 | .\objects\hal_can.o: ..\Device\MM32F3277\Include\reg_rtc.h 31 | .\objects\hal_can.o: ..\Device\MM32F3277\Include\reg_sdio.h 32 | .\objects\hal_can.o: ..\Device\MM32F3277\Include\mm32_reg.h 33 | .\objects\hal_can.o: ..\Device\MM32F3277\Include\reg_spi.h 34 | .\objects\hal_can.o: ..\Device\MM32F3277\Include\reg_syscfg.h 35 | .\objects\hal_can.o: ..\Device\MM32F3277\Include\reg_tim.h 36 | .\objects\hal_can.o: ..\Device\MM32F3277\Include\reg_uart.h 37 | .\objects\hal_can.o: ..\Device\MM32F3277\Include\reg_usb_otg_fs.h 38 | .\objects\hal_can.o: ..\Device\MM32F3277\Include\reg_wwdg.h 39 | .\objects\hal_can.o: ..\Device\MM32F3277\Include\mm32_reg_redefine_v1.h 40 | -------------------------------------------------------------------------------- /MDKprj/Objects/hal_can.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_can.o -------------------------------------------------------------------------------- /MDKprj/Objects/hal_comp.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_comp.crf -------------------------------------------------------------------------------- /MDKprj/Objects/hal_comp.d: -------------------------------------------------------------------------------- 1 | .\objects\hal_comp.o: ..\Device\MM32F3277\HAL_Lib\Src\hal_comp.c 2 | .\objects\hal_comp.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_comp.h 3 | .\objects\hal_comp.o: ..\Device\MM32F3277\Include\reg_common.h 4 | .\objects\hal_comp.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdint.h 5 | .\objects\hal_comp.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdbool.h 6 | .\objects\hal_comp.o: ..\Device\MM32F3277\Include\types.h 7 | .\objects\hal_comp.o: ..\Device\CMSIS\KEIL_Core\core_cm3.h 8 | .\objects\hal_comp.o: ..\Device\CMSIS\KEIL_Core\cmsis_compiler.h 9 | .\objects\hal_comp.o: ..\Device\CMSIS\KEIL_Core\cmsis_armcc.h 10 | .\objects\hal_comp.o: ..\Device\MM32F3277\Include\reg_comp.h 11 | -------------------------------------------------------------------------------- /MDKprj/Objects/hal_comp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_comp.o -------------------------------------------------------------------------------- /MDKprj/Objects/hal_crc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_crc.crf -------------------------------------------------------------------------------- /MDKprj/Objects/hal_crc.d: -------------------------------------------------------------------------------- 1 | .\objects\hal_crc.o: ..\Device\MM32F3277\HAL_Lib\Src\hal_crc.c 2 | .\objects\hal_crc.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_crc.h 3 | .\objects\hal_crc.o: ..\Device\MM32F3277\Include\types.h 4 | .\objects\hal_crc.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdint.h 5 | .\objects\hal_crc.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdbool.h 6 | .\objects\hal_crc.o: ..\Device\MM32F3277\Include\reg_common.h 7 | .\objects\hal_crc.o: ..\Device\CMSIS\KEIL_Core\core_cm3.h 8 | .\objects\hal_crc.o: ..\Device\CMSIS\KEIL_Core\cmsis_compiler.h 9 | .\objects\hal_crc.o: ..\Device\CMSIS\KEIL_Core\cmsis_armcc.h 10 | .\objects\hal_crc.o: ..\Device\MM32F3277\Include\reg_crc.h 11 | -------------------------------------------------------------------------------- /MDKprj/Objects/hal_crc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_crc.o -------------------------------------------------------------------------------- /MDKprj/Objects/hal_crs.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_crs.crf -------------------------------------------------------------------------------- /MDKprj/Objects/hal_crs.d: -------------------------------------------------------------------------------- 1 | .\objects\hal_crs.o: ..\Device\MM32F3277\HAL_Lib\Src\hal_crs.c 2 | .\objects\hal_crs.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_rcc.h 3 | .\objects\hal_crs.o: ..\Device\MM32F3277\Include\types.h 4 | .\objects\hal_crs.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdint.h 5 | .\objects\hal_crs.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdbool.h 6 | .\objects\hal_crs.o: ..\Device\MM32F3277\Include\reg_common.h 7 | .\objects\hal_crs.o: ..\Device\CMSIS\KEIL_Core\core_cm3.h 8 | .\objects\hal_crs.o: ..\Device\CMSIS\KEIL_Core\cmsis_compiler.h 9 | .\objects\hal_crs.o: ..\Device\CMSIS\KEIL_Core\cmsis_armcc.h 10 | .\objects\hal_crs.o: ..\Device\MM32F3277\Include\mm32_reg.h 11 | .\objects\hal_crs.o: ..\Device\MM32F3277\Include\reg_adc.h 12 | .\objects\hal_crs.o: ..\Device\MM32F3277\Include\reg_bkp.h 13 | .\objects\hal_crs.o: ..\Device\MM32F3277\Include\reg_can.h 14 | .\objects\hal_crs.o: ..\Device\MM32F3277\Include\reg_comp.h 15 | .\objects\hal_crs.o: ..\Device\MM32F3277\Include\reg_crc.h 16 | .\objects\hal_crs.o: ..\Device\MM32F3277\Include\reg_crs.h 17 | .\objects\hal_crs.o: ..\Device\MM32F3277\Include\reg_dac.h 18 | .\objects\hal_crs.o: ..\Device\MM32F3277\Include\reg_dbg.h 19 | .\objects\hal_crs.o: ..\Device\MM32F3277\Include\reg_dma.h 20 | .\objects\hal_crs.o: ..\Device\MM32F3277\Include\reg_exti.h 21 | .\objects\hal_crs.o: ..\Device\MM32F3277\Include\reg_eth.h 22 | .\objects\hal_crs.o: ..\Device\MM32F3277\Include\reg_flash.h 23 | .\objects\hal_crs.o: ..\Device\MM32F3277\Include\reg_gpio.h 24 | .\objects\hal_crs.o: ..\Device\MM32F3277\Include\reg_i2c.h 25 | .\objects\hal_crs.o: ..\Device\MM32F3277\Include\reg_iwdg.h 26 | .\objects\hal_crs.o: ..\Device\MM32F3277\Include\reg_pwm.h 27 | .\objects\hal_crs.o: ..\Device\MM32F3277\Include\reg_pwr.h 28 | .\objects\hal_crs.o: ..\Device\MM32F3277\Include\reg_rcc.h 29 | .\objects\hal_crs.o: ..\Device\MM32F3277\Include\reg_rtc.h 30 | .\objects\hal_crs.o: ..\Device\MM32F3277\Include\reg_sdio.h 31 | .\objects\hal_crs.o: ..\Device\MM32F3277\Include\mm32_reg.h 32 | .\objects\hal_crs.o: ..\Device\MM32F3277\Include\reg_spi.h 33 | .\objects\hal_crs.o: ..\Device\MM32F3277\Include\reg_syscfg.h 34 | .\objects\hal_crs.o: ..\Device\MM32F3277\Include\reg_tim.h 35 | .\objects\hal_crs.o: ..\Device\MM32F3277\Include\reg_uart.h 36 | .\objects\hal_crs.o: ..\Device\MM32F3277\Include\reg_usb_otg_fs.h 37 | .\objects\hal_crs.o: ..\Device\MM32F3277\Include\reg_wwdg.h 38 | .\objects\hal_crs.o: ..\Device\MM32F3277\Include\mm32_reg_redefine_v1.h 39 | .\objects\hal_crs.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_crs.h 40 | -------------------------------------------------------------------------------- /MDKprj/Objects/hal_crs.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_crs.o -------------------------------------------------------------------------------- /MDKprj/Objects/hal_dac.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_dac.crf -------------------------------------------------------------------------------- /MDKprj/Objects/hal_dac.d: -------------------------------------------------------------------------------- 1 | .\objects\hal_dac.o: ..\Device\MM32F3277\HAL_Lib\Src\hal_dac.c 2 | .\objects\hal_dac.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_dac.h 3 | .\objects\hal_dac.o: ..\Device\MM32F3277\Include\types.h 4 | .\objects\hal_dac.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdint.h 5 | .\objects\hal_dac.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdbool.h 6 | .\objects\hal_dac.o: ..\Device\MM32F3277\Include\reg_dac.h 7 | .\objects\hal_dac.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_rcc.h 8 | .\objects\hal_dac.o: ..\Device\MM32F3277\Include\reg_common.h 9 | .\objects\hal_dac.o: ..\Device\CMSIS\KEIL_Core\core_cm3.h 10 | .\objects\hal_dac.o: ..\Device\CMSIS\KEIL_Core\cmsis_compiler.h 11 | .\objects\hal_dac.o: ..\Device\CMSIS\KEIL_Core\cmsis_armcc.h 12 | .\objects\hal_dac.o: ..\Device\MM32F3277\Include\mm32_reg.h 13 | .\objects\hal_dac.o: ..\Device\MM32F3277\Include\reg_adc.h 14 | .\objects\hal_dac.o: ..\Device\MM32F3277\Include\reg_bkp.h 15 | .\objects\hal_dac.o: ..\Device\MM32F3277\Include\reg_can.h 16 | .\objects\hal_dac.o: ..\Device\MM32F3277\Include\reg_comp.h 17 | .\objects\hal_dac.o: ..\Device\MM32F3277\Include\reg_crc.h 18 | .\objects\hal_dac.o: ..\Device\MM32F3277\Include\reg_crs.h 19 | .\objects\hal_dac.o: ..\Device\MM32F3277\Include\reg_dbg.h 20 | .\objects\hal_dac.o: ..\Device\MM32F3277\Include\reg_dma.h 21 | .\objects\hal_dac.o: ..\Device\MM32F3277\Include\reg_exti.h 22 | .\objects\hal_dac.o: ..\Device\MM32F3277\Include\reg_eth.h 23 | .\objects\hal_dac.o: ..\Device\MM32F3277\Include\reg_flash.h 24 | .\objects\hal_dac.o: ..\Device\MM32F3277\Include\reg_gpio.h 25 | .\objects\hal_dac.o: ..\Device\MM32F3277\Include\reg_i2c.h 26 | .\objects\hal_dac.o: ..\Device\MM32F3277\Include\reg_iwdg.h 27 | .\objects\hal_dac.o: ..\Device\MM32F3277\Include\reg_pwm.h 28 | .\objects\hal_dac.o: ..\Device\MM32F3277\Include\reg_pwr.h 29 | .\objects\hal_dac.o: ..\Device\MM32F3277\Include\reg_rcc.h 30 | .\objects\hal_dac.o: ..\Device\MM32F3277\Include\reg_rtc.h 31 | .\objects\hal_dac.o: ..\Device\MM32F3277\Include\reg_sdio.h 32 | .\objects\hal_dac.o: ..\Device\MM32F3277\Include\mm32_reg.h 33 | .\objects\hal_dac.o: ..\Device\MM32F3277\Include\reg_spi.h 34 | .\objects\hal_dac.o: ..\Device\MM32F3277\Include\reg_syscfg.h 35 | .\objects\hal_dac.o: ..\Device\MM32F3277\Include\reg_tim.h 36 | .\objects\hal_dac.o: ..\Device\MM32F3277\Include\reg_uart.h 37 | .\objects\hal_dac.o: ..\Device\MM32F3277\Include\reg_usb_otg_fs.h 38 | .\objects\hal_dac.o: ..\Device\MM32F3277\Include\reg_wwdg.h 39 | .\objects\hal_dac.o: ..\Device\MM32F3277\Include\mm32_reg_redefine_v1.h 40 | -------------------------------------------------------------------------------- /MDKprj/Objects/hal_dac.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_dac.o -------------------------------------------------------------------------------- /MDKprj/Objects/hal_dbg.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_dbg.crf -------------------------------------------------------------------------------- /MDKprj/Objects/hal_dbg.d: -------------------------------------------------------------------------------- 1 | .\objects\hal_dbg.o: ..\Device\MM32F3277\HAL_Lib\Src\hal_dbg.c 2 | .\objects\hal_dbg.o: ..\Device\MM32F3277\Include\types.h 3 | .\objects\hal_dbg.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdint.h 4 | .\objects\hal_dbg.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdbool.h 5 | .\objects\hal_dbg.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_dbg.h 6 | .\objects\hal_dbg.o: ..\Device\MM32F3277\Include\reg_common.h 7 | .\objects\hal_dbg.o: ..\Device\CMSIS\KEIL_Core\core_cm3.h 8 | .\objects\hal_dbg.o: ..\Device\CMSIS\KEIL_Core\cmsis_compiler.h 9 | .\objects\hal_dbg.o: ..\Device\CMSIS\KEIL_Core\cmsis_armcc.h 10 | .\objects\hal_dbg.o: ..\Device\MM32F3277\Include\reg_dbg.h 11 | -------------------------------------------------------------------------------- /MDKprj/Objects/hal_dbg.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_dbg.o -------------------------------------------------------------------------------- /MDKprj/Objects/hal_dma.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_dma.crf -------------------------------------------------------------------------------- /MDKprj/Objects/hal_dma.d: -------------------------------------------------------------------------------- 1 | .\objects\hal_dma.o: ..\Device\MM32F3277\HAL_Lib\Src\hal_dma.c 2 | .\objects\hal_dma.o: ..\Device\MM32F3277\Include\types.h 3 | .\objects\hal_dma.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdint.h 4 | .\objects\hal_dma.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdbool.h 5 | .\objects\hal_dma.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_dma.h 6 | .\objects\hal_dma.o: ..\Device\MM32F3277\Include\reg_common.h 7 | .\objects\hal_dma.o: ..\Device\CMSIS\KEIL_Core\core_cm3.h 8 | .\objects\hal_dma.o: ..\Device\CMSIS\KEIL_Core\cmsis_compiler.h 9 | .\objects\hal_dma.o: ..\Device\CMSIS\KEIL_Core\cmsis_armcc.h 10 | .\objects\hal_dma.o: ..\Device\MM32F3277\Include\reg_dma.h 11 | -------------------------------------------------------------------------------- /MDKprj/Objects/hal_dma.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_dma.o -------------------------------------------------------------------------------- /MDKprj/Objects/hal_eth.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_eth.crf -------------------------------------------------------------------------------- /MDKprj/Objects/hal_eth.d: -------------------------------------------------------------------------------- 1 | .\objects\hal_eth.o: ..\Device\MM32F3277\HAL_Lib\Src\hal_eth.c 2 | .\objects\hal_eth.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_rcc.h 3 | .\objects\hal_eth.o: ..\Device\MM32F3277\Include\types.h 4 | .\objects\hal_eth.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdint.h 5 | .\objects\hal_eth.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdbool.h 6 | .\objects\hal_eth.o: ..\Device\MM32F3277\Include\reg_common.h 7 | .\objects\hal_eth.o: ..\Device\CMSIS\KEIL_Core\core_cm3.h 8 | .\objects\hal_eth.o: ..\Device\CMSIS\KEIL_Core\cmsis_compiler.h 9 | .\objects\hal_eth.o: ..\Device\CMSIS\KEIL_Core\cmsis_armcc.h 10 | .\objects\hal_eth.o: ..\Device\MM32F3277\Include\mm32_reg.h 11 | .\objects\hal_eth.o: ..\Device\MM32F3277\Include\reg_adc.h 12 | .\objects\hal_eth.o: ..\Device\MM32F3277\Include\reg_bkp.h 13 | .\objects\hal_eth.o: ..\Device\MM32F3277\Include\reg_can.h 14 | .\objects\hal_eth.o: ..\Device\MM32F3277\Include\reg_comp.h 15 | .\objects\hal_eth.o: ..\Device\MM32F3277\Include\reg_crc.h 16 | .\objects\hal_eth.o: ..\Device\MM32F3277\Include\reg_crs.h 17 | .\objects\hal_eth.o: ..\Device\MM32F3277\Include\reg_dac.h 18 | .\objects\hal_eth.o: ..\Device\MM32F3277\Include\reg_dbg.h 19 | .\objects\hal_eth.o: ..\Device\MM32F3277\Include\reg_dma.h 20 | .\objects\hal_eth.o: ..\Device\MM32F3277\Include\reg_exti.h 21 | .\objects\hal_eth.o: ..\Device\MM32F3277\Include\reg_eth.h 22 | .\objects\hal_eth.o: ..\Device\MM32F3277\Include\reg_flash.h 23 | .\objects\hal_eth.o: ..\Device\MM32F3277\Include\reg_gpio.h 24 | .\objects\hal_eth.o: ..\Device\MM32F3277\Include\reg_i2c.h 25 | .\objects\hal_eth.o: ..\Device\MM32F3277\Include\reg_iwdg.h 26 | .\objects\hal_eth.o: ..\Device\MM32F3277\Include\reg_pwm.h 27 | .\objects\hal_eth.o: ..\Device\MM32F3277\Include\reg_pwr.h 28 | .\objects\hal_eth.o: ..\Device\MM32F3277\Include\reg_rcc.h 29 | .\objects\hal_eth.o: ..\Device\MM32F3277\Include\reg_rtc.h 30 | .\objects\hal_eth.o: ..\Device\MM32F3277\Include\reg_sdio.h 31 | .\objects\hal_eth.o: ..\Device\MM32F3277\Include\mm32_reg.h 32 | .\objects\hal_eth.o: ..\Device\MM32F3277\Include\reg_spi.h 33 | .\objects\hal_eth.o: ..\Device\MM32F3277\Include\reg_syscfg.h 34 | .\objects\hal_eth.o: ..\Device\MM32F3277\Include\reg_tim.h 35 | .\objects\hal_eth.o: ..\Device\MM32F3277\Include\reg_uart.h 36 | .\objects\hal_eth.o: ..\Device\MM32F3277\Include\reg_usb_otg_fs.h 37 | .\objects\hal_eth.o: ..\Device\MM32F3277\Include\reg_wwdg.h 38 | .\objects\hal_eth.o: ..\Device\MM32F3277\Include\mm32_reg_redefine_v1.h 39 | .\objects\hal_eth.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_eth.h 40 | .\objects\hal_eth.o: ..\Device\MM32F3277\Include\mm32_device.h 41 | .\objects\hal_eth.o: ..\Device\MM32F3277\HAL_Lib\Inc\HAL_eth_conf.h 42 | -------------------------------------------------------------------------------- /MDKprj/Objects/hal_eth.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_eth.o -------------------------------------------------------------------------------- /MDKprj/Objects/hal_exti.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_exti.crf -------------------------------------------------------------------------------- /MDKprj/Objects/hal_exti.d: -------------------------------------------------------------------------------- 1 | .\objects\hal_exti.o: ..\Device\MM32F3277\HAL_Lib\Src\hal_exti.c 2 | .\objects\hal_exti.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_exti.h 3 | .\objects\hal_exti.o: ..\Device\MM32F3277\Include\types.h 4 | .\objects\hal_exti.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdint.h 5 | .\objects\hal_exti.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdbool.h 6 | .\objects\hal_exti.o: ..\Device\MM32F3277\Include\reg_common.h 7 | .\objects\hal_exti.o: ..\Device\CMSIS\KEIL_Core\core_cm3.h 8 | .\objects\hal_exti.o: ..\Device\CMSIS\KEIL_Core\cmsis_compiler.h 9 | .\objects\hal_exti.o: ..\Device\CMSIS\KEIL_Core\cmsis_armcc.h 10 | .\objects\hal_exti.o: ..\Device\MM32F3277\Include\reg_exti.h 11 | -------------------------------------------------------------------------------- /MDKprj/Objects/hal_exti.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_exti.o -------------------------------------------------------------------------------- /MDKprj/Objects/hal_flash.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_flash.crf -------------------------------------------------------------------------------- /MDKprj/Objects/hal_flash.d: -------------------------------------------------------------------------------- 1 | .\objects\hal_flash.o: ..\Device\MM32F3277\HAL_Lib\Src\hal_flash.c 2 | .\objects\hal_flash.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_flash.h 3 | .\objects\hal_flash.o: ..\Device\MM32F3277\Include\types.h 4 | .\objects\hal_flash.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdint.h 5 | .\objects\hal_flash.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdbool.h 6 | .\objects\hal_flash.o: ..\Device\MM32F3277\Include\reg_common.h 7 | .\objects\hal_flash.o: ..\Device\CMSIS\KEIL_Core\core_cm3.h 8 | .\objects\hal_flash.o: ..\Device\CMSIS\KEIL_Core\cmsis_compiler.h 9 | .\objects\hal_flash.o: ..\Device\CMSIS\KEIL_Core\cmsis_armcc.h 10 | .\objects\hal_flash.o: ..\Device\MM32F3277\Include\reg_flash.h 11 | -------------------------------------------------------------------------------- /MDKprj/Objects/hal_flash.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_flash.o -------------------------------------------------------------------------------- /MDKprj/Objects/hal_fsmc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_fsmc.crf -------------------------------------------------------------------------------- /MDKprj/Objects/hal_fsmc.d: -------------------------------------------------------------------------------- 1 | .\objects\hal_fsmc.o: ..\Device\MM32F3277\HAL_Lib\Src\hal_fsmc.c 2 | .\objects\hal_fsmc.o: ..\Device\MM32F3277\Include\reg_rcc.h 3 | .\objects\hal_fsmc.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdint.h 4 | .\objects\hal_fsmc.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdbool.h 5 | .\objects\hal_fsmc.o: ..\Device\MM32F3277\Include\types.h 6 | .\objects\hal_fsmc.o: ..\Device\MM32F3277\Include\reg_syscfg.h 7 | .\objects\hal_fsmc.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_fsmc.h 8 | .\objects\hal_fsmc.o: ..\Device\MM32F3277\Include\reg_common.h 9 | .\objects\hal_fsmc.o: ..\Device\CMSIS\KEIL_Core\core_cm3.h 10 | .\objects\hal_fsmc.o: ..\Device\CMSIS\KEIL_Core\cmsis_compiler.h 11 | .\objects\hal_fsmc.o: ..\Device\CMSIS\KEIL_Core\cmsis_armcc.h 12 | .\objects\hal_fsmc.o: ..\Device\MM32F3277\Include\reg_fsmc.h 13 | -------------------------------------------------------------------------------- /MDKprj/Objects/hal_fsmc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_fsmc.o -------------------------------------------------------------------------------- /MDKprj/Objects/hal_gpio.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_gpio.crf -------------------------------------------------------------------------------- /MDKprj/Objects/hal_gpio.d: -------------------------------------------------------------------------------- 1 | .\objects\hal_gpio.o: ..\Device\MM32F3277\HAL_Lib\Src\hal_gpio.c 2 | .\objects\hal_gpio.o: ..\Device\MM32F3277\Include\reg_exti.h 3 | .\objects\hal_gpio.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdint.h 4 | .\objects\hal_gpio.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdbool.h 5 | .\objects\hal_gpio.o: ..\Device\MM32F3277\Include\types.h 6 | .\objects\hal_gpio.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_rcc.h 7 | .\objects\hal_gpio.o: ..\Device\MM32F3277\Include\reg_common.h 8 | .\objects\hal_gpio.o: ..\Device\CMSIS\KEIL_Core\core_cm3.h 9 | .\objects\hal_gpio.o: ..\Device\CMSIS\KEIL_Core\cmsis_compiler.h 10 | .\objects\hal_gpio.o: ..\Device\CMSIS\KEIL_Core\cmsis_armcc.h 11 | .\objects\hal_gpio.o: ..\Device\MM32F3277\Include\mm32_reg.h 12 | .\objects\hal_gpio.o: ..\Device\MM32F3277\Include\reg_adc.h 13 | .\objects\hal_gpio.o: ..\Device\MM32F3277\Include\reg_bkp.h 14 | .\objects\hal_gpio.o: ..\Device\MM32F3277\Include\reg_can.h 15 | .\objects\hal_gpio.o: ..\Device\MM32F3277\Include\reg_comp.h 16 | .\objects\hal_gpio.o: ..\Device\MM32F3277\Include\reg_crc.h 17 | .\objects\hal_gpio.o: ..\Device\MM32F3277\Include\reg_crs.h 18 | .\objects\hal_gpio.o: ..\Device\MM32F3277\Include\reg_dac.h 19 | .\objects\hal_gpio.o: ..\Device\MM32F3277\Include\reg_dbg.h 20 | .\objects\hal_gpio.o: ..\Device\MM32F3277\Include\reg_dma.h 21 | .\objects\hal_gpio.o: ..\Device\MM32F3277\Include\reg_eth.h 22 | .\objects\hal_gpio.o: ..\Device\MM32F3277\Include\reg_flash.h 23 | .\objects\hal_gpio.o: ..\Device\MM32F3277\Include\reg_gpio.h 24 | .\objects\hal_gpio.o: ..\Device\MM32F3277\Include\reg_i2c.h 25 | .\objects\hal_gpio.o: ..\Device\MM32F3277\Include\reg_iwdg.h 26 | .\objects\hal_gpio.o: ..\Device\MM32F3277\Include\reg_pwm.h 27 | .\objects\hal_gpio.o: ..\Device\MM32F3277\Include\reg_pwr.h 28 | .\objects\hal_gpio.o: ..\Device\MM32F3277\Include\reg_rcc.h 29 | .\objects\hal_gpio.o: ..\Device\MM32F3277\Include\reg_rtc.h 30 | .\objects\hal_gpio.o: ..\Device\MM32F3277\Include\reg_sdio.h 31 | .\objects\hal_gpio.o: ..\Device\MM32F3277\Include\mm32_reg.h 32 | .\objects\hal_gpio.o: ..\Device\MM32F3277\Include\reg_spi.h 33 | .\objects\hal_gpio.o: ..\Device\MM32F3277\Include\reg_syscfg.h 34 | .\objects\hal_gpio.o: ..\Device\MM32F3277\Include\reg_tim.h 35 | .\objects\hal_gpio.o: ..\Device\MM32F3277\Include\reg_uart.h 36 | .\objects\hal_gpio.o: ..\Device\MM32F3277\Include\reg_usb_otg_fs.h 37 | .\objects\hal_gpio.o: ..\Device\MM32F3277\Include\reg_wwdg.h 38 | .\objects\hal_gpio.o: ..\Device\MM32F3277\Include\mm32_reg_redefine_v1.h 39 | .\objects\hal_gpio.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_gpio.h 40 | -------------------------------------------------------------------------------- /MDKprj/Objects/hal_gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_gpio.o -------------------------------------------------------------------------------- /MDKprj/Objects/hal_i2c.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_i2c.crf -------------------------------------------------------------------------------- /MDKprj/Objects/hal_i2c.d: -------------------------------------------------------------------------------- 1 | .\objects\hal_i2c.o: ..\Device\MM32F3277\HAL_Lib\Src\hal_i2c.c 2 | .\objects\hal_i2c.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_i2c.h 3 | .\objects\hal_i2c.o: ..\Device\MM32F3277\Include\types.h 4 | .\objects\hal_i2c.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdint.h 5 | .\objects\hal_i2c.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdbool.h 6 | .\objects\hal_i2c.o: ..\Device\MM32F3277\Include\reg_i2c.h 7 | .\objects\hal_i2c.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_rcc.h 8 | .\objects\hal_i2c.o: ..\Device\MM32F3277\Include\reg_common.h 9 | .\objects\hal_i2c.o: ..\Device\CMSIS\KEIL_Core\core_cm3.h 10 | .\objects\hal_i2c.o: ..\Device\CMSIS\KEIL_Core\cmsis_compiler.h 11 | .\objects\hal_i2c.o: ..\Device\CMSIS\KEIL_Core\cmsis_armcc.h 12 | .\objects\hal_i2c.o: ..\Device\MM32F3277\Include\mm32_reg.h 13 | .\objects\hal_i2c.o: ..\Device\MM32F3277\Include\reg_adc.h 14 | .\objects\hal_i2c.o: ..\Device\MM32F3277\Include\reg_bkp.h 15 | .\objects\hal_i2c.o: ..\Device\MM32F3277\Include\reg_can.h 16 | .\objects\hal_i2c.o: ..\Device\MM32F3277\Include\reg_comp.h 17 | .\objects\hal_i2c.o: ..\Device\MM32F3277\Include\reg_crc.h 18 | .\objects\hal_i2c.o: ..\Device\MM32F3277\Include\reg_crs.h 19 | .\objects\hal_i2c.o: ..\Device\MM32F3277\Include\reg_dac.h 20 | .\objects\hal_i2c.o: ..\Device\MM32F3277\Include\reg_dbg.h 21 | .\objects\hal_i2c.o: ..\Device\MM32F3277\Include\reg_dma.h 22 | .\objects\hal_i2c.o: ..\Device\MM32F3277\Include\reg_exti.h 23 | .\objects\hal_i2c.o: ..\Device\MM32F3277\Include\reg_eth.h 24 | .\objects\hal_i2c.o: ..\Device\MM32F3277\Include\reg_flash.h 25 | .\objects\hal_i2c.o: ..\Device\MM32F3277\Include\reg_gpio.h 26 | .\objects\hal_i2c.o: ..\Device\MM32F3277\Include\reg_iwdg.h 27 | .\objects\hal_i2c.o: ..\Device\MM32F3277\Include\reg_pwm.h 28 | .\objects\hal_i2c.o: ..\Device\MM32F3277\Include\reg_pwr.h 29 | .\objects\hal_i2c.o: ..\Device\MM32F3277\Include\reg_rcc.h 30 | .\objects\hal_i2c.o: ..\Device\MM32F3277\Include\reg_rtc.h 31 | .\objects\hal_i2c.o: ..\Device\MM32F3277\Include\reg_sdio.h 32 | .\objects\hal_i2c.o: ..\Device\MM32F3277\Include\mm32_reg.h 33 | .\objects\hal_i2c.o: ..\Device\MM32F3277\Include\reg_spi.h 34 | .\objects\hal_i2c.o: ..\Device\MM32F3277\Include\reg_syscfg.h 35 | .\objects\hal_i2c.o: ..\Device\MM32F3277\Include\reg_tim.h 36 | .\objects\hal_i2c.o: ..\Device\MM32F3277\Include\reg_uart.h 37 | .\objects\hal_i2c.o: ..\Device\MM32F3277\Include\reg_usb_otg_fs.h 38 | .\objects\hal_i2c.o: ..\Device\MM32F3277\Include\reg_wwdg.h 39 | .\objects\hal_i2c.o: ..\Device\MM32F3277\Include\mm32_reg_redefine_v1.h 40 | -------------------------------------------------------------------------------- /MDKprj/Objects/hal_i2c.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_i2c.o -------------------------------------------------------------------------------- /MDKprj/Objects/hal_iwdg.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_iwdg.crf -------------------------------------------------------------------------------- /MDKprj/Objects/hal_iwdg.d: -------------------------------------------------------------------------------- 1 | .\objects\hal_iwdg.o: ..\Device\MM32F3277\HAL_Lib\Src\hal_iwdg.c 2 | .\objects\hal_iwdg.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_iwdg.h 3 | .\objects\hal_iwdg.o: ..\Device\MM32F3277\Include\types.h 4 | .\objects\hal_iwdg.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdint.h 5 | .\objects\hal_iwdg.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdbool.h 6 | .\objects\hal_iwdg.o: ..\Device\MM32F3277\Include\reg_iwdg.h 7 | .\objects\hal_iwdg.o: ..\Device\MM32F3277\Include\reg_common.h 8 | .\objects\hal_iwdg.o: ..\Device\CMSIS\KEIL_Core\core_cm3.h 9 | .\objects\hal_iwdg.o: ..\Device\CMSIS\KEIL_Core\cmsis_compiler.h 10 | .\objects\hal_iwdg.o: ..\Device\CMSIS\KEIL_Core\cmsis_armcc.h 11 | -------------------------------------------------------------------------------- /MDKprj/Objects/hal_iwdg.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_iwdg.o -------------------------------------------------------------------------------- /MDKprj/Objects/hal_misc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_misc.crf -------------------------------------------------------------------------------- /MDKprj/Objects/hal_misc.d: -------------------------------------------------------------------------------- 1 | .\objects\hal_misc.o: ..\Device\MM32F3277\HAL_Lib\Src\hal_misc.c 2 | .\objects\hal_misc.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_misc.h 3 | .\objects\hal_misc.o: ..\Device\MM32F3277\Include\types.h 4 | .\objects\hal_misc.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdint.h 5 | .\objects\hal_misc.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdbool.h 6 | .\objects\hal_misc.o: ..\Device\MM32F3277\Include\reg_common.h 7 | .\objects\hal_misc.o: ..\Device\CMSIS\KEIL_Core\core_cm3.h 8 | .\objects\hal_misc.o: ..\Device\CMSIS\KEIL_Core\cmsis_compiler.h 9 | .\objects\hal_misc.o: ..\Device\CMSIS\KEIL_Core\cmsis_armcc.h 10 | -------------------------------------------------------------------------------- /MDKprj/Objects/hal_misc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_misc.o -------------------------------------------------------------------------------- /MDKprj/Objects/hal_pwr.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_pwr.crf -------------------------------------------------------------------------------- /MDKprj/Objects/hal_pwr.d: -------------------------------------------------------------------------------- 1 | .\objects\hal_pwr.o: ..\Device\MM32F3277\HAL_Lib\Src\hal_pwr.c 2 | .\objects\hal_pwr.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_pwr.h 3 | .\objects\hal_pwr.o: ..\Device\MM32F3277\Include\types.h 4 | .\objects\hal_pwr.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdint.h 5 | .\objects\hal_pwr.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdbool.h 6 | .\objects\hal_pwr.o: ..\Device\MM32F3277\Include\reg_pwr.h 7 | .\objects\hal_pwr.o: ..\Device\MM32F3277\Include\reg_syscfg.h 8 | .\objects\hal_pwr.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_rcc.h 9 | .\objects\hal_pwr.o: ..\Device\MM32F3277\Include\reg_common.h 10 | .\objects\hal_pwr.o: ..\Device\CMSIS\KEIL_Core\core_cm3.h 11 | .\objects\hal_pwr.o: ..\Device\CMSIS\KEIL_Core\cmsis_compiler.h 12 | .\objects\hal_pwr.o: ..\Device\CMSIS\KEIL_Core\cmsis_armcc.h 13 | .\objects\hal_pwr.o: ..\Device\MM32F3277\Include\mm32_reg.h 14 | .\objects\hal_pwr.o: ..\Device\MM32F3277\Include\reg_adc.h 15 | .\objects\hal_pwr.o: ..\Device\MM32F3277\Include\reg_bkp.h 16 | .\objects\hal_pwr.o: ..\Device\MM32F3277\Include\reg_can.h 17 | .\objects\hal_pwr.o: ..\Device\MM32F3277\Include\reg_comp.h 18 | .\objects\hal_pwr.o: ..\Device\MM32F3277\Include\reg_crc.h 19 | .\objects\hal_pwr.o: ..\Device\MM32F3277\Include\reg_crs.h 20 | .\objects\hal_pwr.o: ..\Device\MM32F3277\Include\reg_dac.h 21 | .\objects\hal_pwr.o: ..\Device\MM32F3277\Include\reg_dbg.h 22 | .\objects\hal_pwr.o: ..\Device\MM32F3277\Include\reg_dma.h 23 | .\objects\hal_pwr.o: ..\Device\MM32F3277\Include\reg_exti.h 24 | .\objects\hal_pwr.o: ..\Device\MM32F3277\Include\reg_eth.h 25 | .\objects\hal_pwr.o: ..\Device\MM32F3277\Include\reg_flash.h 26 | .\objects\hal_pwr.o: ..\Device\MM32F3277\Include\reg_gpio.h 27 | .\objects\hal_pwr.o: ..\Device\MM32F3277\Include\reg_i2c.h 28 | .\objects\hal_pwr.o: ..\Device\MM32F3277\Include\reg_iwdg.h 29 | .\objects\hal_pwr.o: ..\Device\MM32F3277\Include\reg_pwm.h 30 | .\objects\hal_pwr.o: ..\Device\MM32F3277\Include\reg_rcc.h 31 | .\objects\hal_pwr.o: ..\Device\MM32F3277\Include\reg_rtc.h 32 | .\objects\hal_pwr.o: ..\Device\MM32F3277\Include\reg_sdio.h 33 | .\objects\hal_pwr.o: ..\Device\MM32F3277\Include\mm32_reg.h 34 | .\objects\hal_pwr.o: ..\Device\MM32F3277\Include\reg_spi.h 35 | .\objects\hal_pwr.o: ..\Device\MM32F3277\Include\reg_tim.h 36 | .\objects\hal_pwr.o: ..\Device\MM32F3277\Include\reg_uart.h 37 | .\objects\hal_pwr.o: ..\Device\MM32F3277\Include\reg_usb_otg_fs.h 38 | .\objects\hal_pwr.o: ..\Device\MM32F3277\Include\reg_wwdg.h 39 | .\objects\hal_pwr.o: ..\Device\MM32F3277\Include\mm32_reg_redefine_v1.h 40 | .\objects\hal_pwr.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_syscfg.h 41 | .\objects\hal_pwr.o: ..\Device\MM32F3277\Include\mm32_device.h 42 | .\objects\hal_pwr.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_EXTI.H 43 | -------------------------------------------------------------------------------- /MDKprj/Objects/hal_pwr.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_pwr.o -------------------------------------------------------------------------------- /MDKprj/Objects/hal_rcc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_rcc.crf -------------------------------------------------------------------------------- /MDKprj/Objects/hal_rcc.d: -------------------------------------------------------------------------------- 1 | .\objects\hal_rcc.o: ..\Device\MM32F3277\HAL_Lib\Src\hal_rcc.c 2 | .\objects\hal_rcc.o: ..\Device\MM32F3277\Include\mm32_reg.h 3 | .\objects\hal_rcc.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdint.h 4 | .\objects\hal_rcc.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdbool.h 5 | .\objects\hal_rcc.o: ..\Device\MM32F3277\Include\types.h 6 | .\objects\hal_rcc.o: ..\Device\MM32F3277\Include\reg_common.h 7 | .\objects\hal_rcc.o: ..\Device\CMSIS\KEIL_Core\core_cm3.h 8 | .\objects\hal_rcc.o: ..\Device\CMSIS\KEIL_Core\cmsis_compiler.h 9 | .\objects\hal_rcc.o: ..\Device\CMSIS\KEIL_Core\cmsis_armcc.h 10 | .\objects\hal_rcc.o: ..\Device\MM32F3277\Include\reg_adc.h 11 | .\objects\hal_rcc.o: ..\Device\MM32F3277\Include\reg_bkp.h 12 | .\objects\hal_rcc.o: ..\Device\MM32F3277\Include\reg_can.h 13 | .\objects\hal_rcc.o: ..\Device\MM32F3277\Include\reg_comp.h 14 | .\objects\hal_rcc.o: ..\Device\MM32F3277\Include\reg_crc.h 15 | .\objects\hal_rcc.o: ..\Device\MM32F3277\Include\reg_crs.h 16 | .\objects\hal_rcc.o: ..\Device\MM32F3277\Include\reg_dac.h 17 | .\objects\hal_rcc.o: ..\Device\MM32F3277\Include\reg_dbg.h 18 | .\objects\hal_rcc.o: ..\Device\MM32F3277\Include\reg_dma.h 19 | .\objects\hal_rcc.o: ..\Device\MM32F3277\Include\reg_exti.h 20 | .\objects\hal_rcc.o: ..\Device\MM32F3277\Include\reg_eth.h 21 | .\objects\hal_rcc.o: ..\Device\MM32F3277\Include\reg_flash.h 22 | .\objects\hal_rcc.o: ..\Device\MM32F3277\Include\reg_gpio.h 23 | .\objects\hal_rcc.o: ..\Device\MM32F3277\Include\reg_i2c.h 24 | .\objects\hal_rcc.o: ..\Device\MM32F3277\Include\reg_iwdg.h 25 | .\objects\hal_rcc.o: ..\Device\MM32F3277\Include\reg_pwm.h 26 | .\objects\hal_rcc.o: ..\Device\MM32F3277\Include\reg_pwr.h 27 | .\objects\hal_rcc.o: ..\Device\MM32F3277\Include\reg_rcc.h 28 | .\objects\hal_rcc.o: ..\Device\MM32F3277\Include\reg_rtc.h 29 | .\objects\hal_rcc.o: ..\Device\MM32F3277\Include\reg_sdio.h 30 | .\objects\hal_rcc.o: ..\Device\MM32F3277\Include\mm32_reg.h 31 | .\objects\hal_rcc.o: ..\Device\MM32F3277\Include\reg_spi.h 32 | .\objects\hal_rcc.o: ..\Device\MM32F3277\Include\reg_syscfg.h 33 | .\objects\hal_rcc.o: ..\Device\MM32F3277\Include\reg_tim.h 34 | .\objects\hal_rcc.o: ..\Device\MM32F3277\Include\reg_uart.h 35 | .\objects\hal_rcc.o: ..\Device\MM32F3277\Include\reg_usb_otg_fs.h 36 | .\objects\hal_rcc.o: ..\Device\MM32F3277\Include\reg_wwdg.h 37 | .\objects\hal_rcc.o: ..\Device\MM32F3277\Include\mm32_reg_redefine_v1.h 38 | .\objects\hal_rcc.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_rcc.h 39 | -------------------------------------------------------------------------------- /MDKprj/Objects/hal_rcc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_rcc.o -------------------------------------------------------------------------------- /MDKprj/Objects/hal_rtc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_rtc.crf -------------------------------------------------------------------------------- /MDKprj/Objects/hal_rtc.d: -------------------------------------------------------------------------------- 1 | .\objects\hal_rtc.o: ..\Device\MM32F3277\HAL_Lib\Src\hal_rtc.c 2 | .\objects\hal_rtc.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_rtc.h 3 | .\objects\hal_rtc.o: ..\Device\MM32F3277\Include\types.h 4 | .\objects\hal_rtc.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdint.h 5 | .\objects\hal_rtc.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdbool.h 6 | .\objects\hal_rtc.o: ..\Device\MM32F3277\Include\reg_common.h 7 | .\objects\hal_rtc.o: ..\Device\CMSIS\KEIL_Core\core_cm3.h 8 | .\objects\hal_rtc.o: ..\Device\CMSIS\KEIL_Core\cmsis_compiler.h 9 | .\objects\hal_rtc.o: ..\Device\CMSIS\KEIL_Core\cmsis_armcc.h 10 | .\objects\hal_rtc.o: ..\Device\MM32F3277\Include\reg_rtc.h 11 | -------------------------------------------------------------------------------- /MDKprj/Objects/hal_rtc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_rtc.o -------------------------------------------------------------------------------- /MDKprj/Objects/hal_sdio.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_sdio.crf -------------------------------------------------------------------------------- /MDKprj/Objects/hal_sdio.d: -------------------------------------------------------------------------------- 1 | .\objects\hal_sdio.o: ..\Device\MM32F3277\HAL_Lib\Src\hal_sdio.c 2 | .\objects\hal_sdio.o: ..\Device\MM32F3277\Include\reg_sdio.h 3 | .\objects\hal_sdio.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdint.h 4 | .\objects\hal_sdio.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdbool.h 5 | .\objects\hal_sdio.o: ..\Device\MM32F3277\Include\mm32_reg.h 6 | .\objects\hal_sdio.o: ..\Device\MM32F3277\Include\types.h 7 | .\objects\hal_sdio.o: ..\Device\MM32F3277\Include\reg_common.h 8 | .\objects\hal_sdio.o: ..\Device\CMSIS\KEIL_Core\core_cm3.h 9 | .\objects\hal_sdio.o: ..\Device\CMSIS\KEIL_Core\cmsis_compiler.h 10 | .\objects\hal_sdio.o: ..\Device\CMSIS\KEIL_Core\cmsis_armcc.h 11 | .\objects\hal_sdio.o: ..\Device\MM32F3277\Include\reg_adc.h 12 | .\objects\hal_sdio.o: ..\Device\MM32F3277\Include\reg_bkp.h 13 | .\objects\hal_sdio.o: ..\Device\MM32F3277\Include\reg_can.h 14 | .\objects\hal_sdio.o: ..\Device\MM32F3277\Include\reg_comp.h 15 | .\objects\hal_sdio.o: ..\Device\MM32F3277\Include\reg_crc.h 16 | .\objects\hal_sdio.o: ..\Device\MM32F3277\Include\reg_crs.h 17 | .\objects\hal_sdio.o: ..\Device\MM32F3277\Include\reg_dac.h 18 | .\objects\hal_sdio.o: ..\Device\MM32F3277\Include\reg_dbg.h 19 | .\objects\hal_sdio.o: ..\Device\MM32F3277\Include\reg_dma.h 20 | .\objects\hal_sdio.o: ..\Device\MM32F3277\Include\reg_exti.h 21 | .\objects\hal_sdio.o: ..\Device\MM32F3277\Include\reg_eth.h 22 | .\objects\hal_sdio.o: ..\Device\MM32F3277\Include\reg_flash.h 23 | .\objects\hal_sdio.o: ..\Device\MM32F3277\Include\reg_gpio.h 24 | .\objects\hal_sdio.o: ..\Device\MM32F3277\Include\reg_i2c.h 25 | .\objects\hal_sdio.o: ..\Device\MM32F3277\Include\reg_iwdg.h 26 | .\objects\hal_sdio.o: ..\Device\MM32F3277\Include\reg_pwm.h 27 | .\objects\hal_sdio.o: ..\Device\MM32F3277\Include\reg_pwr.h 28 | .\objects\hal_sdio.o: ..\Device\MM32F3277\Include\reg_rcc.h 29 | .\objects\hal_sdio.o: ..\Device\MM32F3277\Include\reg_rtc.h 30 | .\objects\hal_sdio.o: ..\Device\MM32F3277\Include\reg_sdio.h 31 | .\objects\hal_sdio.o: ..\Device\MM32F3277\Include\reg_spi.h 32 | .\objects\hal_sdio.o: ..\Device\MM32F3277\Include\reg_syscfg.h 33 | .\objects\hal_sdio.o: ..\Device\MM32F3277\Include\reg_tim.h 34 | .\objects\hal_sdio.o: ..\Device\MM32F3277\Include\reg_uart.h 35 | .\objects\hal_sdio.o: ..\Device\MM32F3277\Include\reg_usb_otg_fs.h 36 | .\objects\hal_sdio.o: ..\Device\MM32F3277\Include\reg_wwdg.h 37 | .\objects\hal_sdio.o: ..\Device\MM32F3277\Include\mm32_reg_redefine_v1.h 38 | .\objects\hal_sdio.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_rcc.h 39 | .\objects\hal_sdio.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_sdio.h 40 | .\objects\hal_sdio.o: ..\Device\MM32F3277\Include\mm32_device.h 41 | -------------------------------------------------------------------------------- /MDKprj/Objects/hal_sdio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_sdio.o -------------------------------------------------------------------------------- /MDKprj/Objects/hal_spi.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_spi.crf -------------------------------------------------------------------------------- /MDKprj/Objects/hal_spi.d: -------------------------------------------------------------------------------- 1 | .\objects\hal_spi.o: ..\Device\MM32F3277\HAL_Lib\Src\hal_spi.c 2 | .\objects\hal_spi.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\math.h 3 | .\objects\hal_spi.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_spi.h 4 | .\objects\hal_spi.o: ..\Device\MM32F3277\Include\types.h 5 | .\objects\hal_spi.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\hal_spi.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdbool.h 7 | .\objects\hal_spi.o: ..\Device\MM32F3277\Include\reg_spi.h 8 | .\objects\hal_spi.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_rcc.h 9 | .\objects\hal_spi.o: ..\Device\MM32F3277\Include\reg_common.h 10 | .\objects\hal_spi.o: ..\Device\CMSIS\KEIL_Core\core_cm3.h 11 | .\objects\hal_spi.o: ..\Device\CMSIS\KEIL_Core\cmsis_compiler.h 12 | .\objects\hal_spi.o: ..\Device\CMSIS\KEIL_Core\cmsis_armcc.h 13 | .\objects\hal_spi.o: ..\Device\MM32F3277\Include\mm32_reg.h 14 | .\objects\hal_spi.o: ..\Device\MM32F3277\Include\reg_adc.h 15 | .\objects\hal_spi.o: ..\Device\MM32F3277\Include\reg_bkp.h 16 | .\objects\hal_spi.o: ..\Device\MM32F3277\Include\reg_can.h 17 | .\objects\hal_spi.o: ..\Device\MM32F3277\Include\reg_comp.h 18 | .\objects\hal_spi.o: ..\Device\MM32F3277\Include\reg_crc.h 19 | .\objects\hal_spi.o: ..\Device\MM32F3277\Include\reg_crs.h 20 | .\objects\hal_spi.o: ..\Device\MM32F3277\Include\reg_dac.h 21 | .\objects\hal_spi.o: ..\Device\MM32F3277\Include\reg_dbg.h 22 | .\objects\hal_spi.o: ..\Device\MM32F3277\Include\reg_dma.h 23 | .\objects\hal_spi.o: ..\Device\MM32F3277\Include\reg_exti.h 24 | .\objects\hal_spi.o: ..\Device\MM32F3277\Include\reg_eth.h 25 | .\objects\hal_spi.o: ..\Device\MM32F3277\Include\reg_flash.h 26 | .\objects\hal_spi.o: ..\Device\MM32F3277\Include\reg_gpio.h 27 | .\objects\hal_spi.o: ..\Device\MM32F3277\Include\reg_i2c.h 28 | .\objects\hal_spi.o: ..\Device\MM32F3277\Include\reg_iwdg.h 29 | .\objects\hal_spi.o: ..\Device\MM32F3277\Include\reg_pwm.h 30 | .\objects\hal_spi.o: ..\Device\MM32F3277\Include\reg_pwr.h 31 | .\objects\hal_spi.o: ..\Device\MM32F3277\Include\reg_rcc.h 32 | .\objects\hal_spi.o: ..\Device\MM32F3277\Include\reg_rtc.h 33 | .\objects\hal_spi.o: ..\Device\MM32F3277\Include\reg_sdio.h 34 | .\objects\hal_spi.o: ..\Device\MM32F3277\Include\mm32_reg.h 35 | .\objects\hal_spi.o: ..\Device\MM32F3277\Include\reg_syscfg.h 36 | .\objects\hal_spi.o: ..\Device\MM32F3277\Include\reg_tim.h 37 | .\objects\hal_spi.o: ..\Device\MM32F3277\Include\reg_uart.h 38 | .\objects\hal_spi.o: ..\Device\MM32F3277\Include\reg_usb_otg_fs.h 39 | .\objects\hal_spi.o: ..\Device\MM32F3277\Include\reg_wwdg.h 40 | .\objects\hal_spi.o: ..\Device\MM32F3277\Include\mm32_reg_redefine_v1.h 41 | -------------------------------------------------------------------------------- /MDKprj/Objects/hal_spi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_spi.o -------------------------------------------------------------------------------- /MDKprj/Objects/hal_tim.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_tim.crf -------------------------------------------------------------------------------- /MDKprj/Objects/hal_tim.d: -------------------------------------------------------------------------------- 1 | .\objects\hal_tim.o: ..\Device\MM32F3277\HAL_Lib\Src\hal_tim.c 2 | .\objects\hal_tim.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_rcc.h 3 | .\objects\hal_tim.o: ..\Device\MM32F3277\Include\types.h 4 | .\objects\hal_tim.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdint.h 5 | .\objects\hal_tim.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdbool.h 6 | .\objects\hal_tim.o: ..\Device\MM32F3277\Include\reg_common.h 7 | .\objects\hal_tim.o: ..\Device\CMSIS\KEIL_Core\core_cm3.h 8 | .\objects\hal_tim.o: ..\Device\CMSIS\KEIL_Core\cmsis_compiler.h 9 | .\objects\hal_tim.o: ..\Device\CMSIS\KEIL_Core\cmsis_armcc.h 10 | .\objects\hal_tim.o: ..\Device\MM32F3277\Include\mm32_reg.h 11 | .\objects\hal_tim.o: ..\Device\MM32F3277\Include\reg_adc.h 12 | .\objects\hal_tim.o: ..\Device\MM32F3277\Include\reg_bkp.h 13 | .\objects\hal_tim.o: ..\Device\MM32F3277\Include\reg_can.h 14 | .\objects\hal_tim.o: ..\Device\MM32F3277\Include\reg_comp.h 15 | .\objects\hal_tim.o: ..\Device\MM32F3277\Include\reg_crc.h 16 | .\objects\hal_tim.o: ..\Device\MM32F3277\Include\reg_crs.h 17 | .\objects\hal_tim.o: ..\Device\MM32F3277\Include\reg_dac.h 18 | .\objects\hal_tim.o: ..\Device\MM32F3277\Include\reg_dbg.h 19 | .\objects\hal_tim.o: ..\Device\MM32F3277\Include\reg_dma.h 20 | .\objects\hal_tim.o: ..\Device\MM32F3277\Include\reg_exti.h 21 | .\objects\hal_tim.o: ..\Device\MM32F3277\Include\reg_eth.h 22 | .\objects\hal_tim.o: ..\Device\MM32F3277\Include\reg_flash.h 23 | .\objects\hal_tim.o: ..\Device\MM32F3277\Include\reg_gpio.h 24 | .\objects\hal_tim.o: ..\Device\MM32F3277\Include\reg_i2c.h 25 | .\objects\hal_tim.o: ..\Device\MM32F3277\Include\reg_iwdg.h 26 | .\objects\hal_tim.o: ..\Device\MM32F3277\Include\reg_pwm.h 27 | .\objects\hal_tim.o: ..\Device\MM32F3277\Include\reg_pwr.h 28 | .\objects\hal_tim.o: ..\Device\MM32F3277\Include\reg_rcc.h 29 | .\objects\hal_tim.o: ..\Device\MM32F3277\Include\reg_rtc.h 30 | .\objects\hal_tim.o: ..\Device\MM32F3277\Include\reg_sdio.h 31 | .\objects\hal_tim.o: ..\Device\MM32F3277\Include\mm32_reg.h 32 | .\objects\hal_tim.o: ..\Device\MM32F3277\Include\reg_spi.h 33 | .\objects\hal_tim.o: ..\Device\MM32F3277\Include\reg_syscfg.h 34 | .\objects\hal_tim.o: ..\Device\MM32F3277\Include\reg_tim.h 35 | .\objects\hal_tim.o: ..\Device\MM32F3277\Include\reg_uart.h 36 | .\objects\hal_tim.o: ..\Device\MM32F3277\Include\reg_usb_otg_fs.h 37 | .\objects\hal_tim.o: ..\Device\MM32F3277\Include\reg_wwdg.h 38 | .\objects\hal_tim.o: ..\Device\MM32F3277\Include\mm32_reg_redefine_v1.h 39 | .\objects\hal_tim.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_tim.h 40 | -------------------------------------------------------------------------------- /MDKprj/Objects/hal_tim.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_tim.o -------------------------------------------------------------------------------- /MDKprj/Objects/hal_uart.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_uart.crf -------------------------------------------------------------------------------- /MDKprj/Objects/hal_uart.d: -------------------------------------------------------------------------------- 1 | .\objects\hal_uart.o: ..\Device\MM32F3277\HAL_Lib\Src\hal_uart.c 2 | .\objects\hal_uart.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_rcc.h 3 | .\objects\hal_uart.o: ..\Device\MM32F3277\Include\types.h 4 | .\objects\hal_uart.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdint.h 5 | .\objects\hal_uart.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdbool.h 6 | .\objects\hal_uart.o: ..\Device\MM32F3277\Include\reg_common.h 7 | .\objects\hal_uart.o: ..\Device\CMSIS\KEIL_Core\core_cm3.h 8 | .\objects\hal_uart.o: ..\Device\CMSIS\KEIL_Core\cmsis_compiler.h 9 | .\objects\hal_uart.o: ..\Device\CMSIS\KEIL_Core\cmsis_armcc.h 10 | .\objects\hal_uart.o: ..\Device\MM32F3277\Include\mm32_reg.h 11 | .\objects\hal_uart.o: ..\Device\MM32F3277\Include\reg_adc.h 12 | .\objects\hal_uart.o: ..\Device\MM32F3277\Include\reg_bkp.h 13 | .\objects\hal_uart.o: ..\Device\MM32F3277\Include\reg_can.h 14 | .\objects\hal_uart.o: ..\Device\MM32F3277\Include\reg_comp.h 15 | .\objects\hal_uart.o: ..\Device\MM32F3277\Include\reg_crc.h 16 | .\objects\hal_uart.o: ..\Device\MM32F3277\Include\reg_crs.h 17 | .\objects\hal_uart.o: ..\Device\MM32F3277\Include\reg_dac.h 18 | .\objects\hal_uart.o: ..\Device\MM32F3277\Include\reg_dbg.h 19 | .\objects\hal_uart.o: ..\Device\MM32F3277\Include\reg_dma.h 20 | .\objects\hal_uart.o: ..\Device\MM32F3277\Include\reg_exti.h 21 | .\objects\hal_uart.o: ..\Device\MM32F3277\Include\reg_eth.h 22 | .\objects\hal_uart.o: ..\Device\MM32F3277\Include\reg_flash.h 23 | .\objects\hal_uart.o: ..\Device\MM32F3277\Include\reg_gpio.h 24 | .\objects\hal_uart.o: ..\Device\MM32F3277\Include\reg_i2c.h 25 | .\objects\hal_uart.o: ..\Device\MM32F3277\Include\reg_iwdg.h 26 | .\objects\hal_uart.o: ..\Device\MM32F3277\Include\reg_pwm.h 27 | .\objects\hal_uart.o: ..\Device\MM32F3277\Include\reg_pwr.h 28 | .\objects\hal_uart.o: ..\Device\MM32F3277\Include\reg_rcc.h 29 | .\objects\hal_uart.o: ..\Device\MM32F3277\Include\reg_rtc.h 30 | .\objects\hal_uart.o: ..\Device\MM32F3277\Include\reg_sdio.h 31 | .\objects\hal_uart.o: ..\Device\MM32F3277\Include\mm32_reg.h 32 | .\objects\hal_uart.o: ..\Device\MM32F3277\Include\reg_spi.h 33 | .\objects\hal_uart.o: ..\Device\MM32F3277\Include\reg_syscfg.h 34 | .\objects\hal_uart.o: ..\Device\MM32F3277\Include\reg_tim.h 35 | .\objects\hal_uart.o: ..\Device\MM32F3277\Include\reg_uart.h 36 | .\objects\hal_uart.o: ..\Device\MM32F3277\Include\reg_usb_otg_fs.h 37 | .\objects\hal_uart.o: ..\Device\MM32F3277\Include\reg_wwdg.h 38 | .\objects\hal_uart.o: ..\Device\MM32F3277\Include\mm32_reg_redefine_v1.h 39 | .\objects\hal_uart.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_uart.h 40 | .\objects\hal_uart.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_gpio.h 41 | .\objects\hal_uart.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_dma.h 42 | -------------------------------------------------------------------------------- /MDKprj/Objects/hal_uart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_uart.o -------------------------------------------------------------------------------- /MDKprj/Objects/hal_uid.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_uid.crf -------------------------------------------------------------------------------- /MDKprj/Objects/hal_uid.d: -------------------------------------------------------------------------------- 1 | .\objects\hal_uid.o: ..\Device\MM32F3277\HAL_Lib\Src\hal_uid.c 2 | .\objects\hal_uid.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_uid.h 3 | .\objects\hal_uid.o: ..\Device\MM32F3277\Include\types.h 4 | .\objects\hal_uid.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdint.h 5 | .\objects\hal_uid.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdbool.h 6 | .\objects\hal_uid.o: ..\Device\MM32F3277\Include\reg_common.h 7 | .\objects\hal_uid.o: ..\Device\CMSIS\KEIL_Core\core_cm3.h 8 | .\objects\hal_uid.o: ..\Device\CMSIS\KEIL_Core\cmsis_compiler.h 9 | .\objects\hal_uid.o: ..\Device\CMSIS\KEIL_Core\cmsis_armcc.h 10 | -------------------------------------------------------------------------------- /MDKprj/Objects/hal_uid.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_uid.o -------------------------------------------------------------------------------- /MDKprj/Objects/hal_ver.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_ver.crf -------------------------------------------------------------------------------- /MDKprj/Objects/hal_ver.d: -------------------------------------------------------------------------------- 1 | .\objects\hal_ver.o: ..\Device\MM32F3277\HAL_Lib\Src\hal_ver.c 2 | .\objects\hal_ver.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_ver.h 3 | .\objects\hal_ver.o: ..\Device\MM32F3277\Include\reg_common.h 4 | .\objects\hal_ver.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdint.h 5 | .\objects\hal_ver.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdbool.h 6 | .\objects\hal_ver.o: ..\Device\MM32F3277\Include\types.h 7 | .\objects\hal_ver.o: ..\Device\CMSIS\KEIL_Core\core_cm3.h 8 | .\objects\hal_ver.o: ..\Device\CMSIS\KEIL_Core\cmsis_compiler.h 9 | .\objects\hal_ver.o: ..\Device\CMSIS\KEIL_Core\cmsis_armcc.h 10 | .\objects\hal_ver.o: ..\Device\MM32F3277\Include\reg_dbg.h 11 | -------------------------------------------------------------------------------- /MDKprj/Objects/hal_ver.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_ver.o -------------------------------------------------------------------------------- /MDKprj/Objects/hal_wwdg.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_wwdg.crf -------------------------------------------------------------------------------- /MDKprj/Objects/hal_wwdg.d: -------------------------------------------------------------------------------- 1 | .\objects\hal_wwdg.o: ..\Device\MM32F3277\HAL_Lib\Src\hal_wwdg.c 2 | .\objects\hal_wwdg.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_wwdg.h 3 | .\objects\hal_wwdg.o: ..\Device\MM32F3277\Include\types.h 4 | .\objects\hal_wwdg.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdint.h 5 | .\objects\hal_wwdg.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdbool.h 6 | .\objects\hal_wwdg.o: ..\Device\MM32F3277\Include\reg_wwdg.h 7 | .\objects\hal_wwdg.o: ..\Device\MM32F3277\HAL_Lib\Inc\hal_rcc.h 8 | .\objects\hal_wwdg.o: ..\Device\MM32F3277\Include\reg_common.h 9 | .\objects\hal_wwdg.o: ..\Device\CMSIS\KEIL_Core\core_cm3.h 10 | .\objects\hal_wwdg.o: ..\Device\CMSIS\KEIL_Core\cmsis_compiler.h 11 | .\objects\hal_wwdg.o: ..\Device\CMSIS\KEIL_Core\cmsis_armcc.h 12 | .\objects\hal_wwdg.o: ..\Device\MM32F3277\Include\mm32_reg.h 13 | .\objects\hal_wwdg.o: ..\Device\MM32F3277\Include\reg_adc.h 14 | .\objects\hal_wwdg.o: ..\Device\MM32F3277\Include\reg_bkp.h 15 | .\objects\hal_wwdg.o: ..\Device\MM32F3277\Include\reg_can.h 16 | .\objects\hal_wwdg.o: ..\Device\MM32F3277\Include\reg_comp.h 17 | .\objects\hal_wwdg.o: ..\Device\MM32F3277\Include\reg_crc.h 18 | .\objects\hal_wwdg.o: ..\Device\MM32F3277\Include\reg_crs.h 19 | .\objects\hal_wwdg.o: ..\Device\MM32F3277\Include\reg_dac.h 20 | .\objects\hal_wwdg.o: ..\Device\MM32F3277\Include\reg_dbg.h 21 | .\objects\hal_wwdg.o: ..\Device\MM32F3277\Include\reg_dma.h 22 | .\objects\hal_wwdg.o: ..\Device\MM32F3277\Include\reg_exti.h 23 | .\objects\hal_wwdg.o: ..\Device\MM32F3277\Include\reg_eth.h 24 | .\objects\hal_wwdg.o: ..\Device\MM32F3277\Include\reg_flash.h 25 | .\objects\hal_wwdg.o: ..\Device\MM32F3277\Include\reg_gpio.h 26 | .\objects\hal_wwdg.o: ..\Device\MM32F3277\Include\reg_i2c.h 27 | .\objects\hal_wwdg.o: ..\Device\MM32F3277\Include\reg_iwdg.h 28 | .\objects\hal_wwdg.o: ..\Device\MM32F3277\Include\reg_pwm.h 29 | .\objects\hal_wwdg.o: ..\Device\MM32F3277\Include\reg_pwr.h 30 | .\objects\hal_wwdg.o: ..\Device\MM32F3277\Include\reg_rcc.h 31 | .\objects\hal_wwdg.o: ..\Device\MM32F3277\Include\reg_rtc.h 32 | .\objects\hal_wwdg.o: ..\Device\MM32F3277\Include\reg_sdio.h 33 | .\objects\hal_wwdg.o: ..\Device\MM32F3277\Include\mm32_reg.h 34 | .\objects\hal_wwdg.o: ..\Device\MM32F3277\Include\reg_spi.h 35 | .\objects\hal_wwdg.o: ..\Device\MM32F3277\Include\reg_syscfg.h 36 | .\objects\hal_wwdg.o: ..\Device\MM32F3277\Include\reg_tim.h 37 | .\objects\hal_wwdg.o: ..\Device\MM32F3277\Include\reg_uart.h 38 | .\objects\hal_wwdg.o: ..\Device\MM32F3277\Include\reg_usb_otg_fs.h 39 | .\objects\hal_wwdg.o: ..\Device\MM32F3277\Include\mm32_reg_redefine_v1.h 40 | -------------------------------------------------------------------------------- /MDKprj/Objects/hal_wwdg.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/hal_wwdg.o -------------------------------------------------------------------------------- /MDKprj/Objects/lq_adc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_adc.crf -------------------------------------------------------------------------------- /MDKprj/Objects/lq_adc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_adc.o -------------------------------------------------------------------------------- /MDKprj/Objects/lq_anoscope.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_anoscope.crf -------------------------------------------------------------------------------- /MDKprj/Objects/lq_anoscope.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_anoscope.o -------------------------------------------------------------------------------- /MDKprj/Objects/lq_balance.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_balance.crf -------------------------------------------------------------------------------- /MDKprj/Objects/lq_balance.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_balance.o -------------------------------------------------------------------------------- /MDKprj/Objects/lq_camera.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_camera.crf -------------------------------------------------------------------------------- /MDKprj/Objects/lq_camera.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_camera.o -------------------------------------------------------------------------------- /MDKprj/Objects/lq_demo_dmp.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_demo_dmp.crf -------------------------------------------------------------------------------- /MDKprj/Objects/lq_demo_dmp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_demo_dmp.o -------------------------------------------------------------------------------- /MDKprj/Objects/lq_dma.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_dma.crf -------------------------------------------------------------------------------- /MDKprj/Objects/lq_dma.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_dma.o -------------------------------------------------------------------------------- /MDKprj/Objects/lq_encoder.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_encoder.crf -------------------------------------------------------------------------------- /MDKprj/Objects/lq_encoder.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_encoder.o -------------------------------------------------------------------------------- /MDKprj/Objects/lq_flash.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_flash.crf -------------------------------------------------------------------------------- /MDKprj/Objects/lq_flash.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_flash.o -------------------------------------------------------------------------------- /MDKprj/Objects/lq_gpio.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_gpio.crf -------------------------------------------------------------------------------- /MDKprj/Objects/lq_gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_gpio.o -------------------------------------------------------------------------------- /MDKprj/Objects/lq_gpio_exit.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_gpio_exit.crf -------------------------------------------------------------------------------- /MDKprj/Objects/lq_gpio_exit.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_gpio_exit.o -------------------------------------------------------------------------------- /MDKprj/Objects/lq_gpio_key.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_gpio_key.crf -------------------------------------------------------------------------------- /MDKprj/Objects/lq_gpio_key.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_gpio_key.o -------------------------------------------------------------------------------- /MDKprj/Objects/lq_gpio_led.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_gpio_led.crf -------------------------------------------------------------------------------- /MDKprj/Objects/lq_gpio_led.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_gpio_led.o -------------------------------------------------------------------------------- /MDKprj/Objects/lq_i2c.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_i2c.crf -------------------------------------------------------------------------------- /MDKprj/Objects/lq_i2c.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_i2c.o -------------------------------------------------------------------------------- /MDKprj/Objects/lq_i2c_mpu6050.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_i2c_mpu6050.crf -------------------------------------------------------------------------------- /MDKprj/Objects/lq_i2c_mpu6050.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_i2c_mpu6050.o -------------------------------------------------------------------------------- /MDKprj/Objects/lq_i2c_mpu9250.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_i2c_mpu9250.crf -------------------------------------------------------------------------------- /MDKprj/Objects/lq_i2c_mpu9250.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_i2c_mpu9250.o -------------------------------------------------------------------------------- /MDKprj/Objects/lq_icm20689.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_icm20689.crf -------------------------------------------------------------------------------- /MDKprj/Objects/lq_icm20689.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_icm20689.o -------------------------------------------------------------------------------- /MDKprj/Objects/lq_imageprocess.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_imageprocess.crf -------------------------------------------------------------------------------- /MDKprj/Objects/lq_imageprocess.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_imageprocess.o -------------------------------------------------------------------------------- /MDKprj/Objects/lq_inductor.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_inductor.crf -------------------------------------------------------------------------------- /MDKprj/Objects/lq_inductor.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_inductor.o -------------------------------------------------------------------------------- /MDKprj/Objects/lq_motorservo.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_motorservo.crf -------------------------------------------------------------------------------- /MDKprj/Objects/lq_motorservo.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_motorservo.o -------------------------------------------------------------------------------- /MDKprj/Objects/lq_mt9v034.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_mt9v034.crf -------------------------------------------------------------------------------- /MDKprj/Objects/lq_mt9v034.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_mt9v034.o -------------------------------------------------------------------------------- /MDKprj/Objects/lq_oled096.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_oled096.crf -------------------------------------------------------------------------------- /MDKprj/Objects/lq_oled096.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_oled096.o -------------------------------------------------------------------------------- /MDKprj/Objects/lq_pid.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_pid.crf -------------------------------------------------------------------------------- /MDKprj/Objects/lq_pid.d: -------------------------------------------------------------------------------- 1 | .\objects\lq_pid.o: ..\APP\LQ_PID.c 2 | .\objects\lq_pid.o: ..\APP\LQ_PID.h 3 | .\objects\lq_pid.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdint.h 4 | -------------------------------------------------------------------------------- /MDKprj/Objects/lq_pid.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_pid.o -------------------------------------------------------------------------------- /MDKprj/Objects/lq_pwm.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_pwm.crf -------------------------------------------------------------------------------- /MDKprj/Objects/lq_pwm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_pwm.o -------------------------------------------------------------------------------- /MDKprj/Objects/lq_softi2c.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_softi2c.crf -------------------------------------------------------------------------------- /MDKprj/Objects/lq_softi2c.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_softi2c.o -------------------------------------------------------------------------------- /MDKprj/Objects/lq_softspi.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_softspi.crf -------------------------------------------------------------------------------- /MDKprj/Objects/lq_softspi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_softspi.o -------------------------------------------------------------------------------- /MDKprj/Objects/lq_spi.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_spi.crf -------------------------------------------------------------------------------- /MDKprj/Objects/lq_spi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_spi.o -------------------------------------------------------------------------------- /MDKprj/Objects/lq_sys.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_sys.crf -------------------------------------------------------------------------------- /MDKprj/Objects/lq_sys.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_sys.o -------------------------------------------------------------------------------- /MDKprj/Objects/lq_tft18.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_tft18.crf -------------------------------------------------------------------------------- /MDKprj/Objects/lq_tft18.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_tft18.o -------------------------------------------------------------------------------- /MDKprj/Objects/lq_timer.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_timer.crf -------------------------------------------------------------------------------- /MDKprj/Objects/lq_timer.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_timer.o -------------------------------------------------------------------------------- /MDKprj/Objects/lq_uart.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_uart.crf -------------------------------------------------------------------------------- /MDKprj/Objects/lq_uart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/lq_uart.o -------------------------------------------------------------------------------- /MDKprj/Objects/main.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/main.crf -------------------------------------------------------------------------------- /MDKprj/Objects/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/main.o -------------------------------------------------------------------------------- /MDKprj/Objects/startup_mm32f327x_keil.d: -------------------------------------------------------------------------------- 1 | .\objects\startup_mm32f327x_keil.o: ..\Device\MM32F3277\Source\KEIL_StartAsm\startup_mm32f327x_keil.s 2 | -------------------------------------------------------------------------------- /MDKprj/Objects/startup_mm32f327x_keil.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/startup_mm32f327x_keil.o -------------------------------------------------------------------------------- /MDKprj/Objects/system_mm32f327x.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/system_mm32f327x.crf -------------------------------------------------------------------------------- /MDKprj/Objects/system_mm32f327x.d: -------------------------------------------------------------------------------- 1 | .\objects\system_mm32f327x.o: ..\Device\MM32F3277\Source\system_mm32f327x.c 2 | .\objects\system_mm32f327x.o: ..\Device\MM32F3277\Include\mm32_device.h 3 | .\objects\system_mm32f327x.o: ..\Device\MM32F3277\Include\mm32_reg.h 4 | .\objects\system_mm32f327x.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdint.h 5 | .\objects\system_mm32f327x.o: E:\danpianji\keil 5\ARM\ARMCC\Bin\..\include\stdbool.h 6 | .\objects\system_mm32f327x.o: ..\Device\MM32F3277\Include\types.h 7 | .\objects\system_mm32f327x.o: ..\Device\MM32F3277\Include\reg_common.h 8 | .\objects\system_mm32f327x.o: ..\Device\CMSIS\KEIL_Core\core_cm3.h 9 | .\objects\system_mm32f327x.o: ..\Device\CMSIS\KEIL_Core\cmsis_compiler.h 10 | .\objects\system_mm32f327x.o: ..\Device\CMSIS\KEIL_Core\cmsis_armcc.h 11 | .\objects\system_mm32f327x.o: ..\Device\MM32F3277\Include\reg_adc.h 12 | .\objects\system_mm32f327x.o: ..\Device\MM32F3277\Include\reg_bkp.h 13 | .\objects\system_mm32f327x.o: ..\Device\MM32F3277\Include\reg_can.h 14 | .\objects\system_mm32f327x.o: ..\Device\MM32F3277\Include\reg_comp.h 15 | .\objects\system_mm32f327x.o: ..\Device\MM32F3277\Include\reg_crc.h 16 | .\objects\system_mm32f327x.o: ..\Device\MM32F3277\Include\reg_crs.h 17 | .\objects\system_mm32f327x.o: ..\Device\MM32F3277\Include\reg_dac.h 18 | .\objects\system_mm32f327x.o: ..\Device\MM32F3277\Include\reg_dbg.h 19 | .\objects\system_mm32f327x.o: ..\Device\MM32F3277\Include\reg_dma.h 20 | .\objects\system_mm32f327x.o: ..\Device\MM32F3277\Include\reg_exti.h 21 | .\objects\system_mm32f327x.o: ..\Device\MM32F3277\Include\reg_eth.h 22 | .\objects\system_mm32f327x.o: ..\Device\MM32F3277\Include\reg_flash.h 23 | .\objects\system_mm32f327x.o: ..\Device\MM32F3277\Include\reg_gpio.h 24 | .\objects\system_mm32f327x.o: ..\Device\MM32F3277\Include\reg_i2c.h 25 | .\objects\system_mm32f327x.o: ..\Device\MM32F3277\Include\reg_iwdg.h 26 | .\objects\system_mm32f327x.o: ..\Device\MM32F3277\Include\reg_pwm.h 27 | .\objects\system_mm32f327x.o: ..\Device\MM32F3277\Include\reg_pwr.h 28 | .\objects\system_mm32f327x.o: ..\Device\MM32F3277\Include\reg_rcc.h 29 | .\objects\system_mm32f327x.o: ..\Device\MM32F3277\Include\reg_rtc.h 30 | .\objects\system_mm32f327x.o: ..\Device\MM32F3277\Include\reg_sdio.h 31 | .\objects\system_mm32f327x.o: ..\Device\MM32F3277\Include\mm32_reg.h 32 | .\objects\system_mm32f327x.o: ..\Device\MM32F3277\Include\reg_spi.h 33 | .\objects\system_mm32f327x.o: ..\Device\MM32F3277\Include\reg_syscfg.h 34 | .\objects\system_mm32f327x.o: ..\Device\MM32F3277\Include\reg_tim.h 35 | .\objects\system_mm32f327x.o: ..\Device\MM32F3277\Include\reg_uart.h 36 | .\objects\system_mm32f327x.o: ..\Device\MM32F3277\Include\reg_usb_otg_fs.h 37 | .\objects\system_mm32f327x.o: ..\Device\MM32F3277\Include\reg_wwdg.h 38 | .\objects\system_mm32f327x.o: ..\Device\MM32F3277\Include\mm32_reg_redefine_v1.h 39 | -------------------------------------------------------------------------------- /MDKprj/Objects/system_mm32f327x.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/MDKprj/Objects/system_mm32f327x.o -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 十七届智能车平衡信标 2 | 十七届智能车平衡信标代码,使用灵动MM32系列MCU,串级PID平衡算法,图像处理采用基于八领域算法的连通域图像处理算法,使用基于近大远小、亮度、形状等可信度叠加信标灯识别算法。可在复杂光线场景下准确识别信标灯。小车控制使用就近原则和丢灯算法,可以最大程度降低走回头路的情况。 3 | -------------------------------------------------------------------------------- /SIR/Attitude_Calculation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/SIR/Attitude_Calculation.c -------------------------------------------------------------------------------- /SIR/Attitude_Calculation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/SIR/Attitude_Calculation.h -------------------------------------------------------------------------------- /SIR/SIR_BELL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/SIR/SIR_BELL.c -------------------------------------------------------------------------------- /SIR/SIR_BELL.h: -------------------------------------------------------------------------------- 1 | #ifndef __SIR_BELL_H_ 2 | #define __SIR_BELL_H_ 3 | 4 | #include "include.h" 5 | 6 | void SIR_BELL_Init(); 7 | 8 | 9 | 10 | 11 | 12 | #endif -------------------------------------------------------------------------------- /SIR/SIR_SPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/SIR/SIR_SPI.c -------------------------------------------------------------------------------- /SIR/SIR_SPI.h: -------------------------------------------------------------------------------- 1 | #ifndef __SIR_SPI_H_ 2 | #define __SIR_SPI_H_ 3 | 4 | #include "include.h" 5 | 6 | 7 | 8 | void SIR_SPI_Init(unsigned char SPI_N); 9 | 10 | 11 | 12 | #endif 13 | -------------------------------------------------------------------------------- /USER/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/USER/main.c -------------------------------------------------------------------------------- /USER/用户可以在此文件夹添加自己的文件.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/USER/用户可以在此文件夹添加自己的文件.txt -------------------------------------------------------------------------------- /USER/龙邱ARM144p母板资源分配.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxbsw/Balanced_Beacon_Smart_Car/b72289227c18938edfd8bb211b542f1518b7b1cb/USER/龙邱ARM144p母板资源分配.txt --------------------------------------------------------------------------------