找传奇、传世资源到传世资源站!

电赛2021H题

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

电赛2021H题
from clipboard
.
├── 主机
│   ├── CleanObj.bat
│   ├── Libraries
│   │   ├── CMSIS
│   │   │   ├── core_cm3.c
│   │   │   ├── core_cm3.h
│   │   │   ├── startup
│   │   │   │   ├── startup_stm32f10x_cl.s
│   │   │   │   ├── startup_stm32f10x_hd.s
│   │   │   │   ├── startup_stm32f10x_hd_vl.s
│   │   │   │   ├── startup_stm32f10x_ld.s
│   │   │   │   ├── startup_stm32f10x_ld_vl.s
│   │   │   │   ├── startup_stm32f10x_md.s
│   │   │   │   ├── startup_stm32f10x_md_vl.s
│   │   │   │   └── startup_stm32f10x_xl.s
│   │   │   ├── stm32f10x.h
│   │   │   ├── system_stm32f10x.c
│   │   │   └── system_stm32f10x.h
│   │   └── FWlib
│   │       ├── inc
│   │       │   ├── misc.h
│   │       │   ├── stm32f10x_adc.h
│   │       │   ├── stm32f10x_bkp.h
│   │       │   ├── stm32f10x_can.h
│   │       │   ├── stm32f10x_cec.h
│   │       │   ├── stm32f10x_crc.h
│   │       │   ├── stm32f10x_dac.h
│   │       │   ├── stm32f10x_dbgmcu.h
│   │       │   ├── stm32f10x_dma.h
│   │       │   ├── stm32f10x_exti.h
│   │       │   ├── stm32f10x_flash.h
│   │       │   ├── stm32f10x_fsmc.h
│   │       │   ├── stm32f10x_gpio.h
│   │       │   ├── stm32f10x_i2c.h
│   │       │   ├── stm32f10x_iwdg.h
│   │       │   ├── stm32f10x_pwr.h
│   │       │   ├── stm32f10x_rcc.h
│   │       │   ├── stm32f10x_rtc.h
│   │       │   ├── stm32f10x_sdio.h
│   │       │   ├── stm32f10x_spi.h
│   │       │   ├── stm32f10x_tim.h
│   │       │   ├── stm32f10x_usart.h
│   │       │   └── stm32f10x_wwdg.h
│   │       └── src
│   │           ├── misc.c
│   │           ├── stm32f10x_adc.c
│   │           ├── stm32f10x_bkp.c
│   │           ├── stm32f10x_can.c
│   │           ├── stm32f10x_cec.c
│   │           ├── stm32f10x_crc.c
│   │           ├── stm32f10x_dac.c
│   │           ├── stm32f10x_dbgmcu.c
│   │           ├── stm32f10x_dma.c
│   │           ├── stm32f10x_exti.c
│   │           ├── stm32f10x_flash.c
│   │           ├── stm32f10x_fsmc.c
│   │           ├── stm32f10x_gpio.c
│   │           ├── stm32f10x_i2c.c
│   │           ├── stm32f10x_iwdg.c
│   │           ├── stm32f10x_pwr.c
│   │           ├── stm32f10x_rcc.c
│   │           ├── stm32f10x_rtc.c
│   │           ├── stm32f10x_sdio.c
│   │           ├── stm32f10x_spi.c
│   │           ├── stm32f10x_tim.c
│   │           ├── stm32f10x_usart.c
│   │           └── stm32f10x_wwdg.c
│   ├── Project
│   │   ├── DebugConfig
│   │   ├── JLinkLog.txt
│   │   ├── JLinkSettings.ini
│   │   ├── Listings
│   │   │   ├── STM32_Proj.map
│   │   │   └── startup_stm32f10x_hd.lst
│   │   ├── Objects
│   │   │   ├── STM32_Proj.axf
│   │   │   ├── STM32_Proj.build_log.htm
│   │   │   ├── STM32_Proj.hex
│   │   │   ├── STM32_Proj.htm
│   │   │   ├── STM32_Proj.lnp
│   │   │   ├── STM32_Proj.sct
│   │   │   ├── STM32_Proj_STM32F103ZE.dep
│   │   │   ├── at24c02.crf
│   │   │   ├── at24c02.d
│   │   │   ├── at24c02.o
│   │   │   ├── att7022.crf
│   │   │   ├── att7022.d
│   │   │   ├── att7022.o
│   │   │   ├── button.crf
│   │   │   ├── button.d
│   │   │   ├── button.o
│   │   │   ├── core_cm3.crf
│   │   │   ├── core_cm3.d
│   │   │   ├── core_cm3.o
│   │   │   ├── i2c.crf
│   │   │   ├── i2c.d
│   │   │   ├── i2c.o
│   │   │   ├── main.crf
│   │   │   ├── main.d
│   │   │   ├── main.o
│   │   │   ├── misc.crf
│   │   │   ├── misc.d
│   │   │   ├── misc.o
│   │   │   ├── queue.crf
│   │   │   ├── queue.d
│   │   │   ├── queue.o
│   │   │   ├── spi.crf
│   │   │   ├── spi.d
│   │   │   ├── spi.o
│   │   │   ├── startup_stm32f10x_hd.d
│   │   │   ├── startup_stm32f10x_hd.o
│   │   │   ├── stm32f10x_fsmc.crf
│   │   │   ├── stm32f10x_fsmc.d
│   │   │   ├── stm32f10x_fsmc.o
│   │   │   ├── stm32f10x_gpio.crf
│   │   │   ├── stm32f10x_gpio.d
│   │   │   ├── stm32f10x_gpio.o
│   │   │   ├── stm32f10x_it.crf
│   │   │   ├── stm32f10x_it.d
│   │   │   ├── stm32f10x_it.o
│   │   │   ├── stm32f10x_rcc.crf
│   │   │   ├── stm32f10x_rcc.d
│   │   │   ├── stm32f10x_rcc.o
│   │   │   ├── stm32f10x_tim.crf
│   │   │   ├── stm32f10x_tim.d
│   │   │   ├── stm32f10x_tim.o
│   │   │   ├── stm32f10x_usart.crf
│   │   │   ├── stm32f10x_usart.d
│   │   │   ├── stm32f10x_usart.o
│   │   │   ├── system.crf
│   │   │   ├── system.d
│   │   │   ├── system.o
│   │   │   ├── system_stm32f10x.crf
│   │   │   ├── system_stm32f10x.d
│   │   │   ├── system_stm32f10x.o
│   │   │   ├── systick.crf
│   │   │   ├── systick.d
│   │   │   ├── systick.o
│   │   │   ├── timer.crf
│   │   │   ├── timer.d
│   │   │   ├── timer.o
│   │   │   ├── usart.crf
│   │   │   ├── usart.d
│   │   │   ├── usart.o
│   │   │   ├── usart2_hmi.crf
│   │   │   ├── usart2_hmi.d
│   │   │   ├── usart2_hmi.o
│   │   │   ├── usart3_zigbee.crf
│   │   │   ├── usart3_zigbee.d
│   │   │   └── usart3_zigbee.o
│   │   ├── STM32_Proj.uvgui.19651
│   │   ├── STM32_Proj.uvgui.Administrator
│   │   ├── STM32_Proj.uvgui.Jodam QD
│   │   ├── STM32_Proj.uvgui.LiZhengNian
│   │   ├── STM32_Proj.uvgui.李正念
│   │   ├── STM32_Proj.uvguix.root
│   │   ├── STM32_Proj.uvopt
│   │   ├── STM32_Proj.uvoptx
│   │   ├── STM32_Proj.uvproj
│   │   └── STM32_Proj_STM32F103ZE.dep
│   └── Source
│       ├── Att
│       │   ├── ATT7022.C
│       │   └── ATT7022.h
│       ├── Dev
│       │   ├── Button.c
│       │   ├── Button.h
│       │   ├── Queue.c
│       │   ├── SPI.c
│       │   ├── SPI.h
│       │   ├── SysTick.c
│       │   ├── SysTick.h
│       │   ├── Timer.c
│       │   ├── Timer.h
│       │   ├── Usart.c
│       │   ├── Usart.h
│       │   └── queue.h
│       ├── IIC
│       │   ├── AT24C02.c
│       │   ├── AT24C02.h
│       │   ├── I2C.c
│       │   └── I2C.h
│       ├── Lcd
│       │   ├── BackImage.c
│       │   ├── Font_Lib.h
│       │   ├── ILI9327_lcd.c
│       │   └── ILI9327_lcd.h
│       ├── Main
│       │   ├── Font_Lib.h
│       │   ├── RemapGPIO.h
│       │   ├── config.h
│       │   ├── main.c
│       │   ├── stm32f10x_conf.h
│       │   ├── stm32f10x_it.c
│       │   ├── stm32f10x_it.h
│       │   ├── system.c
│       │   └── system.h
│       ├── USART2_HMI
│       │   ├── usart2_HMI.c
│       │   └── usart2_HMI.h
│       └── ZigBee
│           ├── usart3_ZigBee.c
│           └── usart3_ZigBee.h
└── 从机
    ├── CleanObj.bat
    ├── Libraries
    │   ├── CMSIS
    │   │   ├── core_cm3.c
    │   │   ├── core_cm3.h
    │   │   ├── startup
    │   │   │   ├── startup_stm32f10x_cl.s
    │   │   │   ├── startup_stm32f10x_hd.s
    │   │   │   ├── startup_stm32f10x_hd_vl.s
    │   │   │   ├── startup_stm32f10x_ld.s
    │   │   │   ├── startup_stm32f10x_ld_vl.s
    │   │   │   ├── startup_stm32f10x_md.s
    │   │   │   ├── startup_stm32f10x_md_vl.s
    │   │   │   └── startup_stm32f10x_xl.s
    │   │   ├── stm32f10x.h
    │   │   ├── system_stm32f10x.c
    │   │   └── system_stm32f10x.h
    │   └── FWlib
    │       ├── inc
    │       │   ├── misc.h
    │       │   ├── stm32f10x_adc.h
    │       │   ├── stm32f10x_bkp.h
    │       │   ├── stm32f10x_can.h
    │       │   ├── stm32f10x_cec.h
    │       │   ├── stm32f10x_crc.h
    │       │   ├── stm32f10x_dac.h
    │       │   ├── stm32f10x_dbgmcu.h
    │       │   ├── stm32f10x_dma.h
    │       │   ├── stm32f10x_exti.h
    │       │   ├── stm32f10x_flash.h
    │       │   ├── stm32f10x_fsmc.h
    │       │   ├── stm32f10x_gpio.h
    │       │   ├── stm32f10x_i2c.h
    │       │   ├── stm32f10x_iwdg.h
    │       │   ├── stm32f10x_pwr.h
    │       │   ├── stm32f10x_rcc.h
    │       │   ├── stm32f10x_rtc.h
    │       │   ├── stm32f10x_sdio.h
    │       │   ├── stm32f10x_spi.h
    │       │   ├── stm32f10x_tim.h
    │       │   ├── stm32f10x_usart.h
    │       │   └── stm32f10x_wwdg.h
    │       └── src
    │           ├── misc.c
    │           ├── stm32f10x_adc.c
    │           ├── stm32f10x_bkp.c
    │           ├── stm32f10x_can.c
    │           ├── stm32f10x_cec.c
    │           ├── stm32f10x_crc.c
    │           ├── stm32f10x_dac.c
    │           ├── stm32f10x_dbgmcu.c
    │           ├── stm32f10x_dma.c
    │           ├── stm32f10x_exti.c
    │           ├── stm32f10x_flash.c
    │           ├── stm32f10x_fsmc.c
    │           ├── stm32f10x_gpio.c
    │           ├── stm32f10x_i2c.c
    │           ├── stm32f10x_iwdg.c
    │           ├── stm32f10x_pwr.c
    │           ├── stm32f10x_rcc.c
    │           ├── stm32f10x_rtc.c
    │           ├── stm32f10x_sdio.c
    │           ├── stm32f10x_spi.c
    │           ├── stm32f10x_tim.c
    │           ├── stm32f10x_usart.c
    │           └── stm32f10x_wwdg.c
    ├── Project
    │   ├── DebugConfig
    │   ├── JLinkLog.txt
    │   ├── JLinkSettings.ini
    │   ├── Listings
    │   ├── Objects
    │   ├── STM32_Proj.uvgui.19651
    │   ├── STM32_Proj.uvgui.Administrator
    │   ├── STM32_Proj.uvgui.Jodam QD
    │   ├── STM32_Proj.uvgui.LiZhengNian
    │   ├── STM32_Proj.uvgui.李正念
    │   ├── STM32_Proj.uvguix.root
    │   ├── STM32_Proj.uvopt
    │   ├── STM32_Proj.uvoptx
    │   ├── STM32_Proj.uvproj
    │   └── STM32_Proj_STM32F103ZE.dep
    └── Source
        ├── Dev
        │   ├── Button.c
        │   ├── Button.h
        │   ├── Queue.c
        │   ├── SPI.c
        │   ├── SPI.h
        │   ├── SysTick.c
        │   ├── SysTick.h
        │   ├── Timer.c
        │   ├── Timer.h
        │   ├── Usart.c
        │   ├── Usart.h
        │   └── queue.h
        ├── IIC
        │   ├── AT24C02.c
        │   ├── AT24C02.h
        │   ├── I2C.c
        │   └── I2C.h
        ├── Lcd
        │   ├── BackImage.c
        │   ├── Font_Lib.h
        │   ├── ILI9327_lcd.c
        │   └── ILI9327_lcd.h
        ├── Main
        │   ├── Font_Lib.h
        │   ├── RemapGPIO.h
        │   ├── config.h
        │   ├── main.c
        │   ├── stm32f10x_conf.h
        │   ├── stm32f10x_it.c
        │   ├── stm32f10x_it.h
        │   ├── system.c
        │   └── system.h
        ├── USART2_HMI
        │   ├── usart2_HMI.c
        │   └── usart2_HMI.h
        └── ZigBee
            ├── usart3_ZigBee.c
            └── usart3_ZigBee.h

37 directories, 289 files

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复