2021-10-22 14:56:16 索煒達電子 676
項目編號:E1678
文件大?。?86K
源碼說明:帶中文注釋
開發(fā)環(huán)境:C編譯器
簡要概述:
基于STM32F4和ESP8266芯片的WIFI透傳程序
目錄│文件列表:
└ ESP8266-WIFI數(shù)據(jù)透傳
│ keilkilll.bat
│ Template.uvguix.Administrator
│ Template.uvoptx
│ Template.uvprojx
├ APP
│ ├ 24Cxx
│ │ │ 24cxx.c
│ │ └ 24cxx.h
│ ├ adc
│ │ │ adc.c
│ │ └ adc.h
│ ├ adc_temp
│ │ │ adc_temp.c
│ │ └ adc_temp.h
│ ├ ball
│ │ │ ball.c
│ │ └ ball.h
│ ├ beep
│ │ │ beep.c
│ │ └ beep.h
│ ├ can
│ │ │ can.c
│ │ └ can.h
│ ├ dac
│ │ │ dac.c
│ │ └ dac.h
│ ├ dma
│ │ │ dma.c
│ │ └ dma.h
│ ├ ds18b20
│ │ │ ds18b20.c
│ │ └ ds18b20.h
│ ├ esp8266
│ │ ├ ESP8266_drive
│ │ │ │ esp8266_drive.c
│ │ │ └ esp8266_drive.h
│ │ ├ ESP8266_Public
│ │ │ │ esp8266_public.c
│ │ │ └ esp8266_public.h
│ │ └ STA_TCPClent_Test
│ │ │ sta_tcpclent_test.c
│ │ └ sta_tcpclent_test.h
│ ├ exti
│ │ │ exti.c
│ │ └ exti.h
│ ├ hwjs
│ │ │ hwjs.c
│ │ └ hwjs.h
│ ├ iic
│ │ │ iic.c
│ │ └ iic.h
│ ├ input
│ │ │ input.c
│ │ └ input.h
│ ├ iwdg
│ │ │ iwdg.c
│ │ └ iwdg.h
│ ├ key
│ │ │ key.c
│ │ └ key.h
│ ├ led
│ │ │ led.c
│ │ └ led.h
│ ├ pwm
│ │ │ pwm.c
│ │ └ pwm.h
│ ├ pwm_dac
│ │ │ pwm_dac.c
│ │ └ pwm_dac.h
│ ├ rng
│ │ │ rng.c
│ │ └ rng.h
│ ├ rs485
│ │ │ rs485.c
│ │ └ rs485.h
│ ├ rtc
│ │ │ rtc.c
│ │ └ rtc.h
│ ├ tftlcd
│ │ │ font.H
│ │ │ picture.h
│ │ │ tftlcd.c
│ │ └ tftlcd.h
│ ├ time
│ │ │ time.c
│ │ └ time.h
│ ├ touch
│ │ │ ctiic.c
│ │ │ ctiic.h
│ │ │ ft6236.c
│ │ │ ft6236.h
│ │ │ touch.c
│ │ └ touch.h
│ ├ touch_key
│ │ │ touch_key.c
│ │ └ touch_key.h
│ ├ wkup
│ │ │ wkup.c
│ │ └ wkup.h
│ └ wwdg
│ │ wwdg.c
│ └ wwdg.h
├ Libraries
│ ├ CMSIS
│ │ │ core_cm4.h
│ │ │ core_cmFunc.h
│ │ │ core_cmInstr.h
│ │ │ core_cmSimd.h
│ │ │ startup_stm32f40_41xxx.s
│ │ │ system_stm32f4xx.c
│ │ └ system_stm32f4xx.h
│ └ STM32F4xx_StdPeriph_Driver
│ │ Release_Notes.html
│ ├ inc
│ │ │ misc.h
│ │ │ stm32f4xx_adc.h
│ │ │ stm32f4xx_can.h
│ │ │ stm32f4xx_cec.h
│ │ │ stm32f4xx_crc.h
│ │ │ stm32f4xx_cryp.h
│ │ │ stm32f4xx_dac.h
│ │ │ stm32f4xx_dbgmcu.h
│ │ │ stm32f4xx_dcmi.h
│ │ │ stm32f4xx_dma.h
│ │ │ stm32f4xx_dma2d.h
│ │ │ stm32f4xx_exti.h
│ │ │ stm32f4xx_flash.h
│ │ │ stm32f4xx_flash_ramfunc.h
│ │ │ stm32f4xx_fmc.h
│ │ │ stm32f4xx_fmpi2c.h
│ │ │ stm32f4xx_fsmc.h
│ │ │ stm32f4xx_gpio.h
│ │ │ stm32f4xx_hash.h
│ │ │ stm32f4xx_i2c.h
│ │ │ stm32f4xx_iwdg.h
│ │ │ stm32f4xx_ltdc.h
│ │ │ stm32f4xx_pwr.h
│ │ │ stm32f4xx_qspi.h
│ │ │ stm32f4xx_rcc.h
│ │ │ stm32f4xx_rng.h
│ │ │ stm32f4xx_rtc.h
│ │ │ stm32f4xx_sai.h
│ │ │ stm32f4xx_sdio.h
│ │ │ stm32f4xx_spdifrx.h
│ │ │ stm32f4xx_spi.h
│ │ │ stm32f4xx_syscfg.h
│ │ │ stm32f4xx_tim.h
│ │ │ stm32f4xx_usart.h
│ │ └ stm32f4xx_wwdg.h
│ └ src
│ │ misc.c
│ │ stm32f4xx_adc.c
│ │ stm32f4xx_can.c
│ │ stm32f4xx_cec.c
│ │ stm32f4xx_crc.c
│ │ stm32f4xx_cryp.c
│ │ stm32f4xx_cryp_aes.c
│ │ stm32f4xx_cryp_des.c
│ │ stm32f4xx_cryp_tdes.c
│ │ stm32f4xx_dac.c
│ │ stm32f4xx_dbgmcu.c
│ │ stm32f4xx_dcmi.c
│ │ stm32f4xx_dma.c
│ │ stm32f4xx_dma2d.c
│ │ stm32f4xx_exti.c
│ │ stm32f4xx_flash.c
│ │ stm32f4xx_flash_ramfunc.c
│ │ stm32f4xx_fmc.c
│ │ stm32f4xx_fmpi2c.c
│ │ stm32f4xx_fsmc.c
│ │ stm32f4xx_gpio.c
│ │ stm32f4xx_hash.c
│ │ stm32f4xx_hash_md5.c
│ │ stm32f4xx_hash_sha1.c
│ │ stm32f4xx_i2c.c
│ │ stm32f4xx_iwdg.c
│ │ stm32f4xx_ltdc.c
│ │ stm32f4xx_pwr.c
│ │ stm32f4xx_qspi.c
│ │ stm32f4xx_rcc.c
│ │ stm32f4xx_rng.c
│ │ stm32f4xx_rtc.c
│ │ stm32f4xx_sai.c
│ │ stm32f4xx_sdio.c
│ │ stm32f4xx_spdifrx.c
│ │ stm32f4xx_spi.c
│ │ stm32f4xx_syscfg.c
│ │ stm32f4xx_tim.c
│ │ stm32f4xx_usart.c
│ └ stm32f4xx_wwdg.c
├ Obj
│ │ Template.hex
├ Public
│ │ system.c
│ │ system.h
│ │ SysTick.c
│ │ SysTick.h
│ │ usart.c
│ └ usart.h
└ User
│ main.c
│ stm32f4xx.h
│ stm32f4xx_conf.h
│ stm32f4xx_it.c
└ stm32f4xx_it.h