├── .gitattributes
├── .gitignore
├── BleUsart
├── EventRecorderStub.scvd
├── core
│ ├── core_cm3.c
│ ├── core_cm3.h
│ ├── startup
│ │ └── arm
│ │ │ ├── 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
│ ├── stm32f10x_conf.h
│ ├── stm32f10x_it.c
│ ├── stm32f10x_it.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
├── hardware
│ ├── inc
│ │ ├── delay.h
│ │ ├── led.h
│ │ └── usart.h
│ └── src
│ │ ├── delay.c
│ │ ├── led.c
│ │ └── usart.c
├── keilkilll.bat
├── listing
│ ├── startup_stm32f10x_hd.lst
│ └── stmf10x-demo.map
├── output
│ ├── ExtDll.iex
│ ├── core_cm3.crf
│ ├── core_cm3.d
│ ├── core_cm3.o
│ ├── delay.crf
│ ├── delay.d
│ ├── delay.o
│ ├── led.crf
│ ├── led.d
│ ├── led.o
│ ├── main.crf
│ ├── main.d
│ ├── main.o
│ ├── misc.crf
│ ├── misc.d
│ ├── misc.o
│ ├── startup_stm32f10x_hd.d
│ ├── startup_stm32f10x_hd.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_usart.crf
│ ├── stm32f10x_usart.d
│ ├── stm32f10x_usart.o
│ ├── stmf10x-demo.axf
│ ├── stmf10x-demo.build_log.htm
│ ├── stmf10x-demo.hex
│ ├── stmf10x-demo.htm
│ ├── stmf10x-demo.lnp
│ ├── stmf10x-demo.sct
│ ├── stmf10x-demo_USART.dep
│ ├── system_stm32f10x.crf
│ ├── system_stm32f10x.d
│ ├── system_stm32f10x.o
│ ├── usart.crf
│ ├── usart.d
│ └── usart.o
├── stmf10x-demo.uvgui.admin007
├── stmf10x-demo.uvgui.zzes
├── stmf10x-demo.uvopt
├── stmf10x-demo.uvproj
└── user
│ └── main.c
├── ContanaControl
├── .vs
│ └── ContanaControl
│ │ └── v14
│ │ └── .suo
├── ContanaControl.sln
└── ContanaControl
│ ├── App.config
│ ├── ContanaControl.csproj
│ ├── Program.cs
│ ├── Properties
│ └── AssemblyInfo.cs
│ ├── bin
│ └── Debug
│ │ ├── ContanaControl.exe.config
│ │ ├── ContanaControl.pdb
│ │ ├── ContanaControl.vshost.exe
│ │ ├── ContanaControl.vshost.exe.config
│ │ └── ContanaControl.vshost.exe.manifest
│ └── obj
│ └── Debug
│ ├── ContanaControl.csproj.FileListAbsolute.txt
│ ├── ContanaControl.csprojResolveAssemblyReference.cache
│ ├── ContanaControl.exe
│ ├── ContanaControl.pdb
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
├── IOT
├── .project
├── css
│ ├── app.css
│ ├── mui.css
│ └── mui.min.css
├── fonts
│ └── mui.ttf
├── imgs
│ ├── bg.png
│ ├── bg_1.png
│ ├── bg_2.png
│ └── zvd.png
├── index.html
├── js
│ ├── mui.js
│ └── mui.min.js
├── libs
│ └── echarts.js
├── list.html
├── manifest.json
├── pages
│ ├── device1.html
│ ├── device1_son.html
│ └── device2.html
└── unpackage
│ ├── .confirmed_dependencies
│ ├── .dependencies
│ ├── release
│ ├── H5201A237_0326200816.apk
│ ├── H5201A237_0326205304.apk
│ ├── H5201A237_0326205658.apk
│ └── H5201A237_0326211256.apk
│ └── res
│ └── icons
│ ├── 100x100.png
│ ├── 114x114.png
│ ├── 120x120.png
│ ├── 144x144.png
│ ├── 152x152.png
│ ├── 180x180.png
│ ├── 192x192.png
│ ├── 29x29.png
│ ├── 40x40.png
│ ├── 48x48.png
│ ├── 50x50.png
│ ├── 57x57.png
│ ├── 58x58.png
│ ├── 72x72.png
│ ├── 76x76.png
│ ├── 80x80.png
│ ├── 87x87.png
│ └── 96x96.png
├── MaibuControl
├── OUT.MAI
├── appinfo.json
├── resources
│ ├── files
│ │ └── temp.data
│ ├── fonts
│ │ ├── ASCII_10.bin
│ │ └── ASCII_12.bin
│ └── images
│ │ ├── counter_bg.bmp
│ │ └── counter_icon.bmp
├── watchapp_counter.c
└── watchapp_counter.h
├── MaibuView
├── OUT.MAI
├── appinfo.json
├── btc.c
└── resources
│ └── images
│ ├── bg.bmp
│ └── underline.bmp
├── Nodejs_Server
├── buttontest.html
├── echarts.js
├── echarttest.html
├── emailtest.js
├── expresstest.js
├── fetchtest.html
├── mysqltest.js
├── nodemysql.sql
├── package.json
├── public
│ ├── index.html
│ ├── swagger-ui-bundle.js
│ ├── swagger-ui-bundle.js.map
│ ├── swagger-ui-standalone-preset.js
│ ├── swagger-ui-standalone-preset.js.map
│ ├── swagger-ui.css
│ ├── swagger-ui.css.map
│ ├── swagger-ui.js
│ ├── swagger-ui.js.map
│ └── swagger.json
├── tcpiot.js
├── tcpiotclient.js
├── tcptcp.js
├── timetest
│ ├── t1.html
│ ├── t2.html
│ ├── t3.html
│ └── t4.html
└── watchpush.js
├── README.md
├── STM32_ESP8266
├── Devices
│ ├── hal_i2c.c
│ ├── hal_i2c.h
│ ├── sht20.c
│ └── sht20.h
├── Hal
│ ├── usart1.c
│ ├── usart1.h
│ ├── usart2.c
│ └── usart2.h
├── Libraries
│ ├── CMSIS
│ │ ├── core_cm3.c
│ │ ├── core_cm3.h
│ │ ├── startup
│ │ │ └── arm
│ │ │ │ ├── startup_stm32f10x_cl.s
│ │ │ │ ├── startup_stm32f10x_hd.s
│ │ │ │ ├── startup_stm32f10x_hd_vl.s
│ │ │ │ ├── startup_stm32f10x_ld.s
│ │ │ │ ├── startup_stm32f10x_ld.s.bak
│ │ │ │ ├── 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
│ └── STM32F10x_StdPeriph_Driver
│ │ ├── Release_Notes.html
│ │ ├── 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
├── Network
│ └── esp8266
│ │ ├── esp8266.c
│ │ └── esp8266.h
├── Project
│ ├── JLinkLog.txt
│ ├── JLinkSettings.ini
│ ├── onenetdemo.map
│ ├── onenetdemo.plg
│ ├── onenetdemo.uvgui.xufang
│ ├── onenetdemo.uvgui.zzes
│ ├── onenetdemo.uvgui_xufang.bak
│ ├── onenetdemo.uvopt
│ ├── onenetdemo.uvproj
│ ├── onenetdemo_uvopt.bak
│ ├── onenetdemo_uvproj.bak
│ └── startup_stm32f10x_md.lst
├── Protocol
│ └── http
│ │ ├── HTTP_Demo.c
│ │ └── HTTP_Demo.h
├── User
│ ├── main.c
│ ├── stm32f10x_conf.h
│ ├── stm32f10x_it.c
│ └── stm32f10x_it.h
├── Utils
│ ├── utils.c
│ └── utils.h
└── object
│ ├── cjson.__i
│ ├── cjson.crf
│ ├── cjson.d
│ ├── cjson.o
│ ├── core_cm3.crf
│ ├── core_cm3.d
│ ├── core_cm3.o
│ ├── edpdemo.__i
│ ├── edpdemo.crf
│ ├── edpdemo.d
│ ├── edpdemo.o
│ ├── edpkit.crf
│ ├── edpkit.d
│ ├── edpkit.o
│ ├── esp8266.crf
│ ├── esp8266.d
│ ├── esp8266.o
│ ├── gpio.__i
│ ├── gpio.crf
│ ├── gpio.d
│ ├── gpio.o
│ ├── hal_i2c.crf
│ ├── hal_i2c.d
│ ├── hal_i2c.o
│ ├── http_demo.crf
│ ├── http_demo.d
│ ├── http_demo.o
│ ├── led.crf
│ ├── led.d
│ ├── led.o
│ ├── main.crf
│ ├── main.d
│ ├── main.o
│ ├── misc.crf
│ ├── misc.d
│ ├── misc.o
│ ├── onenetdemo.axf
│ ├── onenetdemo.build_log.htm
│ ├── onenetdemo.htm
│ ├── onenetdemo.lnp
│ ├── onenetdemo.plg
│ ├── onenetdemo.sct
│ ├── onenetdemo.tra
│ ├── onenetdemo_OneNET_Demo_ESP8266_HTTP_HT.dep
│ ├── onenetdemo_sct.Bak
│ ├── ringbuffer.__i
│ ├── ringbuffer.crf
│ ├── ringbuffer.d
│ ├── ringbuffer.o
│ ├── sht20.crf
│ ├── sht20.d
│ ├── sht20.o
│ ├── startup_stm32f10x_md.d
│ ├── startup_stm32f10x_md.o
│ ├── stm32f10x_exti.crf
│ ├── stm32f10x_exti.d
│ ├── stm32f10x_exti.o
│ ├── stm32f10x_flash.crf
│ ├── stm32f10x_flash.d
│ ├── stm32f10x_flash.o
│ ├── stm32f10x_gpio.crf
│ ├── stm32f10x_gpio.d
│ ├── stm32f10x_gpio.o
│ ├── stm32f10x_i2c.crf
│ ├── stm32f10x_i2c.d
│ ├── stm32f10x_i2c.o
│ ├── stm32f10x_it.crf
│ ├── stm32f10x_it.d
│ ├── stm32f10x_it.o
│ ├── stm32f10x_rcc.crf
│ ├── stm32f10x_rcc.d
│ ├── stm32f10x_rcc.o
│ ├── stm32f10x_usart.crf
│ ├── stm32f10x_usart.d
│ ├── stm32f10x_usart.o
│ ├── system_stm32f10x.crf
│ ├── system_stm32f10x.d
│ ├── system_stm32f10x.o
│ ├── usart1.crf
│ ├── usart1.d
│ ├── usart1.o
│ ├── usart2.crf
│ ├── usart2.d
│ ├── usart2.o
│ ├── utils.crf
│ ├── utils.d
│ └── utils.o
├── V2.3HTTP
├── NET
│ ├── device
│ │ ├── demo
│ │ │ ├── ESP8266
│ │ │ │ ├── net_device.c
│ │ │ │ ├── net_device.h
│ │ │ │ ├── net_io.c
│ │ │ │ └── net_io.h
│ │ │ └── M6311
│ │ │ │ ├── net_device.c
│ │ │ │ ├── net_device.h
│ │ │ │ ├── net_io.c
│ │ │ │ └── net_io.h
│ │ ├── inc
│ │ │ ├── net_device.h
│ │ │ └── net_io.h
│ │ └── src
│ │ │ ├── net_device.c
│ │ │ └── net_io.c
│ └── protocol
│ │ ├── inc
│ │ ├── fault.h
│ │ └── onenet.h
│ │ └── src
│ │ ├── fault.c
│ │ └── onenet.c
├── core
│ ├── core_cm3.c
│ ├── core_cm3.h
│ ├── startup
│ │ └── arm
│ │ │ ├── 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
│ ├── stm32f10x_conf.h
│ ├── stm32f10x_it.c
│ ├── stm32f10x_it.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
├── hardware
│ ├── inc
│ │ ├── adc.h
│ │ ├── adxl345.h
│ │ ├── at24c02.h
│ │ ├── beep.h
│ │ ├── delay.h
│ │ ├── gy30.h
│ │ ├── hwtimer.h
│ │ ├── i2c.h
│ │ ├── info.h
│ │ ├── iwdg.h
│ │ ├── key.h
│ │ ├── lcd1602.h
│ │ ├── led.h
│ │ ├── oled.h
│ │ ├── oled_zk.h
│ │ ├── selfcheck.h
│ │ ├── sht20.h
│ │ ├── stmflash.h
│ │ ├── tcrt5000.h
│ │ └── usart.h
│ └── src
│ │ ├── adc.c
│ │ ├── adxl345.c
│ │ ├── at24c02.c
│ │ ├── beep.c
│ │ ├── delay.c
│ │ ├── gy30.c
│ │ ├── hwtimer.c
│ │ ├── i2c.c
│ │ ├── info.c
│ │ ├── iwdg.c
│ │ ├── key.c
│ │ ├── lcd1602.c
│ │ ├── led.c
│ │ ├── oled.c
│ │ ├── selfcheck.c
│ │ ├── sht20.c
│ │ ├── stmflash.c
│ │ ├── tcrt5000.c
│ │ └── usart.c
├── keilkilll.bat
├── listing
│ ├── startup_stm32f10x_hd.lst
│ └── stm32f103.map
├── stm32f103.uvgui.admin007
├── stm32f103.uvgui.zzes
├── stm32f103.uvopt
├── stm32f103.uvproj
└── user
│ ├── image_2k.h
│ └── main.c
├── swagger-ui
└── dist
│ ├── index.html
│ ├── swagger-ui-bundle.js
│ ├── swagger-ui-bundle.js.map
│ ├── swagger-ui-standalone-preset.js
│ ├── swagger-ui-standalone-preset.js.map
│ ├── swagger-ui.css
│ ├── swagger-ui.css.map
│ ├── swagger-ui.js
│ └── swagger-ui.js.map
└── weibonodejs
├── README.md
├── getaccess.js
├── getcode.js
├── package.json
├── sendweibo.js
├── server.js
├── setting.json
└── test.js
/.gitattributes:
--------------------------------------------------------------------------------
1 | ###############################################################################
2 | # Set default behavior to automatically normalize line endings.
3 | ###############################################################################
4 | * text=auto
5 |
6 | ###############################################################################
7 | # Set default behavior for command prompt diff.
8 | #
9 | # This is need for earlier builds of msysgit that does not have it on by
10 | # default for csharp files.
11 | # Note: This is only used by command line
12 | ###############################################################################
13 | #*.cs diff=csharp
14 |
15 | ###############################################################################
16 | # Set the merge driver for project and solution files
17 | #
18 | # Merging from the command prompt will add diff markers to the files if there
19 | # are conflicts (Merging from VS is not affected by the settings below, in VS
20 | # the diff markers are never inserted). Diff markers may cause the following
21 | # file extensions to fail to load in VS. An alternative would be to treat
22 | # these files as binary and thus will always conflict and require user
23 | # intervention with every merge. To do so, just uncomment the entries below
24 | ###############################################################################
25 | #*.sln merge=binary
26 | #*.csproj merge=binary
27 | #*.vbproj merge=binary
28 | #*.vcxproj merge=binary
29 | #*.vcproj merge=binary
30 | #*.dbproj merge=binary
31 | #*.fsproj merge=binary
32 | #*.lsproj merge=binary
33 | #*.wixproj merge=binary
34 | #*.modelproj merge=binary
35 | #*.sqlproj merge=binary
36 | #*.wwaproj merge=binary
37 |
38 | ###############################################################################
39 | # behavior for image files
40 | #
41 | # image files are treated as binary by default.
42 | ###############################################################################
43 | #*.jpg binary
44 | #*.png binary
45 | #*.gif binary
46 |
47 | ###############################################################################
48 | # diff behavior for common document formats
49 | #
50 | # Convert binary document formats to text before diffing them. This feature
51 | # is only available from the command line. Turn it on by uncommenting the
52 | # entries below.
53 | ###############################################################################
54 | #*.doc diff=astextplain
55 | #*.DOC diff=astextplain
56 | #*.docx diff=astextplain
57 | #*.DOCX diff=astextplain
58 | #*.dot diff=astextplain
59 | #*.DOT diff=astextplain
60 | #*.pdf diff=astextplain
61 | #*.PDF diff=astextplain
62 | #*.rtf diff=astextplain
63 | #*.RTF diff=astextplain
64 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | Nodejs_Server/node_modules
--------------------------------------------------------------------------------
/BleUsart/EventRecorderStub.scvd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/BleUsart/core/startup/arm/startup_stm32f10x_hd.s:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/BleUsart/core/startup/arm/startup_stm32f10x_hd.s
--------------------------------------------------------------------------------
/BleUsart/core/stm32f10x.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/BleUsart/core/stm32f10x.h
--------------------------------------------------------------------------------
/BleUsart/core/stm32f10x_it.h:
--------------------------------------------------------------------------------
1 | /**
2 | ******************************************************************************
3 | * @file Project/STM32F10x_StdPeriph_Template/stm32f10x_it.h
4 | * @author MCD Application Team
5 | * @version V3.5.0
6 | * @date 08-April-2011
7 | * @brief This file contains the headers of the interrupt handlers.
8 | ******************************************************************************
9 | * @attention
10 | *
11 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
12 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
13 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
14 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
15 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
16 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
17 | *
18 | *
© COPYRIGHT 2011 STMicroelectronics
19 | ******************************************************************************
20 | */
21 |
22 | /* Define to prevent recursive inclusion -------------------------------------*/
23 | #ifndef __STM32F10x_IT_H
24 | #define __STM32F10x_IT_H
25 |
26 | #ifdef __cplusplus
27 | extern "C" {
28 | #endif
29 |
30 | /* Includes ------------------------------------------------------------------*/
31 | #include "stm32f10x.h"
32 |
33 | /* Exported types ------------------------------------------------------------*/
34 | /* Exported constants --------------------------------------------------------*/
35 | /* Exported macro ------------------------------------------------------------*/
36 | /* Exported functions ------------------------------------------------------- */
37 |
38 | void NMI_Handler(void);
39 | void HardFault_Handler(void);
40 | void MemManage_Handler(void);
41 | void BusFault_Handler(void);
42 | void UsageFault_Handler(void);
43 | void SVC_Handler(void);
44 | void DebugMon_Handler(void);
45 | void PendSV_Handler(void);
46 | void SysTick_Handler(void);
47 |
48 | #ifdef __cplusplus
49 | }
50 | #endif
51 |
52 | #endif /* __STM32F10x_IT_H */
53 |
54 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/
55 |
--------------------------------------------------------------------------------
/BleUsart/core/system_stm32f10x.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/BleUsart/core/system_stm32f10x.c
--------------------------------------------------------------------------------
/BleUsart/core/system_stm32f10x.h:
--------------------------------------------------------------------------------
1 | /**
2 | ******************************************************************************
3 | * @file system_stm32f10x.h
4 | * @author MCD Application Team
5 | * @version V3.5.0
6 | * @date 11-March-2011
7 | * @brief CMSIS Cortex-M3 Device Peripheral Access Layer System Header File.
8 | ******************************************************************************
9 | * @attention
10 | *
11 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
12 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
13 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
14 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
15 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
16 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
17 | *
18 | * © COPYRIGHT 2011 STMicroelectronics
19 | ******************************************************************************
20 | */
21 |
22 | /** @addtogroup CMSIS
23 | * @{
24 | */
25 |
26 | /** @addtogroup stm32f10x_system
27 | * @{
28 | */
29 |
30 | /**
31 | * @brief Define to prevent recursive inclusion
32 | */
33 | #ifndef __SYSTEM_STM32F10X_H
34 | #define __SYSTEM_STM32F10X_H
35 |
36 | #ifdef __cplusplus
37 | extern "C" {
38 | #endif
39 |
40 | /** @addtogroup STM32F10x_System_Includes
41 | * @{
42 | */
43 |
44 | /**
45 | * @}
46 | */
47 |
48 |
49 | /** @addtogroup STM32F10x_System_Exported_types
50 | * @{
51 | */
52 |
53 | extern uint32_t SystemCoreClock; /*!< System Clock Frequency (Core Clock) */
54 |
55 | /**
56 | * @}
57 | */
58 |
59 | /** @addtogroup STM32F10x_System_Exported_Constants
60 | * @{
61 | */
62 |
63 | /**
64 | * @}
65 | */
66 |
67 | /** @addtogroup STM32F10x_System_Exported_Macros
68 | * @{
69 | */
70 |
71 | /**
72 | * @}
73 | */
74 |
75 | /** @addtogroup STM32F10x_System_Exported_Functions
76 | * @{
77 | */
78 |
79 | extern void SystemInit(void);
80 | extern void SystemCoreClockUpdate(void);
81 | /**
82 | * @}
83 | */
84 |
85 | #ifdef __cplusplus
86 | }
87 | #endif
88 |
89 | #endif /*__SYSTEM_STM32F10X_H */
90 |
91 | /**
92 | * @}
93 | */
94 |
95 | /**
96 | * @}
97 | */
98 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/
99 |
--------------------------------------------------------------------------------
/BleUsart/fwlib/inc/stm32f10x_crc.h:
--------------------------------------------------------------------------------
1 | /**
2 | ******************************************************************************
3 | * @file stm32f10x_crc.h
4 | * @author MCD Application Team
5 | * @version V3.5.0
6 | * @date 11-March-2011
7 | * @brief This file contains all the functions prototypes for the CRC firmware
8 | * library.
9 | ******************************************************************************
10 | * @attention
11 | *
12 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
13 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
14 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
15 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
16 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
17 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
18 | *
19 | * © COPYRIGHT 2011 STMicroelectronics
20 | ******************************************************************************
21 | */
22 |
23 | /* Define to prevent recursive inclusion -------------------------------------*/
24 | #ifndef __STM32F10x_CRC_H
25 | #define __STM32F10x_CRC_H
26 |
27 | #ifdef __cplusplus
28 | extern "C" {
29 | #endif
30 |
31 | /* Includes ------------------------------------------------------------------*/
32 | #include "stm32f10x.h"
33 |
34 | /** @addtogroup STM32F10x_StdPeriph_Driver
35 | * @{
36 | */
37 |
38 | /** @addtogroup CRC
39 | * @{
40 | */
41 |
42 | /** @defgroup CRC_Exported_Types
43 | * @{
44 | */
45 |
46 | /**
47 | * @}
48 | */
49 |
50 | /** @defgroup CRC_Exported_Constants
51 | * @{
52 | */
53 |
54 | /**
55 | * @}
56 | */
57 |
58 | /** @defgroup CRC_Exported_Macros
59 | * @{
60 | */
61 |
62 | /**
63 | * @}
64 | */
65 |
66 | /** @defgroup CRC_Exported_Functions
67 | * @{
68 | */
69 |
70 | void CRC_ResetDR(void);
71 | uint32_t CRC_CalcCRC(uint32_t Data);
72 | uint32_t CRC_CalcBlockCRC(uint32_t pBuffer[], uint32_t BufferLength);
73 | uint32_t CRC_GetCRC(void);
74 | void CRC_SetIDRegister(uint8_t IDValue);
75 | uint8_t CRC_GetIDRegister(void);
76 |
77 | #ifdef __cplusplus
78 | }
79 | #endif
80 |
81 | #endif /* __STM32F10x_CRC_H */
82 | /**
83 | * @}
84 | */
85 |
86 | /**
87 | * @}
88 | */
89 |
90 | /**
91 | * @}
92 | */
93 |
94 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/
95 |
--------------------------------------------------------------------------------
/BleUsart/fwlib/src/stm32f10x_flash.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/BleUsart/fwlib/src/stm32f10x_flash.c
--------------------------------------------------------------------------------
/BleUsart/fwlib/src/stm32f10x_i2c.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/BleUsart/fwlib/src/stm32f10x_i2c.c
--------------------------------------------------------------------------------
/BleUsart/fwlib/src/stm32f10x_usart.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/BleUsart/fwlib/src/stm32f10x_usart.c
--------------------------------------------------------------------------------
/BleUsart/hardware/inc/delay.h:
--------------------------------------------------------------------------------
1 | #ifndef _DELAY_H_
2 | #define _DELAY_H_
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 | void Delay_Init(void);
11 |
12 | void DelayUs(unsigned short us);
13 |
14 | void DelayXms(unsigned short ms);
15 |
16 | void DelayMs(unsigned short ms);
17 |
18 | #endif
19 |
--------------------------------------------------------------------------------
/BleUsart/hardware/inc/led.h:
--------------------------------------------------------------------------------
1 | #ifndef _HAL_LED_H
2 | #define _HAL_LED_H
3 |
4 | #include
5 | #include
6 |
7 | #define GPIO_LED1_CLK RCC_APB2Periph_GPIOB
8 | #define GPIO_LED1_PORT GPIOB
9 | #define GPIO_LED1_PIN GPIO_Pin_15
10 |
11 | #define GPIO_LED2_CLK RCC_APB2Periph_GPIOB
12 | #define GPIO_LED2_PORT GPIOB
13 | #define GPIO_LED2_PIN GPIO_Pin_14
14 |
15 | #define GPIO_LED3_CLK RCC_APB2Periph_GPIOB
16 | #define GPIO_LED3_PORT GPIOB
17 | #define GPIO_LED3_PIN GPIO_Pin_11
18 |
19 | #define GPIO_LED4_CLK RCC_APB2Periph_GPIOB
20 | #define GPIO_LED4_PORT GPIOB
21 | #define GPIO_LED4_PIN GPIO_Pin_1
22 |
23 | #define LED1 0x01
24 | #define LED2 0x02
25 | #define LED3 0x04
26 | #define LED4 0x08
27 |
28 | void ledGpioInit(void);
29 | void ledOn(uint8_t ledNum);
30 | void ledOff(uint8_t ledNum);
31 |
32 | #endif
33 |
--------------------------------------------------------------------------------
/BleUsart/hardware/inc/usart.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/BleUsart/hardware/inc/usart.h
--------------------------------------------------------------------------------
/BleUsart/hardware/src/delay.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/BleUsart/hardware/src/delay.c
--------------------------------------------------------------------------------
/BleUsart/hardware/src/led.c:
--------------------------------------------------------------------------------
1 | #include "led.h"
2 |
3 |
4 | void ledOn(uint8_t ledNum){
5 | switch(ledNum){
6 | case LED1:
7 | GPIO_SetBits(GPIO_LED1_PORT,GPIO_LED1_PIN);
8 | break;
9 | case LED2:
10 | GPIO_SetBits(GPIO_LED2_PORT,GPIO_LED2_PIN);
11 | break;
12 | case LED3:
13 | GPIO_SetBits(GPIO_LED3_PORT,GPIO_LED3_PIN);
14 | break;
15 | case LED4:
16 | GPIO_SetBits(GPIO_LED4_PORT,GPIO_LED4_PIN);
17 | break;
18 | default:
19 | break;
20 | }
21 | }
22 |
23 | void ledOff(uint8_t ledNum){
24 | switch(ledNum){
25 | case LED1:
26 | GPIO_ResetBits(GPIO_LED1_PORT,GPIO_LED1_PIN);
27 | break;
28 | case LED2:
29 | GPIO_ResetBits(GPIO_LED2_PORT,GPIO_LED2_PIN);
30 | break;
31 | case LED3:
32 | GPIO_ResetBits(GPIO_LED3_PORT,GPIO_LED3_PIN);
33 | break;
34 | case LED4:
35 | GPIO_ResetBits(GPIO_LED4_PORT,GPIO_LED4_PIN);
36 | break;
37 | default:
38 | break;
39 | }
40 | }
41 |
42 |
43 | void ledGpioInit(void){
44 | GPIO_InitTypeDef GPIO_InitStructure;
45 | RCC_APB2PeriphClockCmd(GPIO_LED1_CLK |GPIO_LED2_CLK|GPIO_LED3_CLK|GPIO_LED4_CLK,ENABLE);
46 |
47 | GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
48 | GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
49 |
50 | GPIO_InitStructure.GPIO_Pin = GPIO_LED1_PIN;
51 | GPIO_Init(GPIO_LED1_PORT,&GPIO_InitStructure);
52 |
53 | GPIO_InitStructure.GPIO_Pin = GPIO_LED2_PIN;
54 | GPIO_Init(GPIO_LED2_PORT,&GPIO_InitStructure);
55 |
56 | GPIO_InitStructure.GPIO_Pin = GPIO_LED3_PIN;
57 | GPIO_Init(GPIO_LED3_PORT,&GPIO_InitStructure);
58 |
59 | GPIO_InitStructure.GPIO_Pin = GPIO_LED4_PIN;
60 | GPIO_Init(GPIO_LED4_PORT,&GPIO_InitStructure);
61 |
62 | ledOff(LED1);
63 | ledOff(LED2);
64 | ledOff(LED3);
65 | ledOff(LED4);
66 | }
67 |
68 |
69 |
--------------------------------------------------------------------------------
/BleUsart/hardware/src/usart.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/BleUsart/hardware/src/usart.c
--------------------------------------------------------------------------------
/BleUsart/keilkilll.bat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/BleUsart/keilkilll.bat
--------------------------------------------------------------------------------
/BleUsart/listing/startup_stm32f10x_hd.lst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/BleUsart/listing/startup_stm32f10x_hd.lst
--------------------------------------------------------------------------------
/BleUsart/output/ExtDll.iex:
--------------------------------------------------------------------------------
1 | [EXTDLL]
2 | Count=0
3 |
--------------------------------------------------------------------------------
/BleUsart/output/core_cm3.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/BleUsart/output/core_cm3.crf
--------------------------------------------------------------------------------
/BleUsart/output/core_cm3.d:
--------------------------------------------------------------------------------
1 | .\output\core_cm3.o: core\core_cm3.c
2 | .\output\core_cm3.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
3 |
--------------------------------------------------------------------------------
/BleUsart/output/core_cm3.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/BleUsart/output/core_cm3.o
--------------------------------------------------------------------------------
/BleUsart/output/delay.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/BleUsart/output/delay.crf
--------------------------------------------------------------------------------
/BleUsart/output/delay.d:
--------------------------------------------------------------------------------
1 | .\output\delay.o: hardware\src\delay.c
2 | .\output\delay.o: .\core\stm32f10x.h
3 | .\output\delay.o: .\core\core_cm3.h
4 | .\output\delay.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
5 | .\output\delay.o: .\core\system_stm32f10x.h
6 | .\output\delay.o: .\core\stm32f10x_conf.h
7 | .\output\delay.o: .\fwlib\inc\stm32f10x_adc.h
8 | .\output\delay.o: .\core\stm32f10x.h
9 | .\output\delay.o: .\fwlib\inc\stm32f10x_bkp.h
10 | .\output\delay.o: .\fwlib\inc\stm32f10x_can.h
11 | .\output\delay.o: .\fwlib\inc\stm32f10x_cec.h
12 | .\output\delay.o: .\fwlib\inc\stm32f10x_crc.h
13 | .\output\delay.o: .\fwlib\inc\stm32f10x_dac.h
14 | .\output\delay.o: .\fwlib\inc\stm32f10x_dbgmcu.h
15 | .\output\delay.o: .\fwlib\inc\stm32f10x_dma.h
16 | .\output\delay.o: .\fwlib\inc\stm32f10x_exti.h
17 | .\output\delay.o: .\fwlib\inc\stm32f10x_flash.h
18 | .\output\delay.o: .\fwlib\inc\stm32f10x_fsmc.h
19 | .\output\delay.o: .\fwlib\inc\stm32f10x_gpio.h
20 | .\output\delay.o: .\fwlib\inc\stm32f10x_i2c.h
21 | .\output\delay.o: .\fwlib\inc\stm32f10x_iwdg.h
22 | .\output\delay.o: .\fwlib\inc\stm32f10x_pwr.h
23 | .\output\delay.o: .\fwlib\inc\stm32f10x_rcc.h
24 | .\output\delay.o: .\fwlib\inc\stm32f10x_rtc.h
25 | .\output\delay.o: .\fwlib\inc\stm32f10x_sdio.h
26 | .\output\delay.o: .\fwlib\inc\stm32f10x_spi.h
27 | .\output\delay.o: .\fwlib\inc\stm32f10x_tim.h
28 | .\output\delay.o: .\fwlib\inc\stm32f10x_usart.h
29 | .\output\delay.o: .\fwlib\inc\stm32f10x_wwdg.h
30 | .\output\delay.o: .\fwlib\inc\misc.h
31 | .\output\delay.o: .\hardware\inc\delay.h
32 |
--------------------------------------------------------------------------------
/BleUsart/output/delay.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/BleUsart/output/delay.o
--------------------------------------------------------------------------------
/BleUsart/output/led.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/BleUsart/output/led.crf
--------------------------------------------------------------------------------
/BleUsart/output/led.d:
--------------------------------------------------------------------------------
1 | .\output\led.o: hardware\src\led.c
2 | .\output\led.o: .\hardware\inc\led.h
3 | .\output\led.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h
4 | .\output\led.o: .\core\stm32f10x.h
5 | .\output\led.o: .\core\core_cm3.h
6 | .\output\led.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
7 | .\output\led.o: .\core\system_stm32f10x.h
8 | .\output\led.o: .\core\stm32f10x_conf.h
9 | .\output\led.o: .\fwlib\inc\stm32f10x_adc.h
10 | .\output\led.o: .\core\stm32f10x.h
11 | .\output\led.o: .\fwlib\inc\stm32f10x_bkp.h
12 | .\output\led.o: .\fwlib\inc\stm32f10x_can.h
13 | .\output\led.o: .\fwlib\inc\stm32f10x_cec.h
14 | .\output\led.o: .\fwlib\inc\stm32f10x_crc.h
15 | .\output\led.o: .\fwlib\inc\stm32f10x_dac.h
16 | .\output\led.o: .\fwlib\inc\stm32f10x_dbgmcu.h
17 | .\output\led.o: .\fwlib\inc\stm32f10x_dma.h
18 | .\output\led.o: .\fwlib\inc\stm32f10x_exti.h
19 | .\output\led.o: .\fwlib\inc\stm32f10x_flash.h
20 | .\output\led.o: .\fwlib\inc\stm32f10x_fsmc.h
21 | .\output\led.o: .\fwlib\inc\stm32f10x_gpio.h
22 | .\output\led.o: .\fwlib\inc\stm32f10x_i2c.h
23 | .\output\led.o: .\fwlib\inc\stm32f10x_iwdg.h
24 | .\output\led.o: .\fwlib\inc\stm32f10x_pwr.h
25 | .\output\led.o: .\fwlib\inc\stm32f10x_rcc.h
26 | .\output\led.o: .\fwlib\inc\stm32f10x_rtc.h
27 | .\output\led.o: .\fwlib\inc\stm32f10x_sdio.h
28 | .\output\led.o: .\fwlib\inc\stm32f10x_spi.h
29 | .\output\led.o: .\fwlib\inc\stm32f10x_tim.h
30 | .\output\led.o: .\fwlib\inc\stm32f10x_usart.h
31 | .\output\led.o: .\fwlib\inc\stm32f10x_wwdg.h
32 | .\output\led.o: .\fwlib\inc\misc.h
33 |
--------------------------------------------------------------------------------
/BleUsart/output/led.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/BleUsart/output/led.o
--------------------------------------------------------------------------------
/BleUsart/output/main.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/BleUsart/output/main.crf
--------------------------------------------------------------------------------
/BleUsart/output/main.d:
--------------------------------------------------------------------------------
1 | .\output\main.o: user\main.c
2 | .\output\main.o: .\core\stm32f10x.h
3 | .\output\main.o: .\core\core_cm3.h
4 | .\output\main.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
5 | .\output\main.o: .\core\system_stm32f10x.h
6 | .\output\main.o: .\core\stm32f10x_conf.h
7 | .\output\main.o: .\fwlib\inc\stm32f10x_adc.h
8 | .\output\main.o: .\core\stm32f10x.h
9 | .\output\main.o: .\fwlib\inc\stm32f10x_bkp.h
10 | .\output\main.o: .\fwlib\inc\stm32f10x_can.h
11 | .\output\main.o: .\fwlib\inc\stm32f10x_cec.h
12 | .\output\main.o: .\fwlib\inc\stm32f10x_crc.h
13 | .\output\main.o: .\fwlib\inc\stm32f10x_dac.h
14 | .\output\main.o: .\fwlib\inc\stm32f10x_dbgmcu.h
15 | .\output\main.o: .\fwlib\inc\stm32f10x_dma.h
16 | .\output\main.o: .\fwlib\inc\stm32f10x_exti.h
17 | .\output\main.o: .\fwlib\inc\stm32f10x_flash.h
18 | .\output\main.o: .\fwlib\inc\stm32f10x_fsmc.h
19 | .\output\main.o: .\fwlib\inc\stm32f10x_gpio.h
20 | .\output\main.o: .\fwlib\inc\stm32f10x_i2c.h
21 | .\output\main.o: .\fwlib\inc\stm32f10x_iwdg.h
22 | .\output\main.o: .\fwlib\inc\stm32f10x_pwr.h
23 | .\output\main.o: .\fwlib\inc\stm32f10x_rcc.h
24 | .\output\main.o: .\fwlib\inc\stm32f10x_rtc.h
25 | .\output\main.o: .\fwlib\inc\stm32f10x_sdio.h
26 | .\output\main.o: .\fwlib\inc\stm32f10x_spi.h
27 | .\output\main.o: .\fwlib\inc\stm32f10x_tim.h
28 | .\output\main.o: .\fwlib\inc\stm32f10x_usart.h
29 | .\output\main.o: .\fwlib\inc\stm32f10x_wwdg.h
30 | .\output\main.o: .\fwlib\inc\misc.h
31 | .\output\main.o: .\hardware\inc\delay.h
32 | .\output\main.o: .\hardware\inc\usart.h
33 | .\output\main.o: .\hardware\inc\led.h
34 | .\output\main.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h
35 | .\output\main.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\string.h
36 |
--------------------------------------------------------------------------------
/BleUsart/output/main.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/BleUsart/output/main.o
--------------------------------------------------------------------------------
/BleUsart/output/misc.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/BleUsart/output/misc.crf
--------------------------------------------------------------------------------
/BleUsart/output/misc.d:
--------------------------------------------------------------------------------
1 | .\output\misc.o: fwlib\src\misc.c
2 | .\output\misc.o: .\fwlib\inc\misc.h
3 | .\output\misc.o: .\core\stm32f10x.h
4 | .\output\misc.o: .\core\core_cm3.h
5 | .\output\misc.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\output\misc.o: .\core\system_stm32f10x.h
7 | .\output\misc.o: .\core\stm32f10x_conf.h
8 | .\output\misc.o: .\fwlib\inc\stm32f10x_adc.h
9 | .\output\misc.o: .\core\stm32f10x.h
10 | .\output\misc.o: .\fwlib\inc\stm32f10x_bkp.h
11 | .\output\misc.o: .\fwlib\inc\stm32f10x_can.h
12 | .\output\misc.o: .\fwlib\inc\stm32f10x_cec.h
13 | .\output\misc.o: .\fwlib\inc\stm32f10x_crc.h
14 | .\output\misc.o: .\fwlib\inc\stm32f10x_dac.h
15 | .\output\misc.o: .\fwlib\inc\stm32f10x_dbgmcu.h
16 | .\output\misc.o: .\fwlib\inc\stm32f10x_dma.h
17 | .\output\misc.o: .\fwlib\inc\stm32f10x_exti.h
18 | .\output\misc.o: .\fwlib\inc\stm32f10x_flash.h
19 | .\output\misc.o: .\fwlib\inc\stm32f10x_fsmc.h
20 | .\output\misc.o: .\fwlib\inc\stm32f10x_gpio.h
21 | .\output\misc.o: .\fwlib\inc\stm32f10x_i2c.h
22 | .\output\misc.o: .\fwlib\inc\stm32f10x_iwdg.h
23 | .\output\misc.o: .\fwlib\inc\stm32f10x_pwr.h
24 | .\output\misc.o: .\fwlib\inc\stm32f10x_rcc.h
25 | .\output\misc.o: .\fwlib\inc\stm32f10x_rtc.h
26 | .\output\misc.o: .\fwlib\inc\stm32f10x_sdio.h
27 | .\output\misc.o: .\fwlib\inc\stm32f10x_spi.h
28 | .\output\misc.o: .\fwlib\inc\stm32f10x_tim.h
29 | .\output\misc.o: .\fwlib\inc\stm32f10x_usart.h
30 | .\output\misc.o: .\fwlib\inc\stm32f10x_wwdg.h
31 | .\output\misc.o: .\fwlib\inc\misc.h
32 |
--------------------------------------------------------------------------------
/BleUsart/output/misc.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/BleUsart/output/misc.o
--------------------------------------------------------------------------------
/BleUsart/output/startup_stm32f10x_hd.d:
--------------------------------------------------------------------------------
1 | .\output\startup_stm32f10x_hd.o: core\startup\arm\startup_stm32f10x_hd.s
2 |
--------------------------------------------------------------------------------
/BleUsart/output/startup_stm32f10x_hd.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/BleUsart/output/startup_stm32f10x_hd.o
--------------------------------------------------------------------------------
/BleUsart/output/stm32f10x_gpio.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/BleUsart/output/stm32f10x_gpio.crf
--------------------------------------------------------------------------------
/BleUsart/output/stm32f10x_gpio.d:
--------------------------------------------------------------------------------
1 | .\output\stm32f10x_gpio.o: fwlib\src\stm32f10x_gpio.c
2 | .\output\stm32f10x_gpio.o: .\fwlib\inc\stm32f10x_gpio.h
3 | .\output\stm32f10x_gpio.o: .\core\stm32f10x.h
4 | .\output\stm32f10x_gpio.o: .\core\core_cm3.h
5 | .\output\stm32f10x_gpio.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\output\stm32f10x_gpio.o: .\core\system_stm32f10x.h
7 | .\output\stm32f10x_gpio.o: .\core\stm32f10x_conf.h
8 | .\output\stm32f10x_gpio.o: .\fwlib\inc\stm32f10x_adc.h
9 | .\output\stm32f10x_gpio.o: .\core\stm32f10x.h
10 | .\output\stm32f10x_gpio.o: .\fwlib\inc\stm32f10x_bkp.h
11 | .\output\stm32f10x_gpio.o: .\fwlib\inc\stm32f10x_can.h
12 | .\output\stm32f10x_gpio.o: .\fwlib\inc\stm32f10x_cec.h
13 | .\output\stm32f10x_gpio.o: .\fwlib\inc\stm32f10x_crc.h
14 | .\output\stm32f10x_gpio.o: .\fwlib\inc\stm32f10x_dac.h
15 | .\output\stm32f10x_gpio.o: .\fwlib\inc\stm32f10x_dbgmcu.h
16 | .\output\stm32f10x_gpio.o: .\fwlib\inc\stm32f10x_dma.h
17 | .\output\stm32f10x_gpio.o: .\fwlib\inc\stm32f10x_exti.h
18 | .\output\stm32f10x_gpio.o: .\fwlib\inc\stm32f10x_flash.h
19 | .\output\stm32f10x_gpio.o: .\fwlib\inc\stm32f10x_fsmc.h
20 | .\output\stm32f10x_gpio.o: .\fwlib\inc\stm32f10x_gpio.h
21 | .\output\stm32f10x_gpio.o: .\fwlib\inc\stm32f10x_i2c.h
22 | .\output\stm32f10x_gpio.o: .\fwlib\inc\stm32f10x_iwdg.h
23 | .\output\stm32f10x_gpio.o: .\fwlib\inc\stm32f10x_pwr.h
24 | .\output\stm32f10x_gpio.o: .\fwlib\inc\stm32f10x_rcc.h
25 | .\output\stm32f10x_gpio.o: .\fwlib\inc\stm32f10x_rtc.h
26 | .\output\stm32f10x_gpio.o: .\fwlib\inc\stm32f10x_sdio.h
27 | .\output\stm32f10x_gpio.o: .\fwlib\inc\stm32f10x_spi.h
28 | .\output\stm32f10x_gpio.o: .\fwlib\inc\stm32f10x_tim.h
29 | .\output\stm32f10x_gpio.o: .\fwlib\inc\stm32f10x_usart.h
30 | .\output\stm32f10x_gpio.o: .\fwlib\inc\stm32f10x_wwdg.h
31 | .\output\stm32f10x_gpio.o: .\fwlib\inc\misc.h
32 |
--------------------------------------------------------------------------------
/BleUsart/output/stm32f10x_gpio.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/BleUsart/output/stm32f10x_gpio.o
--------------------------------------------------------------------------------
/BleUsart/output/stm32f10x_it.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/BleUsart/output/stm32f10x_it.crf
--------------------------------------------------------------------------------
/BleUsart/output/stm32f10x_it.d:
--------------------------------------------------------------------------------
1 | .\output\stm32f10x_it.o: core\stm32f10x_it.c
2 | .\output\stm32f10x_it.o: core\stm32f10x_it.h
3 | .\output\stm32f10x_it.o: core\stm32f10x.h
4 | .\output\stm32f10x_it.o: core\core_cm3.h
5 | .\output\stm32f10x_it.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\output\stm32f10x_it.o: core\system_stm32f10x.h
7 | .\output\stm32f10x_it.o: core\stm32f10x_conf.h
8 | .\output\stm32f10x_it.o: .\fwlib\inc\stm32f10x_adc.h
9 | .\output\stm32f10x_it.o: .\core\stm32f10x.h
10 | .\output\stm32f10x_it.o: .\fwlib\inc\stm32f10x_bkp.h
11 | .\output\stm32f10x_it.o: .\fwlib\inc\stm32f10x_can.h
12 | .\output\stm32f10x_it.o: .\fwlib\inc\stm32f10x_cec.h
13 | .\output\stm32f10x_it.o: .\fwlib\inc\stm32f10x_crc.h
14 | .\output\stm32f10x_it.o: .\fwlib\inc\stm32f10x_dac.h
15 | .\output\stm32f10x_it.o: .\fwlib\inc\stm32f10x_dbgmcu.h
16 | .\output\stm32f10x_it.o: .\fwlib\inc\stm32f10x_dma.h
17 | .\output\stm32f10x_it.o: .\fwlib\inc\stm32f10x_exti.h
18 | .\output\stm32f10x_it.o: .\fwlib\inc\stm32f10x_flash.h
19 | .\output\stm32f10x_it.o: .\fwlib\inc\stm32f10x_fsmc.h
20 | .\output\stm32f10x_it.o: .\fwlib\inc\stm32f10x_gpio.h
21 | .\output\stm32f10x_it.o: .\fwlib\inc\stm32f10x_i2c.h
22 | .\output\stm32f10x_it.o: .\fwlib\inc\stm32f10x_iwdg.h
23 | .\output\stm32f10x_it.o: .\fwlib\inc\stm32f10x_pwr.h
24 | .\output\stm32f10x_it.o: .\fwlib\inc\stm32f10x_rcc.h
25 | .\output\stm32f10x_it.o: .\fwlib\inc\stm32f10x_rtc.h
26 | .\output\stm32f10x_it.o: .\fwlib\inc\stm32f10x_sdio.h
27 | .\output\stm32f10x_it.o: .\fwlib\inc\stm32f10x_spi.h
28 | .\output\stm32f10x_it.o: .\fwlib\inc\stm32f10x_tim.h
29 | .\output\stm32f10x_it.o: .\fwlib\inc\stm32f10x_usart.h
30 | .\output\stm32f10x_it.o: .\fwlib\inc\stm32f10x_wwdg.h
31 | .\output\stm32f10x_it.o: .\fwlib\inc\misc.h
32 |
--------------------------------------------------------------------------------
/BleUsart/output/stm32f10x_it.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/BleUsart/output/stm32f10x_it.o
--------------------------------------------------------------------------------
/BleUsart/output/stm32f10x_rcc.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/BleUsart/output/stm32f10x_rcc.crf
--------------------------------------------------------------------------------
/BleUsart/output/stm32f10x_rcc.d:
--------------------------------------------------------------------------------
1 | .\output\stm32f10x_rcc.o: fwlib\src\stm32f10x_rcc.c
2 | .\output\stm32f10x_rcc.o: .\fwlib\inc\stm32f10x_rcc.h
3 | .\output\stm32f10x_rcc.o: .\core\stm32f10x.h
4 | .\output\stm32f10x_rcc.o: .\core\core_cm3.h
5 | .\output\stm32f10x_rcc.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\output\stm32f10x_rcc.o: .\core\system_stm32f10x.h
7 | .\output\stm32f10x_rcc.o: .\core\stm32f10x_conf.h
8 | .\output\stm32f10x_rcc.o: .\fwlib\inc\stm32f10x_adc.h
9 | .\output\stm32f10x_rcc.o: .\core\stm32f10x.h
10 | .\output\stm32f10x_rcc.o: .\fwlib\inc\stm32f10x_bkp.h
11 | .\output\stm32f10x_rcc.o: .\fwlib\inc\stm32f10x_can.h
12 | .\output\stm32f10x_rcc.o: .\fwlib\inc\stm32f10x_cec.h
13 | .\output\stm32f10x_rcc.o: .\fwlib\inc\stm32f10x_crc.h
14 | .\output\stm32f10x_rcc.o: .\fwlib\inc\stm32f10x_dac.h
15 | .\output\stm32f10x_rcc.o: .\fwlib\inc\stm32f10x_dbgmcu.h
16 | .\output\stm32f10x_rcc.o: .\fwlib\inc\stm32f10x_dma.h
17 | .\output\stm32f10x_rcc.o: .\fwlib\inc\stm32f10x_exti.h
18 | .\output\stm32f10x_rcc.o: .\fwlib\inc\stm32f10x_flash.h
19 | .\output\stm32f10x_rcc.o: .\fwlib\inc\stm32f10x_fsmc.h
20 | .\output\stm32f10x_rcc.o: .\fwlib\inc\stm32f10x_gpio.h
21 | .\output\stm32f10x_rcc.o: .\fwlib\inc\stm32f10x_i2c.h
22 | .\output\stm32f10x_rcc.o: .\fwlib\inc\stm32f10x_iwdg.h
23 | .\output\stm32f10x_rcc.o: .\fwlib\inc\stm32f10x_pwr.h
24 | .\output\stm32f10x_rcc.o: .\fwlib\inc\stm32f10x_rcc.h
25 | .\output\stm32f10x_rcc.o: .\fwlib\inc\stm32f10x_rtc.h
26 | .\output\stm32f10x_rcc.o: .\fwlib\inc\stm32f10x_sdio.h
27 | .\output\stm32f10x_rcc.o: .\fwlib\inc\stm32f10x_spi.h
28 | .\output\stm32f10x_rcc.o: .\fwlib\inc\stm32f10x_tim.h
29 | .\output\stm32f10x_rcc.o: .\fwlib\inc\stm32f10x_usart.h
30 | .\output\stm32f10x_rcc.o: .\fwlib\inc\stm32f10x_wwdg.h
31 | .\output\stm32f10x_rcc.o: .\fwlib\inc\misc.h
32 |
--------------------------------------------------------------------------------
/BleUsart/output/stm32f10x_rcc.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/BleUsart/output/stm32f10x_rcc.o
--------------------------------------------------------------------------------
/BleUsart/output/stm32f10x_usart.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/BleUsart/output/stm32f10x_usart.crf
--------------------------------------------------------------------------------
/BleUsart/output/stm32f10x_usart.d:
--------------------------------------------------------------------------------
1 | .\output\stm32f10x_usart.o: fwlib\src\stm32f10x_usart.c
2 | .\output\stm32f10x_usart.o: .\fwlib\inc\stm32f10x_usart.h
3 | .\output\stm32f10x_usart.o: .\core\stm32f10x.h
4 | .\output\stm32f10x_usart.o: .\core\core_cm3.h
5 | .\output\stm32f10x_usart.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\output\stm32f10x_usart.o: .\core\system_stm32f10x.h
7 | .\output\stm32f10x_usart.o: .\core\stm32f10x_conf.h
8 | .\output\stm32f10x_usart.o: .\fwlib\inc\stm32f10x_adc.h
9 | .\output\stm32f10x_usart.o: .\core\stm32f10x.h
10 | .\output\stm32f10x_usart.o: .\fwlib\inc\stm32f10x_bkp.h
11 | .\output\stm32f10x_usart.o: .\fwlib\inc\stm32f10x_can.h
12 | .\output\stm32f10x_usart.o: .\fwlib\inc\stm32f10x_cec.h
13 | .\output\stm32f10x_usart.o: .\fwlib\inc\stm32f10x_crc.h
14 | .\output\stm32f10x_usart.o: .\fwlib\inc\stm32f10x_dac.h
15 | .\output\stm32f10x_usart.o: .\fwlib\inc\stm32f10x_dbgmcu.h
16 | .\output\stm32f10x_usart.o: .\fwlib\inc\stm32f10x_dma.h
17 | .\output\stm32f10x_usart.o: .\fwlib\inc\stm32f10x_exti.h
18 | .\output\stm32f10x_usart.o: .\fwlib\inc\stm32f10x_flash.h
19 | .\output\stm32f10x_usart.o: .\fwlib\inc\stm32f10x_fsmc.h
20 | .\output\stm32f10x_usart.o: .\fwlib\inc\stm32f10x_gpio.h
21 | .\output\stm32f10x_usart.o: .\fwlib\inc\stm32f10x_i2c.h
22 | .\output\stm32f10x_usart.o: .\fwlib\inc\stm32f10x_iwdg.h
23 | .\output\stm32f10x_usart.o: .\fwlib\inc\stm32f10x_pwr.h
24 | .\output\stm32f10x_usart.o: .\fwlib\inc\stm32f10x_rcc.h
25 | .\output\stm32f10x_usart.o: .\fwlib\inc\stm32f10x_rtc.h
26 | .\output\stm32f10x_usart.o: .\fwlib\inc\stm32f10x_sdio.h
27 | .\output\stm32f10x_usart.o: .\fwlib\inc\stm32f10x_spi.h
28 | .\output\stm32f10x_usart.o: .\fwlib\inc\stm32f10x_tim.h
29 | .\output\stm32f10x_usart.o: .\fwlib\inc\stm32f10x_usart.h
30 | .\output\stm32f10x_usart.o: .\fwlib\inc\stm32f10x_wwdg.h
31 | .\output\stm32f10x_usart.o: .\fwlib\inc\misc.h
32 |
--------------------------------------------------------------------------------
/BleUsart/output/stm32f10x_usart.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/BleUsart/output/stm32f10x_usart.o
--------------------------------------------------------------------------------
/BleUsart/output/stmf10x-demo.axf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/BleUsart/output/stmf10x-demo.axf
--------------------------------------------------------------------------------
/BleUsart/output/stmf10x-demo.build_log.htm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/BleUsart/output/stmf10x-demo.build_log.htm
--------------------------------------------------------------------------------
/BleUsart/output/stmf10x-demo.lnp:
--------------------------------------------------------------------------------
1 | --cpu Cortex-M3
2 | ".\output\core_cm3.o"
3 | ".\output\stm32f10x_it.o"
4 | ".\output\system_stm32f10x.o"
5 | ".\output\startup_stm32f10x_hd.o"
6 | ".\output\misc.o"
7 | ".\output\stm32f10x_gpio.o"
8 | ".\output\stm32f10x_rcc.o"
9 | ".\output\stm32f10x_usart.o"
10 | ".\output\delay.o"
11 | ".\output\usart.o"
12 | ".\output\led.o"
13 | ".\output\main.o"
14 | --strict --scatter ".\output\stmf10x-demo.sct"
15 | --summary_stderr --info summarysizes --map --xref --callgraph --symbols
16 | --info sizes --info totals --info unused --info veneers
17 | --list ".\listing\stmf10x-demo.map" -o .\output\stmf10x-demo.axf
--------------------------------------------------------------------------------
/BleUsart/output/stmf10x-demo.sct:
--------------------------------------------------------------------------------
1 | ; *************************************************************
2 | ; *** Scatter-Loading Description File generated by uVision ***
3 | ; *************************************************************
4 |
5 | LR_IROM1 0x08000000 0x00010000 { ; load region size_region
6 | ER_IROM1 0x08000000 0x00010000 { ; load address = execution address
7 | *.o (RESET, +First)
8 | *(InRoot$$Sections)
9 | .ANY (+RO)
10 | }
11 | RW_IRAM1 0x20000000 0x00005000 { ; RW data
12 | .ANY (+RW +ZI)
13 | }
14 | }
15 |
16 |
--------------------------------------------------------------------------------
/BleUsart/output/system_stm32f10x.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/BleUsart/output/system_stm32f10x.crf
--------------------------------------------------------------------------------
/BleUsart/output/system_stm32f10x.d:
--------------------------------------------------------------------------------
1 | .\output\system_stm32f10x.o: core\system_stm32f10x.c
2 | .\output\system_stm32f10x.o: core\stm32f10x.h
3 | .\output\system_stm32f10x.o: core\core_cm3.h
4 | .\output\system_stm32f10x.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
5 | .\output\system_stm32f10x.o: core\system_stm32f10x.h
6 | .\output\system_stm32f10x.o: core\stm32f10x_conf.h
7 | .\output\system_stm32f10x.o: .\fwlib\inc\stm32f10x_adc.h
8 | .\output\system_stm32f10x.o: .\core\stm32f10x.h
9 | .\output\system_stm32f10x.o: .\fwlib\inc\stm32f10x_bkp.h
10 | .\output\system_stm32f10x.o: .\fwlib\inc\stm32f10x_can.h
11 | .\output\system_stm32f10x.o: .\fwlib\inc\stm32f10x_cec.h
12 | .\output\system_stm32f10x.o: .\fwlib\inc\stm32f10x_crc.h
13 | .\output\system_stm32f10x.o: .\fwlib\inc\stm32f10x_dac.h
14 | .\output\system_stm32f10x.o: .\fwlib\inc\stm32f10x_dbgmcu.h
15 | .\output\system_stm32f10x.o: .\fwlib\inc\stm32f10x_dma.h
16 | .\output\system_stm32f10x.o: .\fwlib\inc\stm32f10x_exti.h
17 | .\output\system_stm32f10x.o: .\fwlib\inc\stm32f10x_flash.h
18 | .\output\system_stm32f10x.o: .\fwlib\inc\stm32f10x_fsmc.h
19 | .\output\system_stm32f10x.o: .\fwlib\inc\stm32f10x_gpio.h
20 | .\output\system_stm32f10x.o: .\fwlib\inc\stm32f10x_i2c.h
21 | .\output\system_stm32f10x.o: .\fwlib\inc\stm32f10x_iwdg.h
22 | .\output\system_stm32f10x.o: .\fwlib\inc\stm32f10x_pwr.h
23 | .\output\system_stm32f10x.o: .\fwlib\inc\stm32f10x_rcc.h
24 | .\output\system_stm32f10x.o: .\fwlib\inc\stm32f10x_rtc.h
25 | .\output\system_stm32f10x.o: .\fwlib\inc\stm32f10x_sdio.h
26 | .\output\system_stm32f10x.o: .\fwlib\inc\stm32f10x_spi.h
27 | .\output\system_stm32f10x.o: .\fwlib\inc\stm32f10x_tim.h
28 | .\output\system_stm32f10x.o: .\fwlib\inc\stm32f10x_usart.h
29 | .\output\system_stm32f10x.o: .\fwlib\inc\stm32f10x_wwdg.h
30 | .\output\system_stm32f10x.o: .\fwlib\inc\misc.h
31 |
--------------------------------------------------------------------------------
/BleUsart/output/system_stm32f10x.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/BleUsart/output/system_stm32f10x.o
--------------------------------------------------------------------------------
/BleUsart/output/usart.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/BleUsart/output/usart.crf
--------------------------------------------------------------------------------
/BleUsart/output/usart.d:
--------------------------------------------------------------------------------
1 | .\output\usart.o: hardware\src\usart.c
2 | .\output\usart.o: .\hardware\inc\usart.h
3 | .\output\usart.o: .\core\stm32f10x.h
4 | .\output\usart.o: .\core\core_cm3.h
5 | .\output\usart.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\output\usart.o: .\core\system_stm32f10x.h
7 | .\output\usart.o: .\core\stm32f10x_conf.h
8 | .\output\usart.o: .\fwlib\inc\stm32f10x_adc.h
9 | .\output\usart.o: .\core\stm32f10x.h
10 | .\output\usart.o: .\fwlib\inc\stm32f10x_bkp.h
11 | .\output\usart.o: .\fwlib\inc\stm32f10x_can.h
12 | .\output\usart.o: .\fwlib\inc\stm32f10x_cec.h
13 | .\output\usart.o: .\fwlib\inc\stm32f10x_crc.h
14 | .\output\usart.o: .\fwlib\inc\stm32f10x_dac.h
15 | .\output\usart.o: .\fwlib\inc\stm32f10x_dbgmcu.h
16 | .\output\usart.o: .\fwlib\inc\stm32f10x_dma.h
17 | .\output\usart.o: .\fwlib\inc\stm32f10x_exti.h
18 | .\output\usart.o: .\fwlib\inc\stm32f10x_flash.h
19 | .\output\usart.o: .\fwlib\inc\stm32f10x_fsmc.h
20 | .\output\usart.o: .\fwlib\inc\stm32f10x_gpio.h
21 | .\output\usart.o: .\fwlib\inc\stm32f10x_i2c.h
22 | .\output\usart.o: .\fwlib\inc\stm32f10x_iwdg.h
23 | .\output\usart.o: .\fwlib\inc\stm32f10x_pwr.h
24 | .\output\usart.o: .\fwlib\inc\stm32f10x_rcc.h
25 | .\output\usart.o: .\fwlib\inc\stm32f10x_rtc.h
26 | .\output\usart.o: .\fwlib\inc\stm32f10x_sdio.h
27 | .\output\usart.o: .\fwlib\inc\stm32f10x_spi.h
28 | .\output\usart.o: .\fwlib\inc\stm32f10x_tim.h
29 | .\output\usart.o: .\fwlib\inc\stm32f10x_usart.h
30 | .\output\usart.o: .\fwlib\inc\stm32f10x_wwdg.h
31 | .\output\usart.o: .\fwlib\inc\misc.h
32 | .\output\usart.o: .\hardware\inc\delay.h
33 | .\output\usart.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdarg.h
34 | .\output\usart.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\string.h
35 |
--------------------------------------------------------------------------------
/BleUsart/output/usart.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/BleUsart/output/usart.o
--------------------------------------------------------------------------------
/BleUsart/user/main.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/BleUsart/user/main.c
--------------------------------------------------------------------------------
/ContanaControl/.vs/ContanaControl/v14/.suo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/ContanaControl/.vs/ContanaControl/v14/.suo
--------------------------------------------------------------------------------
/ContanaControl/ContanaControl.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio 14
4 | VisualStudioVersion = 14.0.25420.1
5 | MinimumVisualStudioVersion = 10.0.40219.1
6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ContanaControl", "ContanaControl\ContanaControl.csproj", "{6C0C422C-096A-4CBC-8E10-E5C6F822F6AA}"
7 | EndProject
8 | Global
9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
10 | Debug|Any CPU = Debug|Any CPU
11 | Release|Any CPU = Release|Any CPU
12 | EndGlobalSection
13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
14 | {6C0C422C-096A-4CBC-8E10-E5C6F822F6AA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15 | {6C0C422C-096A-4CBC-8E10-E5C6F822F6AA}.Debug|Any CPU.Build.0 = Debug|Any CPU
16 | {6C0C422C-096A-4CBC-8E10-E5C6F822F6AA}.Release|Any CPU.ActiveCfg = Release|Any CPU
17 | {6C0C422C-096A-4CBC-8E10-E5C6F822F6AA}.Release|Any CPU.Build.0 = Release|Any CPU
18 | EndGlobalSection
19 | GlobalSection(SolutionProperties) = preSolution
20 | HideSolutionNode = FALSE
21 | EndGlobalSection
22 | EndGlobal
23 |
--------------------------------------------------------------------------------
/ContanaControl/ContanaControl/App.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/ContanaControl/ContanaControl/ContanaControl.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Debug
6 | AnyCPU
7 | {6C0C422C-096A-4CBC-8E10-E5C6F822F6AA}
8 | Exe
9 | Properties
10 | ContanaControl
11 | ContanaControl
12 | v4.5.2
13 | 512
14 | true
15 |
16 |
17 | AnyCPU
18 | true
19 | full
20 | false
21 | bin\Debug\
22 | DEBUG;TRACE
23 | prompt
24 | 4
25 |
26 |
27 | AnyCPU
28 | pdbonly
29 | true
30 | bin\Release\
31 | TRACE
32 | prompt
33 | 4
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
60 |
--------------------------------------------------------------------------------
/ContanaControl/ContanaControl/Program.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 | using System.IO.Ports;
7 |
8 | namespace ContanaControl
9 | {
10 | class Program
11 | {
12 | static void Main(string[] args)
13 | {
14 | SerialPort port = new SerialPort("COM4", 115200, Parity.None, 8, StopBits.One);
15 | port.Open();
16 | port.Write("close");
17 | port.Close();
18 | }
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/ContanaControl/ContanaControl/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Runtime.CompilerServices;
3 | using System.Runtime.InteropServices;
4 |
5 | // 有关程序集的一般信息由以下
6 | // 控制。更改这些特性值可修改
7 | // 与程序集关联的信息。
8 | [assembly: AssemblyTitle("ContanaControl")]
9 | [assembly: AssemblyDescription("")]
10 | [assembly: AssemblyConfiguration("")]
11 | [assembly: AssemblyCompany("")]
12 | [assembly: AssemblyProduct("ContanaControl")]
13 | [assembly: AssemblyCopyright("Copyright © 2017")]
14 | [assembly: AssemblyTrademark("")]
15 | [assembly: AssemblyCulture("")]
16 |
17 | //将 ComVisible 设置为 false 将使此程序集中的类型
18 | //对 COM 组件不可见。 如果需要从 COM 访问此程序集中的类型,
19 | //请将此类型的 ComVisible 特性设置为 true。
20 | [assembly: ComVisible(false)]
21 |
22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID
23 | [assembly: Guid("6c0c422c-096a-4cbc-8e10-e5c6f822f6aa")]
24 |
25 | // 程序集的版本信息由下列四个值组成:
26 | //
27 | // 主版本
28 | // 次版本
29 | // 生成号
30 | // 修订号
31 | //
32 | //可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值,
33 | // 方法是按如下所示使用“*”: :
34 | // [assembly: AssemblyVersion("1.0.*")]
35 | [assembly: AssemblyVersion("1.0.0.0")]
36 | [assembly: AssemblyFileVersion("1.0.0.0")]
37 |
--------------------------------------------------------------------------------
/ContanaControl/ContanaControl/bin/Debug/ContanaControl.exe.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/ContanaControl/ContanaControl/bin/Debug/ContanaControl.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/ContanaControl/ContanaControl/bin/Debug/ContanaControl.pdb
--------------------------------------------------------------------------------
/ContanaControl/ContanaControl/bin/Debug/ContanaControl.vshost.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/ContanaControl/ContanaControl/bin/Debug/ContanaControl.vshost.exe
--------------------------------------------------------------------------------
/ContanaControl/ContanaControl/bin/Debug/ContanaControl.vshost.exe.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/ContanaControl/ContanaControl/bin/Debug/ContanaControl.vshost.exe.manifest:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/ContanaControl/ContanaControl/obj/Debug/ContanaControl.csproj.FileListAbsolute.txt:
--------------------------------------------------------------------------------
1 | D:\OneNET\http\ContanaControl\ContanaControl\bin\Debug\ContanaControl.exe.config
2 | D:\OneNET\http\ContanaControl\ContanaControl\bin\Debug\ContanaControl.exe
3 | D:\OneNET\http\ContanaControl\ContanaControl\bin\Debug\ContanaControl.pdb
4 | D:\OneNET\http\ContanaControl\ContanaControl\obj\Debug\ContanaControl.csprojResolveAssemblyReference.cache
5 | D:\OneNET\http\ContanaControl\ContanaControl\obj\Debug\ContanaControl.exe
6 | D:\OneNET\http\ContanaControl\ContanaControl\obj\Debug\ContanaControl.pdb
7 |
--------------------------------------------------------------------------------
/ContanaControl/ContanaControl/obj/Debug/ContanaControl.csprojResolveAssemblyReference.cache:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/ContanaControl/ContanaControl/obj/Debug/ContanaControl.csprojResolveAssemblyReference.cache
--------------------------------------------------------------------------------
/ContanaControl/ContanaControl/obj/Debug/ContanaControl.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/ContanaControl/ContanaControl/obj/Debug/ContanaControl.exe
--------------------------------------------------------------------------------
/ContanaControl/ContanaControl/obj/Debug/ContanaControl.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/ContanaControl/ContanaControl/obj/Debug/ContanaControl.pdb
--------------------------------------------------------------------------------
/ContanaControl/ContanaControl/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/ContanaControl/ContanaControl/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
--------------------------------------------------------------------------------
/ContanaControl/ContanaControl/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/ContanaControl/ContanaControl/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
--------------------------------------------------------------------------------
/ContanaControl/ContanaControl/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/ContanaControl/ContanaControl/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
--------------------------------------------------------------------------------
/ContanaControl/ContanaControl/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/ContanaControl/ContanaControl/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
--------------------------------------------------------------------------------
/IOT/.project:
--------------------------------------------------------------------------------
1 |
2 |
3 | IOT
4 | Create By HBuilder
5 |
6 |
7 |
8 |
9 | com.pandora.projects.ui.MKeyBuilder
10 |
11 |
12 |
13 |
14 | com.aptana.ide.core.unifiedBuilder
15 |
16 |
17 |
18 |
19 |
20 | com.pandora.projects.ui.MKeyNature
21 | com.aptana.projects.webnature
22 |
23 |
24 |
25 | 1490490685444
26 |
27 | 10
28 |
29 | org.eclipse.ui.ide.orFilterMatcher
30 |
31 |
32 | org.eclipse.ui.ide.multiFilter
33 | 1.0-projectRelativePath-matches-false-false-bin
34 |
35 |
36 | org.eclipse.ui.ide.multiFilter
37 | 1.0-projectRelativePath-matches-false-false-setting
38 |
39 |
40 |
41 |
42 |
43 |
44 |
--------------------------------------------------------------------------------
/IOT/css/app.css:
--------------------------------------------------------------------------------
1 | /*
2 | *这是单独为hello mui准备的个性化css,可以覆盖标准mui的css定义;
3 | * 在实际项目开发时,建议为App单独写一个css文件,从而实现项目的自定义皮肤功能;
4 | *
5 | * */
6 | .mui-plus.mui-android header.mui-bar{
7 | display: none;
8 | }
9 | .mui-plus.mui-android .mui-bar-nav~.mui-content{
10 | padding: 0;
11 | }
12 |
13 | /*hm开头的表示仅为 Hello MUI示例定义*/
14 | .hm-description{
15 | margin: .5em 0;
16 | }
17 |
18 | .hm-description>li {
19 | font-size: 14px;
20 | color: #8f8f94;
21 | }
22 |
23 |
--------------------------------------------------------------------------------
/IOT/fonts/mui.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/IOT/fonts/mui.ttf
--------------------------------------------------------------------------------
/IOT/imgs/bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/IOT/imgs/bg.png
--------------------------------------------------------------------------------
/IOT/imgs/bg_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/IOT/imgs/bg_1.png
--------------------------------------------------------------------------------
/IOT/imgs/bg_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/IOT/imgs/bg_2.png
--------------------------------------------------------------------------------
/IOT/imgs/zvd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/IOT/imgs/zvd.png
--------------------------------------------------------------------------------
/IOT/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
14 |
15 |
16 |
17 |
35 |
36 |
37 |
--------------------------------------------------------------------------------
/IOT/list.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
19 |
20 |
21 |
22 |
23 |
24 | -
25 |
26 | 我的设备一
27 |
28 |
29 | -
30 |
31 | 我的设备二
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/IOT/pages/device1.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | 设备一数据展示
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 | 设备一温湿度数据显示
17 |
18 |
19 |
20 |
21 |
22 |
43 |
44 |
45 |
--------------------------------------------------------------------------------
/IOT/unpackage/.confirmed_dependencies:
--------------------------------------------------------------------------------
1 | {
2 | "pages/device1.html": {
3 | "href": "pages/device1.html",
4 | "resources": [
5 | "css/mui.min.css",
6 | "css/app.css",
7 | "js/mui.min.js",
8 | "libs/echarts.js"
9 | ],
10 | "refer": [],
11 | "priority": 0
12 | },
13 | "list.html": {
14 | "href": "list.html",
15 | "resources": [
16 | "css/mui.min.css",
17 | "js/mui.min.js",
18 | "imgs/zvd.png"
19 | ],
20 | "refer": [
21 | "pages/device1.html"
22 | ],
23 | "priority": 0
24 | },
25 | "index.html": {
26 | "href": "index.html",
27 | "resources": [
28 | "css/mui.min.css",
29 | "js/mui.min.js",
30 | "imgs/zvd.png"
31 | ],
32 | "refer": [
33 | "list.html",
34 | "pages/device1.html"
35 | ],
36 | "priority": 0
37 | }
38 | }
--------------------------------------------------------------------------------
/IOT/unpackage/.dependencies:
--------------------------------------------------------------------------------
1 | {}
--------------------------------------------------------------------------------
/IOT/unpackage/release/H5201A237_0326200816.apk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/IOT/unpackage/release/H5201A237_0326200816.apk
--------------------------------------------------------------------------------
/IOT/unpackage/release/H5201A237_0326205304.apk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/IOT/unpackage/release/H5201A237_0326205304.apk
--------------------------------------------------------------------------------
/IOT/unpackage/release/H5201A237_0326205658.apk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/IOT/unpackage/release/H5201A237_0326205658.apk
--------------------------------------------------------------------------------
/IOT/unpackage/release/H5201A237_0326211256.apk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/IOT/unpackage/release/H5201A237_0326211256.apk
--------------------------------------------------------------------------------
/IOT/unpackage/res/icons/100x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/IOT/unpackage/res/icons/100x100.png
--------------------------------------------------------------------------------
/IOT/unpackage/res/icons/114x114.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/IOT/unpackage/res/icons/114x114.png
--------------------------------------------------------------------------------
/IOT/unpackage/res/icons/120x120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/IOT/unpackage/res/icons/120x120.png
--------------------------------------------------------------------------------
/IOT/unpackage/res/icons/144x144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/IOT/unpackage/res/icons/144x144.png
--------------------------------------------------------------------------------
/IOT/unpackage/res/icons/152x152.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/IOT/unpackage/res/icons/152x152.png
--------------------------------------------------------------------------------
/IOT/unpackage/res/icons/180x180.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/IOT/unpackage/res/icons/180x180.png
--------------------------------------------------------------------------------
/IOT/unpackage/res/icons/192x192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/IOT/unpackage/res/icons/192x192.png
--------------------------------------------------------------------------------
/IOT/unpackage/res/icons/29x29.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/IOT/unpackage/res/icons/29x29.png
--------------------------------------------------------------------------------
/IOT/unpackage/res/icons/40x40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/IOT/unpackage/res/icons/40x40.png
--------------------------------------------------------------------------------
/IOT/unpackage/res/icons/48x48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/IOT/unpackage/res/icons/48x48.png
--------------------------------------------------------------------------------
/IOT/unpackage/res/icons/50x50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/IOT/unpackage/res/icons/50x50.png
--------------------------------------------------------------------------------
/IOT/unpackage/res/icons/57x57.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/IOT/unpackage/res/icons/57x57.png
--------------------------------------------------------------------------------
/IOT/unpackage/res/icons/58x58.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/IOT/unpackage/res/icons/58x58.png
--------------------------------------------------------------------------------
/IOT/unpackage/res/icons/72x72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/IOT/unpackage/res/icons/72x72.png
--------------------------------------------------------------------------------
/IOT/unpackage/res/icons/76x76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/IOT/unpackage/res/icons/76x76.png
--------------------------------------------------------------------------------
/IOT/unpackage/res/icons/80x80.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/IOT/unpackage/res/icons/80x80.png
--------------------------------------------------------------------------------
/IOT/unpackage/res/icons/87x87.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/IOT/unpackage/res/icons/87x87.png
--------------------------------------------------------------------------------
/IOT/unpackage/res/icons/96x96.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/IOT/unpackage/res/icons/96x96.png
--------------------------------------------------------------------------------
/MaibuControl/OUT.MAI:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/MaibuControl/OUT.MAI
--------------------------------------------------------------------------------
/MaibuControl/appinfo.json:
--------------------------------------------------------------------------------
1 | {
2 | "uuid": "fecdb1c5cfc508ff94296c6825cc1605",
3 | "name": "远程控制",
4 | "icon": "IMAGE_ICON",
5 | "version": "1.1.4",
6 | "watchface": "false",
7 | "sysapp": "2",
8 | "resources": [
9 | {
10 | "type": "bmp",
11 | "name": "IMAGE_ICON",
12 | "file": "counter_icon.bmp"
13 | },
14 | {
15 | "type": "bmp",
16 | "name": "RES_BITMAP_WATCHAPP_COUNTER_BG",
17 | "file": "counter_bg.bmp"
18 | }
19 | ]
20 | }
21 |
--------------------------------------------------------------------------------
/MaibuControl/resources/files/temp.data:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/MaibuControl/resources/files/temp.data
--------------------------------------------------------------------------------
/MaibuControl/resources/fonts/ASCII_10.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/MaibuControl/resources/fonts/ASCII_10.bin
--------------------------------------------------------------------------------
/MaibuControl/resources/fonts/ASCII_12.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/MaibuControl/resources/fonts/ASCII_12.bin
--------------------------------------------------------------------------------
/MaibuControl/resources/images/counter_bg.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/MaibuControl/resources/images/counter_bg.bmp
--------------------------------------------------------------------------------
/MaibuControl/resources/images/counter_icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/MaibuControl/resources/images/counter_icon.bmp
--------------------------------------------------------------------------------
/MaibuControl/watchapp_counter.h:
--------------------------------------------------------------------------------
1 | #ifndef _MAIBU_RES_H
2 | #define _MAIBU_RES_H
3 | #define IMAGE_ICON 5001
4 | #define RES_BITMAP_WATCHAPP_COUNTER_BG 5002
5 | #endif
6 |
--------------------------------------------------------------------------------
/MaibuView/OUT.MAI:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/MaibuView/OUT.MAI
--------------------------------------------------------------------------------
/MaibuView/appinfo.json:
--------------------------------------------------------------------------------
1 | {
2 | "uuid": "fbc6186f337ebcb16b15e108f3965d75",
3 | "name": "温湿度监测",
4 | "icon": "IMAGE_ICON",
5 | "version": "0.0.1",
6 | "watchface": "true",
7 | "resources": [
8 | {
9 | "type": "bmp",
10 | "name": "PIC_BG",
11 | "file": "bg.bmp"
12 | }
13 | ]
14 | }
--------------------------------------------------------------------------------
/MaibuView/resources/images/bg.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/MaibuView/resources/images/bg.bmp
--------------------------------------------------------------------------------
/MaibuView/resources/images/underline.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/MaibuView/resources/images/underline.bmp
--------------------------------------------------------------------------------
/Nodejs_Server/buttontest.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | button test
6 |
7 |
8 |
9 |
10 |
46 |
47 |
--------------------------------------------------------------------------------
/Nodejs_Server/emailtest.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/Nodejs_Server/emailtest.js
--------------------------------------------------------------------------------
/Nodejs_Server/expresstest.js:
--------------------------------------------------------------------------------
1 | var express = require('express');
2 | var mysql = require('mysql');
3 | app = express();
4 | app.use('/static',express.static('public'));
5 | //数据库配置
6 | var conn = mysql.createConnection({
7 | host:'localhost',
8 | user:'root',
9 | password:'root',
10 | database:'nodemysql',
11 | port:3306
12 | });
13 | //连接数据库
14 | conn.connect();
15 |
16 | //设置所有路由无限制访问,不需要跨域
17 | app.all('*',function(req,res,next){
18 | res.header("Access-Control-Allow-Origin","*");
19 | res.header("Access-Control-Allow-Headers","X-Requested-With");
20 | res.header("Access-Control-Allow-Methods","PUT,POST,GET,DELETE,OPTIONS");
21 | res.header("X-Powered-By",'3.2.1');
22 | res.header("Content-Type","application/json;charset=utf-8");
23 | next();
24 | })
25 | //温度
26 | app.get('/tem',function(req,res){
27 | var tem = [];
28 | conn.query('SELECT * FROM pet',function(err,rows,fields){
29 | var i = rows.length;
30 | var i = rows.length;
31 | var j =i-5;
32 | var c= 0;
33 | while(j < i ){
34 | tem[c] = rows[j].tem;
35 | c++;
36 | j++;
37 | }
38 | res.send(JSON.stringify(tem));
39 | })
40 | })
41 | //湿度
42 | app.get('/hum',function(req,res) {
43 | var hum = [];
44 | conn.query('SELECT * FROM pet',function(err,rows,fields){
45 | var i = rows.length;
46 | var j =i-5;
47 | var c= 0;
48 | while(j=i-5){
19 | // console.log(rows[j].hum);
20 | // j--;
21 | // }
22 | // console.log(rows[0].tem);
23 | // console.log(rows[1].tem);
24 | // console.log(rows[2]);
25 | // });
26 |
27 |
28 | conn.query('DELETE FROM pet WHERE id NOT IN ( SELECT id FROM ( SELECT id FROM pet ORDER BY id DESC LIMIT 5 ) foo )',function(err,rows,fields){
29 | if (err) throw err;
30 | });
31 |
32 | // //增加
33 | // var post = {tem:25,hum:50}
34 | // conn.query('INSERT INTO env SET ?', post ,function(error,result,fields){
35 | // if(error) throw error;
36 | // });
37 |
38 | // //更改
39 | // conn.query('UPDATE env SET tem=? , hum=? WHERE id = ?',[12,66,1], function(error,result,fields){
40 | // if(error) throw error;
41 | // });
42 |
43 | // //删除
44 | // conn.query('DELETE FROM pet LIMIT ?',[3],function(error,result,fields){
45 | // if (error) throw error;
46 | // console.log('delete '+ result.affectedRows + ' rows');
47 | // })
48 |
49 |
50 | conn.end();
--------------------------------------------------------------------------------
/Nodejs_Server/nodemysql.sql:
--------------------------------------------------------------------------------
1 | /*
2 | Navicat MySQL Data Transfer
3 |
4 | Source Server : test
5 | Source Server Version : 50716
6 | Source Host : localhost:3306
7 | Source Database : nodemysql
8 |
9 | Target Server Type : MYSQL
10 | Target Server Version : 50716
11 | File Encoding : 65001
12 |
13 | Date: 2017-03-19 22:40:39
14 | */
15 |
16 | SET FOREIGN_KEY_CHECKS=0;
17 |
18 | -- ----------------------------
19 | -- Table structure for `env`
20 | -- ----------------------------
21 | DROP TABLE IF EXISTS `env`;
22 | CREATE TABLE `env` (
23 | `id` int(11) NOT NULL AUTO_INCREMENT,
24 | `tem` int(11) DEFAULT NULL,
25 | `hum` int(11) DEFAULT NULL,
26 | PRIMARY KEY (`id`)
27 | ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
28 |
29 | -- ----------------------------
30 | -- Records of env
31 | -- ----------------------------
32 | INSERT INTO `env` VALUES ('3', '23', '66');
33 | INSERT INTO `env` VALUES ('4', '21', '67');
34 | INSERT INTO `env` VALUES ('5', '25', '50');
35 | INSERT INTO `env` VALUES ('6', '25', '50');
36 |
--------------------------------------------------------------------------------
/Nodejs_Server/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "node_server",
3 | "version": "1.0.0",
4 | "description": "",
5 | "main": "mysqltest.js",
6 | "dependencies": {
7 | "echarts": "^3.4.0",
8 | "emailjs": "^1.0.8",
9 | "express": "^4.15.2",
10 | "mysql": "^2.13.0"
11 | },
12 | "devDependencies": {},
13 | "scripts": {
14 | "test": "echo \"Error: no test specified\" && exit 1"
15 | },
16 | "author": "",
17 | "license": "ISC"
18 | }
19 |
--------------------------------------------------------------------------------
/Nodejs_Server/public/swagger-ui-bundle.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"file":"swagger-ui-bundle.js","sources":["webpack:///swagger-ui-bundle.js"],"mappings":"AAAA;AAu/FA;AA6+FA;;;;;;;;;;;;;;;;;;;;;;;;;;AAsdA;;;;;;AAoIA;AAk7FA;AAmtCA;;;;;AA0uIA;AAq7IA;AAo7FA;AA0wGA;AAglFA;AA0jFA;AAq9CA;AA6jDA;AAgrCA;AAgtEA;AAgkIA;;;;;;;;;;;;;;AAw4GA;AAyoIA;AAiuJA;AA8kHA;AAonGA;AAukEA;AA02DA;AAyxDA;AAm+BA;;;;;;AAmsEA;AA2zFA;;;;;AA+1CA;AA2qFA;AAo2CA;AAokCA;AAkhDA;AAwvEA;AAs+FA;;;;;;;;;AA+xBA;AA2zIA;AAg4DA;AA0vDA","sourceRoot":""}
--------------------------------------------------------------------------------
/Nodejs_Server/public/swagger-ui-standalone-preset.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"file":"swagger-ui-standalone-preset.js","sources":["webpack:///swagger-ui-standalone-preset.js"],"mappings":"AAAA;;;;;AAqTA;AAyiGA","sourceRoot":""}
--------------------------------------------------------------------------------
/Nodejs_Server/public/swagger-ui.css.map:
--------------------------------------------------------------------------------
1 | {"version":3,"file":"swagger-ui.css","sources":[],"mappings":"","sourceRoot":""}
--------------------------------------------------------------------------------
/Nodejs_Server/public/swagger-ui.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"file":"swagger-ui.js","sources":["webpack:///swagger-ui.js"],"mappings":"AAAA;AAsoGA;AAy4HA;AA+7FA;AA2mCA;AAw/BA;AA2hCA;AAs5BA","sourceRoot":""}
--------------------------------------------------------------------------------
/Nodejs_Server/tcpiot.js:
--------------------------------------------------------------------------------
1 | var net = require('net')
2 | var mysql = require('mysql');
3 | var conn = mysql.createConnection({
4 | host:'localhost',
5 | user:'root',
6 | password:'root',
7 | database:'nodemysql',
8 | port:3306
9 | });
10 |
11 | conn.connect();
12 |
13 | net.createServer(function(socket){
14 | socket.on('data',function(data){
15 | console.log('got:',data.toString());
16 | conn.query('SELECT * FROM status',function(err,rows,fields){
17 | if (err) throw err;
18 | socket.write(rows[rows.length-1].status+"");
19 | })
20 | var text = JSON.parse(data.toString());
21 | var arr = {};
22 | arr.tem = text.tem;
23 | arr.hum = text.hum;
24 | arr.time = new Date().toLocaleString();
25 | // console.log(text);
26 | // console.log(text.tem)
27 | // console.log(text.hum)
28 | conn.query('DELETE FROM env WHERE id NOT IN ( SELECT id FROM ( SELECT id FROM pet ORDER BY id DESC LIMIT 5 ) foo )',function(error,result,fields){
29 | if (error) throw error;
30 | })
31 | conn.query('INSERT INTO env SET ?', arr, function(error,result,fields){
32 | if (error) throw error;
33 | });
34 |
35 | });
36 | socket.on('end',function(data){
37 | console.log('end');
38 | });
39 | socket.write('Ready to receive your message!')
40 |
41 | }).listen(4001);
42 |
43 |
--------------------------------------------------------------------------------
/Nodejs_Server/tcpiotclient.js:
--------------------------------------------------------------------------------
1 | const net = require('net')
2 | const client = net.connect({port:4001},() => {
3 | console.log("connected to server!");
4 | client.write("{\"tem\":\"20\",\"hum\":\"80\"}");
5 | });
6 | client.on('data',(data) => {
7 | console.log(data.toString());
8 | client.end();
9 | });
10 | client.on('end',() => {
11 | console.log('disconnected from server');
12 | })
--------------------------------------------------------------------------------
/Nodejs_Server/tcptcp.js:
--------------------------------------------------------------------------------
1 | var net = require('net')
2 |
3 |
4 | net.createServer(function(socket){
5 | socket.on('data',function(data){
6 | console.log('got:',data.toString());
7 |
8 |
9 | });
10 | socket.on('end',function(data){
11 | console.log('end');
12 | });
13 | socket.write('HIGH')
14 |
15 | }).listen(4040);
16 |
17 |
--------------------------------------------------------------------------------
/Nodejs_Server/timetest/t1.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | test1
6 |
7 |
8 |
21 |
22 |
--------------------------------------------------------------------------------
/Nodejs_Server/timetest/t2.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Document
6 |
7 |
8 |
15 |
16 |
--------------------------------------------------------------------------------
/Nodejs_Server/timetest/t3.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | test3
6 |
7 |
8 |
21 |
22 |
--------------------------------------------------------------------------------
/Nodejs_Server/timetest/t4.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | test4
6 |
7 |
8 |
19 |
20 |
--------------------------------------------------------------------------------
/Nodejs_Server/watchpush.js:
--------------------------------------------------------------------------------
1 | var express = require('express');
2 | var mysql = require('mysql');
3 | app = express();
4 |
5 | //数据库配置
6 | var conn = mysql.createConnection({
7 | host:'localhost',
8 | user:'root',
9 | password:'root',
10 | database:'nodemysql',
11 | port:3306
12 | });
13 | //连接数据库
14 | conn.connect();
15 |
16 | //设置所有路由无限制访问,不需要跨域
17 | app.all('*',function(req,res,next){
18 | res.header("Access-Control-Allow-Origin","*");
19 | res.header("Access-Control-Allow-Headers","X-Requested-With");
20 | res.header("Access-Control-Allow-Methods","PUT,POST,GET,DELETE,OPTIONS");
21 | res.header("X-Powered-By",'3.2.1');
22 | res.header("Content-Type","application/json;charset=utf-8");
23 | next();
24 | })
25 | //温度
26 | app.get('/watch',function(req,res){
27 | var tem = [];
28 | conn.query('SELECT * FROM env',function(err,rows,fields){
29 | var tem = "{ \"temhum\" :" + "\"" + rows[rows.length-1].tem + " | "
30 | + rows[rows.length-1].hum + "\"" + "}";
31 | res.send(tem);
32 | })
33 | })
34 | //湿度
35 | app.get('/hum',function(req,res) {
36 | var hum = [];
37 | conn.query('SELECT * FROM env',function(err,rows,fields){
38 | var i = rows.length;
39 | var j =i-5;
40 | var c= 0;
41 | while(j
7 | unsigned char usart1_rcv_buf[512];
8 | volatile unsigned int usart1_rcv_len = 0;
9 | volatile unsigned int usart1_rcv_flag = 0;
10 | volatile unsigned int usart1_rcv_start = 0;
11 |
12 | /*
13 | * @brief USART1初始化
14 | */
15 | void USART1_Config(void)
16 | {
17 | GPIO_InitTypeDef GPIO_InitStructure;
18 | USART_InitTypeDef USART_InitStructure;
19 | NVIC_InitTypeDef NVIC_InitStructure;
20 |
21 | /* config USART1 clock */
22 | RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1 | RCC_APB2Periph_GPIOA, ENABLE);
23 |
24 | /* USART1 GPIO config */
25 | /* Set PA9 PA10 as UART1 */
26 | /* Configure USART1 Tx (PA.09) as alternate function push-pull */
27 | GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
28 | GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
29 | GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
30 | GPIO_Init(GPIOA, &GPIO_InitStructure);
31 | /* Configure USART1 Rx (PA.10) as input floating */
32 | GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
33 | GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
34 | GPIO_Init(GPIOA, &GPIO_InitStructure);
35 |
36 | /* USART1 mode config */
37 | USART_InitStructure.USART_BaudRate = 115200;
38 | USART_InitStructure.USART_WordLength = USART_WordLength_8b;
39 | USART_InitStructure.USART_StopBits = USART_StopBits_1;
40 | USART_InitStructure.USART_Parity = USART_Parity_No ;
41 | USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
42 | USART_InitStructure.USART_Mode = USART_Mode_Rx | USART_Mode_Tx;
43 | USART_Init(USART1, &USART_InitStructure);
44 | USART_Cmd(USART1, ENABLE);
45 |
46 | //Enable usart1 receive interrupt
47 | USART_ITConfig(USART1, USART_IT_RXNE, DISABLE);
48 |
49 | NVIC_InitStructure.NVIC_IRQChannel = USART1_IRQn;
50 | NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 1;
51 | NVIC_InitStructure.NVIC_IRQChannelSubPriority = 1;
52 | NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
53 | NVIC_Init(&NVIC_InitStructure);
54 | }
55 |
56 | /*
57 | * @brief USART1串口发送api
58 | */
59 | void usart1_write(USART_TypeDef* USARTx, uint8_t *Data, uint8_t len)
60 | {
61 | uint8_t i;
62 |
63 | for(i = 0; i < len; i++)
64 | {
65 | USART_SendData(USARTx, *Data++);
66 | while( USART_GetFlagStatus(USARTx, USART_FLAG_TC) == RESET );
67 | }
68 | }
69 |
70 | /*使用u-lib进行printf打印的实现,需要选择use u-lib*/
71 | #ifdef __GNUC__
72 | // With GCC/RAISONANCE, small printf (option LD Linker->Libraries->Small printf set to 'Yes') calls __io_putchar()
73 | #define PUTCHAR_PROTOTYPE int __io_putchar(int ch)
74 | #else
75 | #define PUTCHAR_PROTOTYPE int fputc(int ch, FILE *f)
76 | #endif /* __GNUC__ */
77 |
78 | PUTCHAR_PROTOTYPE
79 | {
80 | //Place your implementation of fputc here , e.g. write a character to the USART
81 | USART_SendData(USART1, (u8)ch);
82 | //Loop until the end of transmission
83 | while (USART_GetFlagStatus(USART1, USART_FLAG_TXE) == RESET);
84 | return ch;
85 | }
86 |
--------------------------------------------------------------------------------
/STM32_ESP8266/Hal/usart1.h:
--------------------------------------------------------------------------------
1 | #ifndef USART1_H_H
2 | #define USART1_H_H
3 |
4 | extern void USART1_Config(void);
5 | extern void usart1_write(USART_TypeDef* USARTx, uint8_t *Data, uint8_t len);
6 |
7 | extern unsigned char usart1_rcv_buf[512];
8 | extern volatile unsigned int usart1_rcv_len;
9 | extern volatile unsigned int usart1_rcv_flag;
10 | extern volatile unsigned int usart1_rcv_start;
11 |
12 | #endif
13 |
14 |
--------------------------------------------------------------------------------
/STM32_ESP8266/Hal/usart2.h:
--------------------------------------------------------------------------------
1 | #ifndef USART2_H_H
2 | #define USART2_H_H
3 |
4 | #include
5 | #include
6 | #define MAX_RCV_LEN 1024
7 |
8 | extern void USART2_Config(void);
9 | extern void USART2_Write(USART_TypeDef* USARTx, uint8_t *Data,uint8_t len);
10 | extern void USART2_Clear(void);
11 | extern volatile unsigned char gprs_ready_flag;
12 | extern volatile unsigned char gprs_ready_count;
13 |
14 | extern unsigned char usart2_rcv_buf[MAX_RCV_LEN];
15 | extern volatile unsigned int usart2_rcv_len;
16 | void SendCmd(char* cmd, char* result, int timeOut);
17 | #endif
18 |
19 |
--------------------------------------------------------------------------------
/STM32_ESP8266/Libraries/CMSIS/stm32f10x.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/Libraries/CMSIS/stm32f10x.h
--------------------------------------------------------------------------------
/STM32_ESP8266/Libraries/CMSIS/system_stm32f10x.h:
--------------------------------------------------------------------------------
1 | /**
2 | ******************************************************************************
3 | * @file system_stm32f10x.h
4 | * @author MCD Application Team
5 | * @version V3.5.0
6 | * @date 11-March-2011
7 | * @brief CMSIS Cortex-M3 Device Peripheral Access Layer System Header File.
8 | ******************************************************************************
9 | * @attention
10 | *
11 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
12 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
13 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
14 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
15 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
16 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
17 | *
18 | * © COPYRIGHT 2011 STMicroelectronics
19 | ******************************************************************************
20 | */
21 |
22 | /** @addtogroup CMSIS
23 | * @{
24 | */
25 |
26 | /** @addtogroup stm32f10x_system
27 | * @{
28 | */
29 |
30 | /**
31 | * @brief Define to prevent recursive inclusion
32 | */
33 | #ifndef __SYSTEM_STM32F10X_H
34 | #define __SYSTEM_STM32F10X_H
35 |
36 | #ifdef __cplusplus
37 | extern "C" {
38 | #endif
39 |
40 | /** @addtogroup STM32F10x_System_Includes
41 | * @{
42 | */
43 |
44 | /**
45 | * @}
46 | */
47 |
48 |
49 | /** @addtogroup STM32F10x_System_Exported_types
50 | * @{
51 | */
52 |
53 | extern uint32_t SystemCoreClock; /*!< System Clock Frequency (Core Clock) */
54 |
55 | /**
56 | * @}
57 | */
58 |
59 | /** @addtogroup STM32F10x_System_Exported_Constants
60 | * @{
61 | */
62 |
63 | /**
64 | * @}
65 | */
66 |
67 | /** @addtogroup STM32F10x_System_Exported_Macros
68 | * @{
69 | */
70 |
71 | /**
72 | * @}
73 | */
74 |
75 | /** @addtogroup STM32F10x_System_Exported_Functions
76 | * @{
77 | */
78 |
79 | extern void SystemInit(void);
80 | extern void SystemCoreClockUpdate(void);
81 | /**
82 | * @}
83 | */
84 |
85 | #ifdef __cplusplus
86 | }
87 | #endif
88 |
89 | #endif /*__SYSTEM_STM32F10X_H */
90 |
91 | /**
92 | * @}
93 | */
94 |
95 | /**
96 | * @}
97 | */
98 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/
99 |
--------------------------------------------------------------------------------
/STM32_ESP8266/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_crc.h:
--------------------------------------------------------------------------------
1 | /**
2 | ******************************************************************************
3 | * @file stm32f10x_crc.h
4 | * @author MCD Application Team
5 | * @version V3.5.0
6 | * @date 11-March-2011
7 | * @brief This file contains all the functions prototypes for the CRC firmware
8 | * library.
9 | ******************************************************************************
10 | * @attention
11 | *
12 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
13 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
14 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
15 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
16 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
17 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
18 | *
19 | * © COPYRIGHT 2011 STMicroelectronics
20 | ******************************************************************************
21 | */
22 |
23 | /* Define to prevent recursive inclusion -------------------------------------*/
24 | #ifndef __STM32F10x_CRC_H
25 | #define __STM32F10x_CRC_H
26 |
27 | #ifdef __cplusplus
28 | extern "C" {
29 | #endif
30 |
31 | /* Includes ------------------------------------------------------------------*/
32 | #include "stm32f10x.h"
33 |
34 | /** @addtogroup STM32F10x_StdPeriph_Driver
35 | * @{
36 | */
37 |
38 | /** @addtogroup CRC
39 | * @{
40 | */
41 |
42 | /** @defgroup CRC_Exported_Types
43 | * @{
44 | */
45 |
46 | /**
47 | * @}
48 | */
49 |
50 | /** @defgroup CRC_Exported_Constants
51 | * @{
52 | */
53 |
54 | /**
55 | * @}
56 | */
57 |
58 | /** @defgroup CRC_Exported_Macros
59 | * @{
60 | */
61 |
62 | /**
63 | * @}
64 | */
65 |
66 | /** @defgroup CRC_Exported_Functions
67 | * @{
68 | */
69 |
70 | void CRC_ResetDR(void);
71 | uint32_t CRC_CalcCRC(uint32_t Data);
72 | uint32_t CRC_CalcBlockCRC(uint32_t pBuffer[], uint32_t BufferLength);
73 | uint32_t CRC_GetCRC(void);
74 | void CRC_SetIDRegister(uint8_t IDValue);
75 | uint8_t CRC_GetIDRegister(void);
76 |
77 | #ifdef __cplusplus
78 | }
79 | #endif
80 |
81 | #endif /* __STM32F10x_CRC_H */
82 | /**
83 | * @}
84 | */
85 |
86 | /**
87 | * @}
88 | */
89 |
90 | /**
91 | * @}
92 | */
93 |
94 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/
95 |
--------------------------------------------------------------------------------
/STM32_ESP8266/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_flash.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_flash.c
--------------------------------------------------------------------------------
/STM32_ESP8266/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_i2c.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_i2c.c
--------------------------------------------------------------------------------
/STM32_ESP8266/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_usart.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_usart.c
--------------------------------------------------------------------------------
/STM32_ESP8266/Network/esp8266/esp8266.c:
--------------------------------------------------------------------------------
1 | #include "esp8266.h"
2 | #include "usart2.h"
3 | #include "utils.h"
4 | /**
5 | * @brief ESP8266硬件复位
6 | **/
7 | void ESP8266_Rst(void)
8 | {
9 | GPIO_InitTypeDef GPIO_InitStructure;
10 | //Pb5--对应ESP8266的reset引脚;
11 | RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB, ENABLE);
12 | GPIO_InitStructure.GPIO_Pin = GPIO_Pin_5;
13 | GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
14 | GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
15 | GPIO_Init(GPIOB, &GPIO_InitStructure);
16 |
17 | GPIO_ResetBits(GPIOB,GPIO_Pin_5);
18 | mDelay(100);
19 | GPIO_SetBits(GPIOB,GPIO_Pin_5);
20 | mDelay(100);
21 | }
22 |
23 |
24 | /*
25 | * @brief ESP8266模块初始化
26 | */
27 | void ESP8266_Init(void)
28 | {
29 | ESP8266_Rst();
30 | #if 1
31 | SendCmd(AT, "OK", 1000); //模块有效性检查
32 | SendCmd(CWMODE, "OK", 1000); //模块工作模式
33 | SendCmd(RST, "OK", 2000); //模块重置
34 | SendCmd(CIFSR, "OK", 1000); //查询网络信息
35 | SendCmd(CWJAP, "OK", 2000); //配置需要连接的WIFI热点SSID和密码
36 | SendCmd(CIPSTART, "OK", 2000); //TCP连接
37 | SendCmd(CIPMODE1, "OK", 1000); //配置透传模式
38 | SendCmd(CIPSEND, ">", 1000); //进入透传模式
39 | USART2_Clear();
40 | #endif
41 | }
42 |
--------------------------------------------------------------------------------
/STM32_ESP8266/Network/esp8266/esp8266.h:
--------------------------------------------------------------------------------
1 | #define AT "AT\r\n"
2 | #define CWMODE "AT+CWMODE=3\r\n" //STA+AP模式
3 | #define RST "AT+RST\r\n"
4 | #define CIFSR "AT+CIFSR\r\n"
5 | #define CWJAP "AT+CWJAP=\"nb\",\"123456789\"\r\n" //ssid: onenet 密码:空
6 | #define CIPSTART "AT+CIPSTART=\"TCP\",\"192.168.23.1\",4001\r\n" //HTTP服务器183.230.40.33/80
7 | #define CIPMODE0 "AT+CIPMODE=0\r\n" //非透传模式
8 | #define CIPMODE1 "AT+CIPMODE=1\r\n" //透传模式
9 | #define CIPSEND "AT+CIPSEND\r\n"
10 | #define CIPSTATUS "AT+CIPSTATUS\r\n" //网络状态查询
11 |
12 | extern void ESP8266_Rst(void);
13 | extern void ESP8266_Init(void);
14 |
--------------------------------------------------------------------------------
/STM32_ESP8266/Project/JLinkSettings.ini:
--------------------------------------------------------------------------------
1 | [BREAKPOINTS]
2 | ShowInfoWin = 1
3 | EnableFlashBP = 2
4 | BPDuringExecution = 0
5 | [CFI]
6 | CFISize = 0x00
7 | CFIAddr = 0x00
8 | [CPU]
9 | OverrideMemMap = 0
10 | AllowSimulation = 1
11 | ScriptFile=""
12 | [FLASH]
13 | MinNumBytesFlashDL = 0
14 | SkipProgOnCRCMatch = 1
15 | VerifyDownload = 1
16 | AllowCaching = 1
17 | EnableFlashDL = 2
18 | Override = 0
19 | Device="UNSPECIFIED"
20 | [GENERAL]
21 | WorkRAMSize = 0x00
22 | WorkRAMAddr = 0x00
23 | [SWO]
24 | SWOLogFile=""
25 | [MEM]
26 | RdOverrideOrMask = 0x00
27 | RdOverrideAndMask = 0xFFFFFFFF
28 | RdOverrideAddr = 0xFFFFFFFF
29 | WrOverrideOrMask = 0x00
30 | WrOverrideAndMask = 0xFFFFFFFF
31 | WrOverrideAddr = 0xFFFFFFFF
32 |
--------------------------------------------------------------------------------
/STM32_ESP8266/Project/onenetdemo.plg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/Project/onenetdemo.plg
--------------------------------------------------------------------------------
/STM32_ESP8266/Protocol/http/HTTP_Demo.c:
--------------------------------------------------------------------------------
1 | #include
2 | #include
3 | #include
4 |
5 | /**
6 | * @brief 组HTTP POST报文
7 | * @param pkt 报文缓存指针
8 | * @param key API_KEY定义在Main.c文件中,需要根据自己的设备修改
9 | * @param devid 设备ID,定义在main.c文件中,需要根据自己的设备修改
10 | * @param dsid 数据流ID
11 | * @param val 字符串形式的数据点的值
12 | * @retval 整个包的长度
13 | */
14 | uint32_t HTTP_PostPkt(char *pkt, char *key, char *devid, char *dsid, char *val)
15 | {
16 | char dataBuf[100] = {0};
17 | char lenBuf[10] = {0};
18 | *pkt = 0;
19 |
20 | sprintf(dataBuf, ",;%s,%s", dsid, val); //采用分割字符串格式:type = 5
21 | sprintf(lenBuf, "%d", strlen(dataBuf));
22 |
23 | strcat(pkt, "POST /devices/");
24 | strcat(pkt, devid);
25 | strcat(pkt, "/datapoints?type=5 HTTP/1.1\r\n");
26 |
27 | strcat(pkt, "api-key:");
28 | strcat(pkt, key);
29 | strcat(pkt, "\r\n");
30 |
31 | strcat(pkt, "Host:api.heclouds.com\r\n");
32 |
33 | strcat(pkt, "Content-Length:");
34 | strcat(pkt, lenBuf);
35 | strcat(pkt, "\r\n\r\n");
36 |
37 | strcat(pkt, dataBuf);
38 |
39 | return strlen(pkt);
40 | }
41 |
42 |
43 |
44 | /**
45 | * @brief 组HTTP POST报文
46 | * @param pkt 报文缓存指针
47 | * @param dsid1 数据流ID
48 | * @param val1 字符串形式的数据点的值
49 | * @param dsid2 数据流ID
50 | * @param val2 字符串形式的数据点的值
51 | * @retval 整个包的长度
52 | */
53 | uint32_t HTTP_NewPostPacket(char *pkt, char *dsid1, char *val1, char *dsid2, char *val2)
54 | {
55 | char dataBuf[50] = {0};
56 | char lenBuf[10] = {0};
57 | *pkt = 0;
58 |
59 | sprintf(dataBuf, "{\"%s\":\"%s\",\"%s\":\"%s\"}", dsid1, val1, dsid2, val2); //采用分割字符串格式:type = 5
60 | sprintf(lenBuf, "%d", strlen(dataBuf));
61 |
62 |
63 | strcat(pkt, dataBuf);
64 |
65 | return strlen(pkt);
66 | }
67 |
--------------------------------------------------------------------------------
/STM32_ESP8266/Protocol/http/HTTP_Demo.h:
--------------------------------------------------------------------------------
1 | extern uint32 HTTP_PostPkt(u8 *pkt, char *key, char *devid, char *dsid, char *val);
--------------------------------------------------------------------------------
/STM32_ESP8266/User/main.c:
--------------------------------------------------------------------------------
1 | /**
2 | ******************************************************************************
3 | * @file Project/STM32F10x_StdPeriph_Template/main.c
4 | * @author MCD Application Team
5 | * @version V3.5.0
6 | * @date 08-April-2011
7 | * @brief Main program body
8 | ******************************************************************************
9 | * @attention
10 | *
11 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
12 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
13 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
14 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
15 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
16 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
17 | *
18 | * © COPYRIGHT 2011 STMicroelectronics
19 | ******************************************************************************
20 | */
21 |
22 | /* Includes ------------------------------------------------------------------*/
23 | //USE_STDPERIPH_DRIVER, STM32F10X_HD, USE_STM3210B_EVAL
24 |
25 | #include "stm32f10x.h"
26 | #include "stdio.h"
27 | #include "stdlib.h"
28 | #include "string.h"
29 | #include "usart1.h"
30 | #include "usart2.h"
31 | #include "utils.h"
32 | #include "sht20.h"
33 | #include "hal_i2c.h"
34 | #include "esp8266.h"
35 |
36 |
37 | /**n
38 | * @brief 利用I2C接口,采集温湿度传感器的值,使用HTTP协议上传到OneNET
39 | * @attention 使用UART2连接ESP8266模块,使用透传模式发送和接收数据
40 | * 使用UART1作为调试打印串口,使用printf将从该接口打印消息
41 | *
42 | */
43 | uint32_t HTTP_NewPostPacket(char *pkt, char *dsid1, char *val1, char *dsid2, char *val2);
44 | int main(void)
45 | {
46 | uint16_t tem, hum; //温湿度
47 | char HTTP_Buf[100]; //HTTP报文缓存区
48 | char tempStr[5]; //字符串格式温度
49 | char humiStr[5]; //字符串格式湿度
50 | int len;
51 |
52 | USART1_Config(); //USART1作为调试串口
53 | USART2_Config(); //USART2用于连接ESP8266模块
54 | Hal_I2C_Init(); //I2C初始化,用于连接温湿度传感器
55 |
56 | ESP8266_Init(); //ESP8266初始化
57 | printf("ESP8266 init over\r\n");
58 | //SHT20_loop(); //
59 |
60 | while(1)
61 | {
62 | /* 获取温湿度 */
63 | SHT2x_MeasureHM(SHT20_Measurement_T_HM, &tem);
64 | mDelay(500);
65 | SHT2x_MeasureHM(SHT20_Measurement_RH_HM, &hum);
66 |
67 | /* 转化为字符串形式 */
68 | sprintf(tempStr, "%d", tem);
69 | sprintf(humiStr, "%d", hum);
70 |
71 | USART2_Clear();
72 | len = HTTP_NewPostPacket(HTTP_Buf, "tem", tempStr, "hum", humiStr); //HTTP组包
73 | USART2_Write(USART2, (unsigned char *)(HTTP_Buf), len); //报文发送
74 | printf("send HTTP msg:\r\n%s\r\n", HTTP_Buf);
75 |
76 | mDelay(1000);
77 | printf("rcv response:\r\n%s\r\n", usart2_rcv_buf);
78 |
79 |
80 | mDelay(5000);
81 | }
82 | }
83 |
84 | /******************* (C) COPYRIGHT 2010 STMicroelectronics *****END OF FILE****/
85 |
--------------------------------------------------------------------------------
/STM32_ESP8266/User/stm32f10x_it.h:
--------------------------------------------------------------------------------
1 | /**
2 | ******************************************************************************
3 | * @file Project/STM32F10x_StdPeriph_Template/stm32f10x_it.h
4 | * @author MCD Application Team
5 | * @version V3.5.0
6 | * @date 08-April-2011
7 | * @brief This file contains the headers of the interrupt handlers.
8 | ******************************************************************************
9 | * @attention
10 | *
11 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
12 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
13 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
14 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
15 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
16 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
17 | *
18 | * © COPYRIGHT 2011 STMicroelectronics
19 | ******************************************************************************
20 | */
21 |
22 | /* Define to prevent recursive inclusion -------------------------------------*/
23 | #ifndef __STM32F10x_IT_H
24 | #define __STM32F10x_IT_H
25 |
26 | #ifdef __cplusplus
27 | extern "C" {
28 | #endif
29 |
30 | /* Includes ------------------------------------------------------------------*/
31 | #include "stm32f10x.h"
32 |
33 | /* Exported types ------------------------------------------------------------*/
34 | /* Exported constants --------------------------------------------------------*/
35 | /* Exported macro ------------------------------------------------------------*/
36 | /* Exported functions ------------------------------------------------------- */
37 |
38 | void NMI_Handler(void);
39 | void HardFault_Handler(void);
40 | void MemManage_Handler(void);
41 | void BusFault_Handler(void);
42 | void UsageFault_Handler(void);
43 | void SVC_Handler(void);
44 | void DebugMon_Handler(void);
45 | void PendSV_Handler(void);
46 | void SysTick_Handler(void);
47 |
48 | #ifdef __cplusplus
49 | }
50 | #endif
51 |
52 | #endif /* __STM32F10x_IT_H */
53 |
54 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/
55 |
--------------------------------------------------------------------------------
/STM32_ESP8266/Utils/utils.h:
--------------------------------------------------------------------------------
1 | #ifndef __UTILS_HEADER__
2 | #define __UTILS_HEADER__
3 | #include
4 | #include
5 | #include
6 |
7 | void hexdump(const unsigned char *buf, uint32_t);
8 | unsigned char prvucMBBIN2CHAR(unsigned char ucByte);
9 | void Delay(unsigned int i);
10 | unsigned short usMBCRC16( unsigned char * pucFrame, unsigned short usLen );
11 | void mDelay(uint32_t i);
12 | void uDelay(uint32_t i);
13 | #endif
14 |
--------------------------------------------------------------------------------
/STM32_ESP8266/object/cjson.__i:
--------------------------------------------------------------------------------
1 | -c --cpu Cortex-M3 -D__MICROLIB -g -O0 --apcs=interwork -I..\Hal -I..\Utils -I..\object -I..\Project -I..\User -I..\Libraries\CMSIS -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\STM32F10x_StdPeriph_Driver\src -I..\Libraries\CMSIS\startup\arm -I..\Devices -I..\Network\esp8266 -I C:\Keil\ARM\RV31\Inc -I C:\Keil\ARM\CMSIS\Include -I C:\Keil\ARM\Inc\ST\STM32F10x -DSTM32F10X_HD -DUSE_STDPERIPH_DRIVER -o "..\object\cjson.o" --omf_browse "..\object\cjson.crf" --depend "..\object\cjson.d" "..\Utils\cJSON.c"
--------------------------------------------------------------------------------
/STM32_ESP8266/object/cjson.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/cjson.crf
--------------------------------------------------------------------------------
/STM32_ESP8266/object/cjson.d:
--------------------------------------------------------------------------------
1 | ..\object\cjson.o: ..\Utils\cJSON.c
2 | ..\object\cjson.o: C:\Keil\ARM\RV31\Inc\string.h
3 | ..\object\cjson.o: C:\Keil\ARM\RV31\Inc\stdio.h
4 | ..\object\cjson.o: C:\Keil\ARM\RV31\Inc\math.h
5 | ..\object\cjson.o: C:\Keil\ARM\RV31\Inc\stdlib.h
6 | ..\object\cjson.o: C:\Keil\ARM\RV31\Inc\float.h
7 | ..\object\cjson.o: C:\Keil\ARM\RV31\Inc\limits.h
8 | ..\object\cjson.o: C:\Keil\ARM\RV31\Inc\ctype.h
9 | ..\object\cjson.o: ..\Utils\cJSON.h
10 |
--------------------------------------------------------------------------------
/STM32_ESP8266/object/cjson.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/cjson.o
--------------------------------------------------------------------------------
/STM32_ESP8266/object/core_cm3.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/core_cm3.crf
--------------------------------------------------------------------------------
/STM32_ESP8266/object/core_cm3.d:
--------------------------------------------------------------------------------
1 | ..\object\core_cm3.o: ..\Libraries\CMSIS\core_cm3.c
2 | ..\object\core_cm3.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
3 |
--------------------------------------------------------------------------------
/STM32_ESP8266/object/core_cm3.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/core_cm3.o
--------------------------------------------------------------------------------
/STM32_ESP8266/object/edpdemo.__i:
--------------------------------------------------------------------------------
1 | -c --cpu Cortex-M3 -D__MICROLIB -g -O0 --apcs=interwork -I..\Hal -I..\Utils -I..\Protocol\edp -I..\object -I..\Project -I..\User -I..\Libraries\CMSIS -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\STM32F10x_StdPeriph_Driver\src -I..\Libraries\CMSIS\startup\arm -I..\EDP -I C:\Keil\ARM\RV31\Inc -I C:\Keil\ARM\CMSIS\Include -I C:\Keil\ARM\Inc\ST\STM32F10x -DSTM32F10X_HD -DUSE_STDPERIPH_DRIVER -o "..\object\edpdemo.o" --omf_browse "..\object\edpdemo.crf" --depend "..\object\edpdemo.d" "..\Protocol\edp\EdpDemo.c"
--------------------------------------------------------------------------------
/STM32_ESP8266/object/edpdemo.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/edpdemo.crf
--------------------------------------------------------------------------------
/STM32_ESP8266/object/edpdemo.d:
--------------------------------------------------------------------------------
1 | ..\object\edpdemo.o: ..\Protocol\edp\EdpDemo.c
2 | ..\object\edpdemo.o: C:\Keil\ARM\RV31\Inc\stdio.h
3 | ..\object\edpdemo.o: C:\Keil\ARM\RV31\Inc\stdlib.h
4 | ..\object\edpdemo.o: C:\Keil\ARM\RV31\Inc\string.h
5 | ..\object\edpdemo.o: ..\Protocol\edp\EdpKit.h
6 | ..\object\edpdemo.o: ..\Protocol\edp\Common.h
7 | ..\object\edpdemo.o: ..\Utils\cJSON.h
8 | ..\object\edpdemo.o: C:\Keil\ARM\RV31\Inc\time.h
9 | ..\object\edpdemo.o: C:\Keil\ARM\RV31\Inc\assert.h
10 | ..\object\edpdemo.o: ..\Libraries\CMSIS\stm32f10x.h
11 | ..\object\edpdemo.o: ..\Libraries\CMSIS\core_cm3.h
12 | ..\object\edpdemo.o: C:\Keil\ARM\RV31\Inc\stdint.h
13 | ..\object\edpdemo.o: ..\Libraries\CMSIS\system_stm32f10x.h
14 | ..\object\edpdemo.o: ..\User\stm32f10x_conf.h
15 | ..\object\edpdemo.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h
16 | ..\object\edpdemo.o: ..\Libraries\CMSIS\stm32f10x.h
17 | ..\object\edpdemo.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_bkp.h
18 | ..\object\edpdemo.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h
19 | ..\object\edpdemo.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_cec.h
20 | ..\object\edpdemo.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_crc.h
21 | ..\object\edpdemo.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dac.h
22 | ..\object\edpdemo.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dbgmcu.h
23 | ..\object\edpdemo.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dma.h
24 | ..\object\edpdemo.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
25 | ..\object\edpdemo.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h
26 | ..\object\edpdemo.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h
27 | ..\object\edpdemo.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
28 | ..\object\edpdemo.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_i2c.h
29 | ..\object\edpdemo.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h
30 | ..\object\edpdemo.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_pwr.h
31 | ..\object\edpdemo.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
32 | ..\object\edpdemo.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rtc.h
33 | ..\object\edpdemo.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_sdio.h
34 | ..\object\edpdemo.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_spi.h
35 | ..\object\edpdemo.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h
36 | ..\object\edpdemo.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
37 | ..\object\edpdemo.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h
38 | ..\object\edpdemo.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
39 | ..\object\edpdemo.o: ..\Hal\usart2.h
40 | ..\object\edpdemo.o: ..\Utils\utils.h
41 | ..\object\edpdemo.o: ..\Hal\../Network/esp8266/esp8266.h
42 | ..\object\edpdemo.o: ..\Hal\usart1.h
43 | ..\object\edpdemo.o: ..\Hal\gpio.h
44 |
--------------------------------------------------------------------------------
/STM32_ESP8266/object/edpdemo.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/edpdemo.o
--------------------------------------------------------------------------------
/STM32_ESP8266/object/edpkit.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/edpkit.crf
--------------------------------------------------------------------------------
/STM32_ESP8266/object/edpkit.d:
--------------------------------------------------------------------------------
1 | ..\object\edpkit.o: ..\Protocol\edp\EdpKit.c
2 | ..\object\edpkit.o: C:\Keil\ARM\RV31\Inc\stdlib.h
3 | ..\object\edpkit.o: C:\Keil\ARM\RV31\Inc\stdio.h
4 | ..\object\edpkit.o: C:\Keil\ARM\RV31\Inc\string.h
5 | ..\object\edpkit.o: C:\Keil\ARM\RV31\Inc\time.h
6 | ..\object\edpkit.o: ..\Protocol\edp\EdpKit.h
7 | ..\object\edpkit.o: ..\Protocol\edp\Common.h
8 | ..\object\edpkit.o: ..\Utils\cJSON.h
9 | ..\object\edpkit.o: C:\Keil\ARM\RV31\Inc\assert.h
10 |
--------------------------------------------------------------------------------
/STM32_ESP8266/object/edpkit.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/edpkit.o
--------------------------------------------------------------------------------
/STM32_ESP8266/object/esp8266.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/esp8266.crf
--------------------------------------------------------------------------------
/STM32_ESP8266/object/esp8266.d:
--------------------------------------------------------------------------------
1 | ..\object\esp8266.o: ..\Network\esp8266\esp8266.c
2 | ..\object\esp8266.o: ..\Network\esp8266\esp8266.h
3 | ..\object\esp8266.o: ..\Hal\usart2.h
4 | ..\object\esp8266.o: ..\Libraries\CMSIS\stm32f10x.h
5 | ..\object\esp8266.o: ..\Libraries\CMSIS\core_cm3.h
6 | ..\object\esp8266.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
7 | ..\object\esp8266.o: ..\Libraries\CMSIS\system_stm32f10x.h
8 | ..\object\esp8266.o: ..\User\stm32f10x_conf.h
9 | ..\object\esp8266.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h
10 | ..\object\esp8266.o: ..\Libraries\CMSIS\stm32f10x.h
11 | ..\object\esp8266.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_bkp.h
12 | ..\object\esp8266.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h
13 | ..\object\esp8266.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_cec.h
14 | ..\object\esp8266.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_crc.h
15 | ..\object\esp8266.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dac.h
16 | ..\object\esp8266.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dbgmcu.h
17 | ..\object\esp8266.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dma.h
18 | ..\object\esp8266.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
19 | ..\object\esp8266.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h
20 | ..\object\esp8266.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h
21 | ..\object\esp8266.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
22 | ..\object\esp8266.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_i2c.h
23 | ..\object\esp8266.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h
24 | ..\object\esp8266.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_pwr.h
25 | ..\object\esp8266.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
26 | ..\object\esp8266.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rtc.h
27 | ..\object\esp8266.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_sdio.h
28 | ..\object\esp8266.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_spi.h
29 | ..\object\esp8266.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h
30 | ..\object\esp8266.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
31 | ..\object\esp8266.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h
32 | ..\object\esp8266.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
33 | ..\object\esp8266.o: ..\Utils\utils.h
34 | ..\object\esp8266.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h
35 | ..\object\esp8266.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\string.h
36 |
--------------------------------------------------------------------------------
/STM32_ESP8266/object/esp8266.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/esp8266.o
--------------------------------------------------------------------------------
/STM32_ESP8266/object/gpio.__i:
--------------------------------------------------------------------------------
1 | -c --cpu Cortex-M3 -D__MICROLIB -g -O0 --apcs=interwork -I..\Hal -I..\Utils -I..\Protocol\edp -I..\object -I..\Project -I..\User -I..\Libraries\CMSIS -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\STM32F10x_StdPeriph_Driver\src -I..\Libraries\CMSIS\startup\arm -I..\EDP -I C:\Keil\ARM\RV31\Inc -I C:\Keil\ARM\CMSIS\Include -I C:\Keil\ARM\Inc\ST\STM32F10x -DSTM32F10X_HD -DUSE_STDPERIPH_DRIVER -o "..\object\gpio.o" --omf_browse "..\object\gpio.crf" --depend "..\object\gpio.d" "..\Hal\gpio.c"
--------------------------------------------------------------------------------
/STM32_ESP8266/object/gpio.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/gpio.crf
--------------------------------------------------------------------------------
/STM32_ESP8266/object/gpio.d:
--------------------------------------------------------------------------------
1 | ..\object\gpio.o: ..\Hal\gpio.c
2 | ..\object\gpio.o: ..\Hal\gpio.h
3 | ..\object\gpio.o: ..\Libraries\CMSIS\stm32f10x.h
4 | ..\object\gpio.o: ..\Libraries\CMSIS\core_cm3.h
5 | ..\object\gpio.o: C:\Keil\ARM\RV31\Inc\stdint.h
6 | ..\object\gpio.o: ..\Libraries\CMSIS\system_stm32f10x.h
7 | ..\object\gpio.o: ..\User\stm32f10x_conf.h
8 | ..\object\gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h
9 | ..\object\gpio.o: ..\Libraries\CMSIS\stm32f10x.h
10 | ..\object\gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_bkp.h
11 | ..\object\gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h
12 | ..\object\gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_cec.h
13 | ..\object\gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_crc.h
14 | ..\object\gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dac.h
15 | ..\object\gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dbgmcu.h
16 | ..\object\gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dma.h
17 | ..\object\gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
18 | ..\object\gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h
19 | ..\object\gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h
20 | ..\object\gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
21 | ..\object\gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_i2c.h
22 | ..\object\gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h
23 | ..\object\gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_pwr.h
24 | ..\object\gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
25 | ..\object\gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rtc.h
26 | ..\object\gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_sdio.h
27 | ..\object\gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_spi.h
28 | ..\object\gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h
29 | ..\object\gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
30 | ..\object\gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h
31 | ..\object\gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
32 | ..\object\gpio.o: C:\Keil\ARM\RV31\Inc\stdio.h
33 | ..\object\gpio.o: C:\Keil\ARM\RV31\Inc\stdlib.h
34 | ..\object\gpio.o: C:\Keil\ARM\RV31\Inc\string.h
35 | ..\object\gpio.o: ..\Hal\usart1.h
36 | ..\object\gpio.o: ..\Hal\usart2.h
37 | ..\object\gpio.o: ..\Protocol\edp\EdpKit.h
38 | ..\object\gpio.o: ..\Protocol\edp\Common.h
39 | ..\object\gpio.o: ..\Utils\cJSON.h
40 | ..\object\gpio.o: C:\Keil\ARM\RV31\Inc\time.h
41 | ..\object\gpio.o: C:\Keil\ARM\RV31\Inc\assert.h
42 |
--------------------------------------------------------------------------------
/STM32_ESP8266/object/gpio.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/gpio.o
--------------------------------------------------------------------------------
/STM32_ESP8266/object/hal_i2c.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/hal_i2c.crf
--------------------------------------------------------------------------------
/STM32_ESP8266/object/hal_i2c.d:
--------------------------------------------------------------------------------
1 | ..\object\hal_i2c.o: ..\Devices\hal_i2c.c
2 | ..\object\hal_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_i2c.h
3 | ..\object\hal_i2c.o: ..\Libraries\CMSIS\stm32f10x.h
4 | ..\object\hal_i2c.o: ..\Libraries\CMSIS\core_cm3.h
5 | ..\object\hal_i2c.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | ..\object\hal_i2c.o: ..\Libraries\CMSIS\system_stm32f10x.h
7 | ..\object\hal_i2c.o: ..\User\stm32f10x_conf.h
8 | ..\object\hal_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h
9 | ..\object\hal_i2c.o: ..\Libraries\CMSIS\stm32f10x.h
10 | ..\object\hal_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_bkp.h
11 | ..\object\hal_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h
12 | ..\object\hal_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_cec.h
13 | ..\object\hal_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_crc.h
14 | ..\object\hal_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dac.h
15 | ..\object\hal_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dbgmcu.h
16 | ..\object\hal_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dma.h
17 | ..\object\hal_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
18 | ..\object\hal_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h
19 | ..\object\hal_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h
20 | ..\object\hal_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
21 | ..\object\hal_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_i2c.h
22 | ..\object\hal_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h
23 | ..\object\hal_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_pwr.h
24 | ..\object\hal_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
25 | ..\object\hal_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rtc.h
26 | ..\object\hal_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_sdio.h
27 | ..\object\hal_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_spi.h
28 | ..\object\hal_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h
29 | ..\object\hal_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
30 | ..\object\hal_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h
31 | ..\object\hal_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
32 | ..\object\hal_i2c.o: ..\Devices\hal_i2c.h
33 | ..\object\hal_i2c.o: ..\Utils\utils.h
34 | ..\object\hal_i2c.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h
35 | ..\object\hal_i2c.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\string.h
36 | ..\object\hal_i2c.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h
37 |
--------------------------------------------------------------------------------
/STM32_ESP8266/object/hal_i2c.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/hal_i2c.o
--------------------------------------------------------------------------------
/STM32_ESP8266/object/http_demo.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/http_demo.crf
--------------------------------------------------------------------------------
/STM32_ESP8266/object/http_demo.d:
--------------------------------------------------------------------------------
1 | ..\object\http_demo.o: ..\Protocol\http\HTTP_Demo.c
2 | ..\object\http_demo.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\string.h
3 | ..\object\http_demo.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h
4 | ..\object\http_demo.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
5 |
--------------------------------------------------------------------------------
/STM32_ESP8266/object/http_demo.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/http_demo.o
--------------------------------------------------------------------------------
/STM32_ESP8266/object/led.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/led.crf
--------------------------------------------------------------------------------
/STM32_ESP8266/object/led.d:
--------------------------------------------------------------------------------
1 | ..\object\led.o: ..\Hal\led.c
2 |
--------------------------------------------------------------------------------
/STM32_ESP8266/object/led.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/led.o
--------------------------------------------------------------------------------
/STM32_ESP8266/object/main.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/main.crf
--------------------------------------------------------------------------------
/STM32_ESP8266/object/main.d:
--------------------------------------------------------------------------------
1 | ..\object\main.o: ..\User\main.c
2 | ..\object\main.o: ..\Libraries\CMSIS\stm32f10x.h
3 | ..\object\main.o: ..\Libraries\CMSIS\core_cm3.h
4 | ..\object\main.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
5 | ..\object\main.o: ..\Libraries\CMSIS\system_stm32f10x.h
6 | ..\object\main.o: ..\User\stm32f10x_conf.h
7 | ..\object\main.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h
8 | ..\object\main.o: ..\Libraries\CMSIS\stm32f10x.h
9 | ..\object\main.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_bkp.h
10 | ..\object\main.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h
11 | ..\object\main.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_cec.h
12 | ..\object\main.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_crc.h
13 | ..\object\main.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dac.h
14 | ..\object\main.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dbgmcu.h
15 | ..\object\main.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dma.h
16 | ..\object\main.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
17 | ..\object\main.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h
18 | ..\object\main.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h
19 | ..\object\main.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
20 | ..\object\main.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_i2c.h
21 | ..\object\main.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h
22 | ..\object\main.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_pwr.h
23 | ..\object\main.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
24 | ..\object\main.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rtc.h
25 | ..\object\main.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_sdio.h
26 | ..\object\main.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_spi.h
27 | ..\object\main.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h
28 | ..\object\main.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
29 | ..\object\main.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h
30 | ..\object\main.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
31 | ..\object\main.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h
32 | ..\object\main.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h
33 | ..\object\main.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\string.h
34 | ..\object\main.o: ..\Hal\usart1.h
35 | ..\object\main.o: ..\Hal\usart2.h
36 | ..\object\main.o: ..\Utils\utils.h
37 | ..\object\main.o: ..\Devices\sht20.h
38 | ..\object\main.o: ..\Devices\hal_i2c.h
39 | ..\object\main.o: ..\Network\esp8266\esp8266.h
40 |
--------------------------------------------------------------------------------
/STM32_ESP8266/object/main.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/main.o
--------------------------------------------------------------------------------
/STM32_ESP8266/object/misc.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/misc.crf
--------------------------------------------------------------------------------
/STM32_ESP8266/object/misc.d:
--------------------------------------------------------------------------------
1 | ..\object\misc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\src\misc.c
2 | ..\object\misc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
3 | ..\object\misc.o: ..\Libraries\CMSIS\stm32f10x.h
4 | ..\object\misc.o: ..\Libraries\CMSIS\core_cm3.h
5 | ..\object\misc.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | ..\object\misc.o: ..\Libraries\CMSIS\system_stm32f10x.h
7 | ..\object\misc.o: ..\User\stm32f10x_conf.h
8 | ..\object\misc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h
9 | ..\object\misc.o: ..\Libraries\CMSIS\stm32f10x.h
10 | ..\object\misc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_bkp.h
11 | ..\object\misc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h
12 | ..\object\misc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_cec.h
13 | ..\object\misc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_crc.h
14 | ..\object\misc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dac.h
15 | ..\object\misc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dbgmcu.h
16 | ..\object\misc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dma.h
17 | ..\object\misc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
18 | ..\object\misc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h
19 | ..\object\misc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h
20 | ..\object\misc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
21 | ..\object\misc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_i2c.h
22 | ..\object\misc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h
23 | ..\object\misc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_pwr.h
24 | ..\object\misc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
25 | ..\object\misc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rtc.h
26 | ..\object\misc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_sdio.h
27 | ..\object\misc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_spi.h
28 | ..\object\misc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h
29 | ..\object\misc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
30 | ..\object\misc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h
31 | ..\object\misc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
32 |
--------------------------------------------------------------------------------
/STM32_ESP8266/object/misc.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/misc.o
--------------------------------------------------------------------------------
/STM32_ESP8266/object/onenetdemo.axf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/onenetdemo.axf
--------------------------------------------------------------------------------
/STM32_ESP8266/object/onenetdemo.build_log.htm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/onenetdemo.build_log.htm
--------------------------------------------------------------------------------
/STM32_ESP8266/object/onenetdemo.lnp:
--------------------------------------------------------------------------------
1 | --cpu Cortex-M3
2 | "..\object\core_cm3.o"
3 | "..\object\system_stm32f10x.o"
4 | "..\object\startup_stm32f10x_md.o"
5 | "..\object\main.o"
6 | "..\object\stm32f10x_it.o"
7 | "..\object\misc.o"
8 | "..\object\stm32f10x_exti.o"
9 | "..\object\stm32f10x_flash.o"
10 | "..\object\stm32f10x_gpio.o"
11 | "..\object\stm32f10x_i2c.o"
12 | "..\object\stm32f10x_rcc.o"
13 | "..\object\stm32f10x_usart.o"
14 | "..\object\hal_i2c.o"
15 | "..\object\sht20.o"
16 | "..\object\usart1.o"
17 | "..\object\usart2.o"
18 | "..\object\http_demo.o"
19 | "..\object\utils.o"
20 | "..\object\esp8266.o"
21 | --library_type=microlib --strict --scatter "..\object\onenetdemo.sct"
22 | --summary_stderr --info summarysizes --map --xref --callgraph --symbols
23 | --info sizes --info totals --info unused --info veneers
24 | --list ".\onenetdemo.map" -o ..\object\onenetdemo.axf
--------------------------------------------------------------------------------
/STM32_ESP8266/object/onenetdemo.plg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/onenetdemo.plg
--------------------------------------------------------------------------------
/STM32_ESP8266/object/onenetdemo.sct:
--------------------------------------------------------------------------------
1 | ; *************************************************************
2 | ; *** Scatter-Loading Description File generated by uVision ***
3 | ; *************************************************************
4 |
5 | LR_IROM1 0x08000000 0x00080000 { ; load region size_region
6 | ER_IROM1 0x08000000 0x00080000 { ; load address = execution address
7 | *.o (RESET, +First)
8 | *(InRoot$$Sections)
9 | .ANY (+RO)
10 | }
11 | RW_IRAM1 0x20000000 0x00010000 { ; RW data
12 | .ANY (+RW +ZI)
13 | }
14 | }
15 |
16 |
--------------------------------------------------------------------------------
/STM32_ESP8266/object/onenetdemo.tra:
--------------------------------------------------------------------------------
1 | *** Creating Trace Output File '..\object\onenetdemo.tra' Ok.
2 | ### Preparing for ADS-LD.
3 | ### Creating ADS-LD Command Line
4 | ### List of Objects: adding '"..\object\core_cm3.o"'
5 | ### List of Objects: adding '"..\object\system_stm32f10x.o"'
6 | ### List of Objects: adding '"..\object\startup_stm32f10x_md.o"'
7 | ### List of Objects: adding '"..\object\main.o"'
8 | ### List of Objects: adding '"..\object\stm32f10x_it.o"'
9 | ### List of Objects: adding '"..\object\misc.o"'
10 | ### List of Objects: adding '"..\object\stm32f10x_exti.o"'
11 | ### List of Objects: adding '"..\object\stm32f10x_flash.o"'
12 | ### List of Objects: adding '"..\object\stm32f10x_gpio.o"'
13 | ### List of Objects: adding '"..\object\stm32f10x_i2c.o"'
14 | ### List of Objects: adding '"..\object\stm32f10x_rcc.o"'
15 | ### List of Objects: adding '"..\object\stm32f10x_usart.o"'
16 | ### List of Objects: adding '"..\object\hal_i2c.o"'
17 | ### List of Objects: adding '"..\object\sht20.o"'
18 | ### List of Objects: adding '"..\object\usart1.o"'
19 | ### List of Objects: adding '"..\object\usart2.o"'
20 | ### List of Objects: adding '"..\object\http_demo.o"'
21 | ### List of Objects: adding '"..\object\utils.o"'
22 | ### List of Objects: adding '"..\object\esp8266.o"'
23 | ### ADS-LD Command completed:
24 | --cpu Cortex-M3 "..\object\core_cm3.o" "..\object\system_stm32f10x.o" "..\object\startup_stm32f10x_md.o" "..\object\main.o" "..\object\stm32f10x_it.o" "..\object\misc.o" "..\object\stm32f10x_exti.o" "..\object\stm32f10x_flash.o" "..\object\stm32f10x_gpio.o" "..\object\stm32f10x_i2c.o" "..\object\stm32f10x_rcc.o" "..\object\stm32f10x_usart.o" "..\object\hal_i2c.o" "..\object\sht20.o" "..\object\usart1.o" "..\object\usart2.o" "..\object\http_demo.o" "..\object\utils.o" "..\object\esp8266.o"
25 | --library_type=microlib --strict --scatter "..\object\onenetdemo.sct"
26 | --summary_stderr --info summarysizes --map --xref --callgraph --symbols
27 | --info sizes --info totals --info unused --info veneers
28 | --list ".\onenetdemo.map" -o ..\object\onenetdemo.axf### Preparing Environment (PrepEnvAds)
29 | ### ADS-LD Output File: '..\object\onenetdemo.axf'
30 | ### ADS-LD Command File: '..\object\onenetdemo.lnp'
31 | ### Checking for dirty Components...
32 | ### Creating CmdFile '..\object\onenetdemo.lnp', Handle=0x0000039C
33 | ### Writing '.lnp' file
34 | ### ADS-LD Command file '..\object\onenetdemo.lnp' is ready.
35 | ### ADS-LD: About to start ADS-LD Thread.
36 | ### ADS-LD: executed with 0 errors
37 | ### Updating obj list
38 | ### LDADS_file() completed.
39 |
--------------------------------------------------------------------------------
/STM32_ESP8266/object/onenetdemo_sct.Bak:
--------------------------------------------------------------------------------
1 | ; *************************************************************
2 | ; *** Scatter-Loading Description File generated by uVision ***
3 | ; *************************************************************
4 |
5 | LR_IROM1 0x08000000 0x00080000 { ; load region size_region
6 | ER_IROM1 0x08000000 0x00080000 { ; load address = execution address
7 | *.o (RESET, +First)
8 | *(InRoot$$Sections)
9 | .ANY (+RO)
10 | }
11 | RW_IRAM1 0x20000000 0x00010000 { ; RW data
12 | .ANY (+RW +ZI)
13 | }
14 | }
15 |
16 |
--------------------------------------------------------------------------------
/STM32_ESP8266/object/ringbuffer.__i:
--------------------------------------------------------------------------------
1 | -c --cpu Cortex-M3 -D__MICROLIB -g -O0 --apcs=interwork -I..\Hal -I..\Utils -I..\Protocol\edp -I..\object -I..\Project -I..\User -I..\Libraries\CMSIS -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\STM32F10x_StdPeriph_Driver\src -I..\Libraries\CMSIS\startup\arm -I..\EDP
2 | -I C:\Keil\ARM\RV31\INC
3 | -I C:\Keil\ARM\CMSIS\Include
4 | -I C:\Keil\ARM\Inc\ST\STM32F10x
5 | -DSTM32F10X_HD -DUSE_STDPERIPH_DRIVER -o "..\object\ringbuffer.o" --omf_browse "..\object\ringbuffer.crf" --depend "..\object\ringbuffer.d" "..\Utils\ringbuffer.c"
--------------------------------------------------------------------------------
/STM32_ESP8266/object/ringbuffer.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/ringbuffer.crf
--------------------------------------------------------------------------------
/STM32_ESP8266/object/ringbuffer.d:
--------------------------------------------------------------------------------
1 | ..\object\ringbuffer.o: ..\Utils\ringbuffer.c
2 | ..\object\ringbuffer.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
3 | ..\object\ringbuffer.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
4 | ..\object\ringbuffer.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h
5 | ..\object\ringbuffer.o: ..\Utils\ringbuffer.h
6 |
--------------------------------------------------------------------------------
/STM32_ESP8266/object/ringbuffer.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/ringbuffer.o
--------------------------------------------------------------------------------
/STM32_ESP8266/object/sht20.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/sht20.crf
--------------------------------------------------------------------------------
/STM32_ESP8266/object/sht20.d:
--------------------------------------------------------------------------------
1 | ..\object\sht20.o: ..\Devices\sht20.c
2 | ..\object\sht20.o: ..\Libraries\CMSIS\stm32f10x.h
3 | ..\object\sht20.o: ..\Libraries\CMSIS\core_cm3.h
4 | ..\object\sht20.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
5 | ..\object\sht20.o: ..\Libraries\CMSIS\system_stm32f10x.h
6 | ..\object\sht20.o: ..\User\stm32f10x_conf.h
7 | ..\object\sht20.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h
8 | ..\object\sht20.o: ..\Libraries\CMSIS\stm32f10x.h
9 | ..\object\sht20.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_bkp.h
10 | ..\object\sht20.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h
11 | ..\object\sht20.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_cec.h
12 | ..\object\sht20.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_crc.h
13 | ..\object\sht20.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dac.h
14 | ..\object\sht20.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dbgmcu.h
15 | ..\object\sht20.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dma.h
16 | ..\object\sht20.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
17 | ..\object\sht20.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h
18 | ..\object\sht20.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h
19 | ..\object\sht20.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
20 | ..\object\sht20.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_i2c.h
21 | ..\object\sht20.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h
22 | ..\object\sht20.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_pwr.h
23 | ..\object\sht20.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
24 | ..\object\sht20.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rtc.h
25 | ..\object\sht20.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_sdio.h
26 | ..\object\sht20.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_spi.h
27 | ..\object\sht20.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h
28 | ..\object\sht20.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
29 | ..\object\sht20.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h
30 | ..\object\sht20.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
31 | ..\object\sht20.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h
32 | ..\object\sht20.o: ..\Devices\hal_i2c.h
33 | ..\object\sht20.o: ..\Devices\sht20.h
34 | ..\object\sht20.o: ..\Utils\utils.h
35 | ..\object\sht20.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h
36 | ..\object\sht20.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\string.h
37 |
--------------------------------------------------------------------------------
/STM32_ESP8266/object/sht20.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/sht20.o
--------------------------------------------------------------------------------
/STM32_ESP8266/object/startup_stm32f10x_md.d:
--------------------------------------------------------------------------------
1 | ..\object\startup_stm32f10x_md.o: ..\Libraries\CMSIS\startup\arm\startup_stm32f10x_md.s
2 |
--------------------------------------------------------------------------------
/STM32_ESP8266/object/startup_stm32f10x_md.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/startup_stm32f10x_md.o
--------------------------------------------------------------------------------
/STM32_ESP8266/object/stm32f10x_exti.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/stm32f10x_exti.crf
--------------------------------------------------------------------------------
/STM32_ESP8266/object/stm32f10x_exti.d:
--------------------------------------------------------------------------------
1 | ..\object\stm32f10x_exti.o: ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_exti.c
2 | ..\object\stm32f10x_exti.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
3 | ..\object\stm32f10x_exti.o: ..\Libraries\CMSIS\stm32f10x.h
4 | ..\object\stm32f10x_exti.o: ..\Libraries\CMSIS\core_cm3.h
5 | ..\object\stm32f10x_exti.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | ..\object\stm32f10x_exti.o: ..\Libraries\CMSIS\system_stm32f10x.h
7 | ..\object\stm32f10x_exti.o: ..\User\stm32f10x_conf.h
8 | ..\object\stm32f10x_exti.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h
9 | ..\object\stm32f10x_exti.o: ..\Libraries\CMSIS\stm32f10x.h
10 | ..\object\stm32f10x_exti.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_bkp.h
11 | ..\object\stm32f10x_exti.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h
12 | ..\object\stm32f10x_exti.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_cec.h
13 | ..\object\stm32f10x_exti.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_crc.h
14 | ..\object\stm32f10x_exti.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dac.h
15 | ..\object\stm32f10x_exti.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dbgmcu.h
16 | ..\object\stm32f10x_exti.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dma.h
17 | ..\object\stm32f10x_exti.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
18 | ..\object\stm32f10x_exti.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h
19 | ..\object\stm32f10x_exti.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h
20 | ..\object\stm32f10x_exti.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
21 | ..\object\stm32f10x_exti.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_i2c.h
22 | ..\object\stm32f10x_exti.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h
23 | ..\object\stm32f10x_exti.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_pwr.h
24 | ..\object\stm32f10x_exti.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
25 | ..\object\stm32f10x_exti.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rtc.h
26 | ..\object\stm32f10x_exti.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_sdio.h
27 | ..\object\stm32f10x_exti.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_spi.h
28 | ..\object\stm32f10x_exti.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h
29 | ..\object\stm32f10x_exti.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
30 | ..\object\stm32f10x_exti.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h
31 | ..\object\stm32f10x_exti.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
32 |
--------------------------------------------------------------------------------
/STM32_ESP8266/object/stm32f10x_exti.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/stm32f10x_exti.o
--------------------------------------------------------------------------------
/STM32_ESP8266/object/stm32f10x_flash.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/stm32f10x_flash.crf
--------------------------------------------------------------------------------
/STM32_ESP8266/object/stm32f10x_flash.d:
--------------------------------------------------------------------------------
1 | ..\object\stm32f10x_flash.o: ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_flash.c
2 | ..\object\stm32f10x_flash.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h
3 | ..\object\stm32f10x_flash.o: ..\Libraries\CMSIS\stm32f10x.h
4 | ..\object\stm32f10x_flash.o: ..\Libraries\CMSIS\core_cm3.h
5 | ..\object\stm32f10x_flash.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | ..\object\stm32f10x_flash.o: ..\Libraries\CMSIS\system_stm32f10x.h
7 | ..\object\stm32f10x_flash.o: ..\User\stm32f10x_conf.h
8 | ..\object\stm32f10x_flash.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h
9 | ..\object\stm32f10x_flash.o: ..\Libraries\CMSIS\stm32f10x.h
10 | ..\object\stm32f10x_flash.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_bkp.h
11 | ..\object\stm32f10x_flash.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h
12 | ..\object\stm32f10x_flash.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_cec.h
13 | ..\object\stm32f10x_flash.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_crc.h
14 | ..\object\stm32f10x_flash.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dac.h
15 | ..\object\stm32f10x_flash.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dbgmcu.h
16 | ..\object\stm32f10x_flash.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dma.h
17 | ..\object\stm32f10x_flash.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
18 | ..\object\stm32f10x_flash.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h
19 | ..\object\stm32f10x_flash.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h
20 | ..\object\stm32f10x_flash.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
21 | ..\object\stm32f10x_flash.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_i2c.h
22 | ..\object\stm32f10x_flash.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h
23 | ..\object\stm32f10x_flash.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_pwr.h
24 | ..\object\stm32f10x_flash.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
25 | ..\object\stm32f10x_flash.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rtc.h
26 | ..\object\stm32f10x_flash.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_sdio.h
27 | ..\object\stm32f10x_flash.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_spi.h
28 | ..\object\stm32f10x_flash.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h
29 | ..\object\stm32f10x_flash.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
30 | ..\object\stm32f10x_flash.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h
31 | ..\object\stm32f10x_flash.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
32 |
--------------------------------------------------------------------------------
/STM32_ESP8266/object/stm32f10x_flash.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/stm32f10x_flash.o
--------------------------------------------------------------------------------
/STM32_ESP8266/object/stm32f10x_gpio.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/stm32f10x_gpio.crf
--------------------------------------------------------------------------------
/STM32_ESP8266/object/stm32f10x_gpio.d:
--------------------------------------------------------------------------------
1 | ..\object\stm32f10x_gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_gpio.c
2 | ..\object\stm32f10x_gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
3 | ..\object\stm32f10x_gpio.o: ..\Libraries\CMSIS\stm32f10x.h
4 | ..\object\stm32f10x_gpio.o: ..\Libraries\CMSIS\core_cm3.h
5 | ..\object\stm32f10x_gpio.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | ..\object\stm32f10x_gpio.o: ..\Libraries\CMSIS\system_stm32f10x.h
7 | ..\object\stm32f10x_gpio.o: ..\User\stm32f10x_conf.h
8 | ..\object\stm32f10x_gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h
9 | ..\object\stm32f10x_gpio.o: ..\Libraries\CMSIS\stm32f10x.h
10 | ..\object\stm32f10x_gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_bkp.h
11 | ..\object\stm32f10x_gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h
12 | ..\object\stm32f10x_gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_cec.h
13 | ..\object\stm32f10x_gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_crc.h
14 | ..\object\stm32f10x_gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dac.h
15 | ..\object\stm32f10x_gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dbgmcu.h
16 | ..\object\stm32f10x_gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dma.h
17 | ..\object\stm32f10x_gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
18 | ..\object\stm32f10x_gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h
19 | ..\object\stm32f10x_gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h
20 | ..\object\stm32f10x_gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
21 | ..\object\stm32f10x_gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_i2c.h
22 | ..\object\stm32f10x_gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h
23 | ..\object\stm32f10x_gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_pwr.h
24 | ..\object\stm32f10x_gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
25 | ..\object\stm32f10x_gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rtc.h
26 | ..\object\stm32f10x_gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_sdio.h
27 | ..\object\stm32f10x_gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_spi.h
28 | ..\object\stm32f10x_gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h
29 | ..\object\stm32f10x_gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
30 | ..\object\stm32f10x_gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h
31 | ..\object\stm32f10x_gpio.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
32 |
--------------------------------------------------------------------------------
/STM32_ESP8266/object/stm32f10x_gpio.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/stm32f10x_gpio.o
--------------------------------------------------------------------------------
/STM32_ESP8266/object/stm32f10x_i2c.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/stm32f10x_i2c.crf
--------------------------------------------------------------------------------
/STM32_ESP8266/object/stm32f10x_i2c.d:
--------------------------------------------------------------------------------
1 | ..\object\stm32f10x_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_i2c.c
2 | ..\object\stm32f10x_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_i2c.h
3 | ..\object\stm32f10x_i2c.o: ..\Libraries\CMSIS\stm32f10x.h
4 | ..\object\stm32f10x_i2c.o: ..\Libraries\CMSIS\core_cm3.h
5 | ..\object\stm32f10x_i2c.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | ..\object\stm32f10x_i2c.o: ..\Libraries\CMSIS\system_stm32f10x.h
7 | ..\object\stm32f10x_i2c.o: ..\User\stm32f10x_conf.h
8 | ..\object\stm32f10x_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h
9 | ..\object\stm32f10x_i2c.o: ..\Libraries\CMSIS\stm32f10x.h
10 | ..\object\stm32f10x_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_bkp.h
11 | ..\object\stm32f10x_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h
12 | ..\object\stm32f10x_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_cec.h
13 | ..\object\stm32f10x_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_crc.h
14 | ..\object\stm32f10x_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dac.h
15 | ..\object\stm32f10x_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dbgmcu.h
16 | ..\object\stm32f10x_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dma.h
17 | ..\object\stm32f10x_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
18 | ..\object\stm32f10x_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h
19 | ..\object\stm32f10x_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h
20 | ..\object\stm32f10x_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
21 | ..\object\stm32f10x_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_i2c.h
22 | ..\object\stm32f10x_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h
23 | ..\object\stm32f10x_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_pwr.h
24 | ..\object\stm32f10x_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
25 | ..\object\stm32f10x_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rtc.h
26 | ..\object\stm32f10x_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_sdio.h
27 | ..\object\stm32f10x_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_spi.h
28 | ..\object\stm32f10x_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h
29 | ..\object\stm32f10x_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
30 | ..\object\stm32f10x_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h
31 | ..\object\stm32f10x_i2c.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
32 |
--------------------------------------------------------------------------------
/STM32_ESP8266/object/stm32f10x_i2c.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/stm32f10x_i2c.o
--------------------------------------------------------------------------------
/STM32_ESP8266/object/stm32f10x_it.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/stm32f10x_it.crf
--------------------------------------------------------------------------------
/STM32_ESP8266/object/stm32f10x_it.d:
--------------------------------------------------------------------------------
1 | ..\object\stm32f10x_it.o: ..\User\stm32f10x_it.c
2 | ..\object\stm32f10x_it.o: ..\User\stm32f10x_it.h
3 | ..\object\stm32f10x_it.o: ..\Libraries\CMSIS\stm32f10x.h
4 | ..\object\stm32f10x_it.o: ..\Libraries\CMSIS\core_cm3.h
5 | ..\object\stm32f10x_it.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | ..\object\stm32f10x_it.o: ..\Libraries\CMSIS\system_stm32f10x.h
7 | ..\object\stm32f10x_it.o: ..\User\stm32f10x_conf.h
8 | ..\object\stm32f10x_it.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h
9 | ..\object\stm32f10x_it.o: ..\Libraries\CMSIS\stm32f10x.h
10 | ..\object\stm32f10x_it.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_bkp.h
11 | ..\object\stm32f10x_it.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h
12 | ..\object\stm32f10x_it.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_cec.h
13 | ..\object\stm32f10x_it.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_crc.h
14 | ..\object\stm32f10x_it.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dac.h
15 | ..\object\stm32f10x_it.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dbgmcu.h
16 | ..\object\stm32f10x_it.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dma.h
17 | ..\object\stm32f10x_it.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
18 | ..\object\stm32f10x_it.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h
19 | ..\object\stm32f10x_it.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h
20 | ..\object\stm32f10x_it.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
21 | ..\object\stm32f10x_it.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_i2c.h
22 | ..\object\stm32f10x_it.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h
23 | ..\object\stm32f10x_it.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_pwr.h
24 | ..\object\stm32f10x_it.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
25 | ..\object\stm32f10x_it.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rtc.h
26 | ..\object\stm32f10x_it.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_sdio.h
27 | ..\object\stm32f10x_it.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_spi.h
28 | ..\object\stm32f10x_it.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h
29 | ..\object\stm32f10x_it.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
30 | ..\object\stm32f10x_it.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h
31 | ..\object\stm32f10x_it.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
32 | ..\object\stm32f10x_it.o: ..\Hal\usart1.h
33 | ..\object\stm32f10x_it.o: ..\Hal\usart2.h
34 |
--------------------------------------------------------------------------------
/STM32_ESP8266/object/stm32f10x_it.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/stm32f10x_it.o
--------------------------------------------------------------------------------
/STM32_ESP8266/object/stm32f10x_rcc.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/stm32f10x_rcc.crf
--------------------------------------------------------------------------------
/STM32_ESP8266/object/stm32f10x_rcc.d:
--------------------------------------------------------------------------------
1 | ..\object\stm32f10x_rcc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_rcc.c
2 | ..\object\stm32f10x_rcc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
3 | ..\object\stm32f10x_rcc.o: ..\Libraries\CMSIS\stm32f10x.h
4 | ..\object\stm32f10x_rcc.o: ..\Libraries\CMSIS\core_cm3.h
5 | ..\object\stm32f10x_rcc.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | ..\object\stm32f10x_rcc.o: ..\Libraries\CMSIS\system_stm32f10x.h
7 | ..\object\stm32f10x_rcc.o: ..\User\stm32f10x_conf.h
8 | ..\object\stm32f10x_rcc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h
9 | ..\object\stm32f10x_rcc.o: ..\Libraries\CMSIS\stm32f10x.h
10 | ..\object\stm32f10x_rcc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_bkp.h
11 | ..\object\stm32f10x_rcc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h
12 | ..\object\stm32f10x_rcc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_cec.h
13 | ..\object\stm32f10x_rcc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_crc.h
14 | ..\object\stm32f10x_rcc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dac.h
15 | ..\object\stm32f10x_rcc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dbgmcu.h
16 | ..\object\stm32f10x_rcc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dma.h
17 | ..\object\stm32f10x_rcc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
18 | ..\object\stm32f10x_rcc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h
19 | ..\object\stm32f10x_rcc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h
20 | ..\object\stm32f10x_rcc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
21 | ..\object\stm32f10x_rcc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_i2c.h
22 | ..\object\stm32f10x_rcc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h
23 | ..\object\stm32f10x_rcc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_pwr.h
24 | ..\object\stm32f10x_rcc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
25 | ..\object\stm32f10x_rcc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rtc.h
26 | ..\object\stm32f10x_rcc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_sdio.h
27 | ..\object\stm32f10x_rcc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_spi.h
28 | ..\object\stm32f10x_rcc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h
29 | ..\object\stm32f10x_rcc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
30 | ..\object\stm32f10x_rcc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h
31 | ..\object\stm32f10x_rcc.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
32 |
--------------------------------------------------------------------------------
/STM32_ESP8266/object/stm32f10x_rcc.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/stm32f10x_rcc.o
--------------------------------------------------------------------------------
/STM32_ESP8266/object/stm32f10x_usart.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/stm32f10x_usart.crf
--------------------------------------------------------------------------------
/STM32_ESP8266/object/stm32f10x_usart.d:
--------------------------------------------------------------------------------
1 | ..\object\stm32f10x_usart.o: ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_usart.c
2 | ..\object\stm32f10x_usart.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
3 | ..\object\stm32f10x_usart.o: ..\Libraries\CMSIS\stm32f10x.h
4 | ..\object\stm32f10x_usart.o: ..\Libraries\CMSIS\core_cm3.h
5 | ..\object\stm32f10x_usart.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | ..\object\stm32f10x_usart.o: ..\Libraries\CMSIS\system_stm32f10x.h
7 | ..\object\stm32f10x_usart.o: ..\User\stm32f10x_conf.h
8 | ..\object\stm32f10x_usart.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h
9 | ..\object\stm32f10x_usart.o: ..\Libraries\CMSIS\stm32f10x.h
10 | ..\object\stm32f10x_usart.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_bkp.h
11 | ..\object\stm32f10x_usart.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h
12 | ..\object\stm32f10x_usart.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_cec.h
13 | ..\object\stm32f10x_usart.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_crc.h
14 | ..\object\stm32f10x_usart.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dac.h
15 | ..\object\stm32f10x_usart.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dbgmcu.h
16 | ..\object\stm32f10x_usart.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dma.h
17 | ..\object\stm32f10x_usart.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
18 | ..\object\stm32f10x_usart.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h
19 | ..\object\stm32f10x_usart.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h
20 | ..\object\stm32f10x_usart.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
21 | ..\object\stm32f10x_usart.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_i2c.h
22 | ..\object\stm32f10x_usart.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h
23 | ..\object\stm32f10x_usart.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_pwr.h
24 | ..\object\stm32f10x_usart.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
25 | ..\object\stm32f10x_usart.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rtc.h
26 | ..\object\stm32f10x_usart.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_sdio.h
27 | ..\object\stm32f10x_usart.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_spi.h
28 | ..\object\stm32f10x_usart.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h
29 | ..\object\stm32f10x_usart.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
30 | ..\object\stm32f10x_usart.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h
31 | ..\object\stm32f10x_usart.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
32 |
--------------------------------------------------------------------------------
/STM32_ESP8266/object/stm32f10x_usart.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/stm32f10x_usart.o
--------------------------------------------------------------------------------
/STM32_ESP8266/object/system_stm32f10x.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/system_stm32f10x.crf
--------------------------------------------------------------------------------
/STM32_ESP8266/object/system_stm32f10x.d:
--------------------------------------------------------------------------------
1 | ..\object\system_stm32f10x.o: ..\Libraries\CMSIS\system_stm32f10x.c
2 | ..\object\system_stm32f10x.o: ..\Libraries\CMSIS\stm32f10x.h
3 | ..\object\system_stm32f10x.o: ..\Libraries\CMSIS\core_cm3.h
4 | ..\object\system_stm32f10x.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
5 | ..\object\system_stm32f10x.o: ..\Libraries\CMSIS\system_stm32f10x.h
6 | ..\object\system_stm32f10x.o: ..\User\stm32f10x_conf.h
7 | ..\object\system_stm32f10x.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h
8 | ..\object\system_stm32f10x.o: ..\Libraries\CMSIS\stm32f10x.h
9 | ..\object\system_stm32f10x.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_bkp.h
10 | ..\object\system_stm32f10x.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h
11 | ..\object\system_stm32f10x.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_cec.h
12 | ..\object\system_stm32f10x.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_crc.h
13 | ..\object\system_stm32f10x.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dac.h
14 | ..\object\system_stm32f10x.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dbgmcu.h
15 | ..\object\system_stm32f10x.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dma.h
16 | ..\object\system_stm32f10x.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
17 | ..\object\system_stm32f10x.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h
18 | ..\object\system_stm32f10x.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h
19 | ..\object\system_stm32f10x.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
20 | ..\object\system_stm32f10x.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_i2c.h
21 | ..\object\system_stm32f10x.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h
22 | ..\object\system_stm32f10x.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_pwr.h
23 | ..\object\system_stm32f10x.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
24 | ..\object\system_stm32f10x.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rtc.h
25 | ..\object\system_stm32f10x.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_sdio.h
26 | ..\object\system_stm32f10x.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_spi.h
27 | ..\object\system_stm32f10x.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h
28 | ..\object\system_stm32f10x.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
29 | ..\object\system_stm32f10x.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h
30 | ..\object\system_stm32f10x.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
31 |
--------------------------------------------------------------------------------
/STM32_ESP8266/object/system_stm32f10x.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/system_stm32f10x.o
--------------------------------------------------------------------------------
/STM32_ESP8266/object/usart1.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/usart1.crf
--------------------------------------------------------------------------------
/STM32_ESP8266/object/usart1.d:
--------------------------------------------------------------------------------
1 | ..\object\usart1.o: ..\Hal\usart1.c
2 | ..\object\usart1.o: ..\Libraries\CMSIS\stm32f10x.h
3 | ..\object\usart1.o: ..\Libraries\CMSIS\core_cm3.h
4 | ..\object\usart1.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
5 | ..\object\usart1.o: ..\Libraries\CMSIS\system_stm32f10x.h
6 | ..\object\usart1.o: ..\User\stm32f10x_conf.h
7 | ..\object\usart1.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h
8 | ..\object\usart1.o: ..\Libraries\CMSIS\stm32f10x.h
9 | ..\object\usart1.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_bkp.h
10 | ..\object\usart1.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h
11 | ..\object\usart1.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_cec.h
12 | ..\object\usart1.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_crc.h
13 | ..\object\usart1.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dac.h
14 | ..\object\usart1.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dbgmcu.h
15 | ..\object\usart1.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dma.h
16 | ..\object\usart1.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
17 | ..\object\usart1.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h
18 | ..\object\usart1.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h
19 | ..\object\usart1.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
20 | ..\object\usart1.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_i2c.h
21 | ..\object\usart1.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h
22 | ..\object\usart1.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_pwr.h
23 | ..\object\usart1.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
24 | ..\object\usart1.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rtc.h
25 | ..\object\usart1.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_sdio.h
26 | ..\object\usart1.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_spi.h
27 | ..\object\usart1.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h
28 | ..\object\usart1.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
29 | ..\object\usart1.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h
30 | ..\object\usart1.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
31 | ..\object\usart1.o: ..\Hal\usart1.h
32 | ..\object\usart1.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h
33 |
--------------------------------------------------------------------------------
/STM32_ESP8266/object/usart1.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/usart1.o
--------------------------------------------------------------------------------
/STM32_ESP8266/object/usart2.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/usart2.crf
--------------------------------------------------------------------------------
/STM32_ESP8266/object/usart2.d:
--------------------------------------------------------------------------------
1 | ..\object\usart2.o: ..\Hal\usart2.c
2 | ..\object\usart2.o: ..\Libraries\CMSIS\stm32f10x.h
3 | ..\object\usart2.o: ..\Libraries\CMSIS\core_cm3.h
4 | ..\object\usart2.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
5 | ..\object\usart2.o: ..\Libraries\CMSIS\system_stm32f10x.h
6 | ..\object\usart2.o: ..\User\stm32f10x_conf.h
7 | ..\object\usart2.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h
8 | ..\object\usart2.o: ..\Libraries\CMSIS\stm32f10x.h
9 | ..\object\usart2.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_bkp.h
10 | ..\object\usart2.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h
11 | ..\object\usart2.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_cec.h
12 | ..\object\usart2.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_crc.h
13 | ..\object\usart2.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dac.h
14 | ..\object\usart2.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dbgmcu.h
15 | ..\object\usart2.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dma.h
16 | ..\object\usart2.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h
17 | ..\object\usart2.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h
18 | ..\object\usart2.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h
19 | ..\object\usart2.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h
20 | ..\object\usart2.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_i2c.h
21 | ..\object\usart2.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h
22 | ..\object\usart2.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_pwr.h
23 | ..\object\usart2.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h
24 | ..\object\usart2.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rtc.h
25 | ..\object\usart2.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_sdio.h
26 | ..\object\usart2.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_spi.h
27 | ..\object\usart2.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h
28 | ..\object\usart2.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h
29 | ..\object\usart2.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h
30 | ..\object\usart2.o: ..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
31 | ..\object\usart2.o: ..\Hal\usart2.h
32 | ..\object\usart2.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h
33 | ..\object\usart2.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h
34 | ..\object\usart2.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\string.h
35 | ..\object\usart2.o: ..\Utils\utils.h
36 |
--------------------------------------------------------------------------------
/STM32_ESP8266/object/usart2.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/usart2.o
--------------------------------------------------------------------------------
/STM32_ESP8266/object/utils.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/utils.crf
--------------------------------------------------------------------------------
/STM32_ESP8266/object/utils.d:
--------------------------------------------------------------------------------
1 | ..\object\utils.o: ..\Utils\utils.c
2 | ..\object\utils.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
3 | ..\object\utils.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h
4 | ..\object\utils.o: ..\Utils\utils.h
5 | ..\object\utils.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h
6 | ..\object\utils.o: E:\Keil_v5\ARM\ARMCC\Bin\..\include\string.h
7 |
--------------------------------------------------------------------------------
/STM32_ESP8266/object/utils.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/STM32_ESP8266/object/utils.o
--------------------------------------------------------------------------------
/V2.3HTTP/NET/device/demo/ESP8266/net_device.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/NET/device/demo/ESP8266/net_device.c
--------------------------------------------------------------------------------
/V2.3HTTP/NET/device/demo/ESP8266/net_device.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/NET/device/demo/ESP8266/net_device.h
--------------------------------------------------------------------------------
/V2.3HTTP/NET/device/demo/ESP8266/net_io.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/NET/device/demo/ESP8266/net_io.c
--------------------------------------------------------------------------------
/V2.3HTTP/NET/device/demo/ESP8266/net_io.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/NET/device/demo/ESP8266/net_io.h
--------------------------------------------------------------------------------
/V2.3HTTP/NET/device/demo/M6311/net_device.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/NET/device/demo/M6311/net_device.c
--------------------------------------------------------------------------------
/V2.3HTTP/NET/device/demo/M6311/net_device.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/NET/device/demo/M6311/net_device.h
--------------------------------------------------------------------------------
/V2.3HTTP/NET/device/demo/M6311/net_io.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/NET/device/demo/M6311/net_io.c
--------------------------------------------------------------------------------
/V2.3HTTP/NET/device/demo/M6311/net_io.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/NET/device/demo/M6311/net_io.h
--------------------------------------------------------------------------------
/V2.3HTTP/NET/device/inc/net_device.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/NET/device/inc/net_device.h
--------------------------------------------------------------------------------
/V2.3HTTP/NET/device/inc/net_io.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/NET/device/inc/net_io.h
--------------------------------------------------------------------------------
/V2.3HTTP/NET/device/src/net_device.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/NET/device/src/net_device.c
--------------------------------------------------------------------------------
/V2.3HTTP/NET/device/src/net_io.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/NET/device/src/net_io.c
--------------------------------------------------------------------------------
/V2.3HTTP/NET/protocol/inc/fault.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/NET/protocol/inc/fault.h
--------------------------------------------------------------------------------
/V2.3HTTP/NET/protocol/inc/onenet.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/NET/protocol/inc/onenet.h
--------------------------------------------------------------------------------
/V2.3HTTP/NET/protocol/src/fault.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/NET/protocol/src/fault.c
--------------------------------------------------------------------------------
/V2.3HTTP/NET/protocol/src/onenet.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/NET/protocol/src/onenet.c
--------------------------------------------------------------------------------
/V2.3HTTP/core/startup/arm/startup_stm32f10x_hd.s:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/core/startup/arm/startup_stm32f10x_hd.s
--------------------------------------------------------------------------------
/V2.3HTTP/core/stm32f10x.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/core/stm32f10x.h
--------------------------------------------------------------------------------
/V2.3HTTP/core/stm32f10x_it.h:
--------------------------------------------------------------------------------
1 | /**
2 | ******************************************************************************
3 | * @file Project/STM32F10x_StdPeriph_Template/stm32f10x_it.h
4 | * @author MCD Application Team
5 | * @version V3.5.0
6 | * @date 08-April-2011
7 | * @brief This file contains the headers of the interrupt handlers.
8 | ******************************************************************************
9 | * @attention
10 | *
11 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
12 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
13 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
14 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
15 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
16 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
17 | *
18 | * © COPYRIGHT 2011 STMicroelectronics
19 | ******************************************************************************
20 | */
21 |
22 | /* Define to prevent recursive inclusion -------------------------------------*/
23 | #ifndef __STM32F10x_IT_H
24 | #define __STM32F10x_IT_H
25 |
26 | #ifdef __cplusplus
27 | extern "C" {
28 | #endif
29 |
30 | /* Includes ------------------------------------------------------------------*/
31 | #include "stm32f10x.h"
32 |
33 | /* Exported types ------------------------------------------------------------*/
34 | /* Exported constants --------------------------------------------------------*/
35 | /* Exported macro ------------------------------------------------------------*/
36 | /* Exported functions ------------------------------------------------------- */
37 |
38 | void NMI_Handler(void);
39 | void HardFault_Handler(void);
40 | void MemManage_Handler(void);
41 | void BusFault_Handler(void);
42 | void UsageFault_Handler(void);
43 | void SVC_Handler(void);
44 | void DebugMon_Handler(void);
45 | void PendSV_Handler(void);
46 | void SysTick_Handler(void);
47 |
48 | #ifdef __cplusplus
49 | }
50 | #endif
51 |
52 | #endif /* __STM32F10x_IT_H */
53 |
54 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/
55 |
--------------------------------------------------------------------------------
/V2.3HTTP/core/system_stm32f10x.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/core/system_stm32f10x.c
--------------------------------------------------------------------------------
/V2.3HTTP/core/system_stm32f10x.h:
--------------------------------------------------------------------------------
1 | /**
2 | ******************************************************************************
3 | * @file system_stm32f10x.h
4 | * @author MCD Application Team
5 | * @version V3.5.0
6 | * @date 11-March-2011
7 | * @brief CMSIS Cortex-M3 Device Peripheral Access Layer System Header File.
8 | ******************************************************************************
9 | * @attention
10 | *
11 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
12 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
13 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
14 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
15 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
16 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
17 | *
18 | * © COPYRIGHT 2011 STMicroelectronics
19 | ******************************************************************************
20 | */
21 |
22 | /** @addtogroup CMSIS
23 | * @{
24 | */
25 |
26 | /** @addtogroup stm32f10x_system
27 | * @{
28 | */
29 |
30 | /**
31 | * @brief Define to prevent recursive inclusion
32 | */
33 | #ifndef __SYSTEM_STM32F10X_H
34 | #define __SYSTEM_STM32F10X_H
35 |
36 | #ifdef __cplusplus
37 | extern "C" {
38 | #endif
39 |
40 | /** @addtogroup STM32F10x_System_Includes
41 | * @{
42 | */
43 |
44 | /**
45 | * @}
46 | */
47 |
48 |
49 | /** @addtogroup STM32F10x_System_Exported_types
50 | * @{
51 | */
52 |
53 | extern uint32_t SystemCoreClock; /*!< System Clock Frequency (Core Clock) */
54 |
55 | /**
56 | * @}
57 | */
58 |
59 | /** @addtogroup STM32F10x_System_Exported_Constants
60 | * @{
61 | */
62 |
63 | /**
64 | * @}
65 | */
66 |
67 | /** @addtogroup STM32F10x_System_Exported_Macros
68 | * @{
69 | */
70 |
71 | /**
72 | * @}
73 | */
74 |
75 | /** @addtogroup STM32F10x_System_Exported_Functions
76 | * @{
77 | */
78 |
79 | extern void SystemInit(void);
80 | extern void SystemCoreClockUpdate(void);
81 | /**
82 | * @}
83 | */
84 |
85 | #ifdef __cplusplus
86 | }
87 | #endif
88 |
89 | #endif /*__SYSTEM_STM32F10X_H */
90 |
91 | /**
92 | * @}
93 | */
94 |
95 | /**
96 | * @}
97 | */
98 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/
99 |
--------------------------------------------------------------------------------
/V2.3HTTP/fwlib/inc/stm32f10x_crc.h:
--------------------------------------------------------------------------------
1 | /**
2 | ******************************************************************************
3 | * @file stm32f10x_crc.h
4 | * @author MCD Application Team
5 | * @version V3.5.0
6 | * @date 11-March-2011
7 | * @brief This file contains all the functions prototypes for the CRC firmware
8 | * library.
9 | ******************************************************************************
10 | * @attention
11 | *
12 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
13 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
14 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
15 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
16 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
17 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
18 | *
19 | * © COPYRIGHT 2011 STMicroelectronics
20 | ******************************************************************************
21 | */
22 |
23 | /* Define to prevent recursive inclusion -------------------------------------*/
24 | #ifndef __STM32F10x_CRC_H
25 | #define __STM32F10x_CRC_H
26 |
27 | #ifdef __cplusplus
28 | extern "C" {
29 | #endif
30 |
31 | /* Includes ------------------------------------------------------------------*/
32 | #include "stm32f10x.h"
33 |
34 | /** @addtogroup STM32F10x_StdPeriph_Driver
35 | * @{
36 | */
37 |
38 | /** @addtogroup CRC
39 | * @{
40 | */
41 |
42 | /** @defgroup CRC_Exported_Types
43 | * @{
44 | */
45 |
46 | /**
47 | * @}
48 | */
49 |
50 | /** @defgroup CRC_Exported_Constants
51 | * @{
52 | */
53 |
54 | /**
55 | * @}
56 | */
57 |
58 | /** @defgroup CRC_Exported_Macros
59 | * @{
60 | */
61 |
62 | /**
63 | * @}
64 | */
65 |
66 | /** @defgroup CRC_Exported_Functions
67 | * @{
68 | */
69 |
70 | void CRC_ResetDR(void);
71 | uint32_t CRC_CalcCRC(uint32_t Data);
72 | uint32_t CRC_CalcBlockCRC(uint32_t pBuffer[], uint32_t BufferLength);
73 | uint32_t CRC_GetCRC(void);
74 | void CRC_SetIDRegister(uint8_t IDValue);
75 | uint8_t CRC_GetIDRegister(void);
76 |
77 | #ifdef __cplusplus
78 | }
79 | #endif
80 |
81 | #endif /* __STM32F10x_CRC_H */
82 | /**
83 | * @}
84 | */
85 |
86 | /**
87 | * @}
88 | */
89 |
90 | /**
91 | * @}
92 | */
93 |
94 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/
95 |
--------------------------------------------------------------------------------
/V2.3HTTP/fwlib/src/stm32f10x_flash.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/fwlib/src/stm32f10x_flash.c
--------------------------------------------------------------------------------
/V2.3HTTP/fwlib/src/stm32f10x_i2c.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/fwlib/src/stm32f10x_i2c.c
--------------------------------------------------------------------------------
/V2.3HTTP/fwlib/src/stm32f10x_usart.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/fwlib/src/stm32f10x_usart.c
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/inc/adc.h:
--------------------------------------------------------------------------------
1 | #ifndef _ADC_H_
2 | #define _ADC_H_
3 |
4 |
5 | #include "stm32f10x.h"
6 |
7 |
8 |
9 |
10 | void ADC_ChInit(ADC_TypeDef * ADCx, _Bool temp);
11 |
12 | unsigned short ADC_GetValue(ADC_TypeDef * ADCx, unsigned char ch);
13 |
14 | float ADC_GetValueTimes(ADC_TypeDef * ADCx, unsigned char ch, unsigned char times);
15 |
16 | float ADC_GetTemperature(void);
17 |
18 |
19 | #endif
20 |
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/inc/adxl345.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/hardware/inc/adxl345.h
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/inc/at24c02.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/hardware/inc/at24c02.h
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/inc/beep.h:
--------------------------------------------------------------------------------
1 | #ifndef _BEEP_H_
2 | #define _BEEP_H_
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 | typedef struct
11 | {
12 |
13 | _Bool Beep_Status;
14 |
15 | } BEEP_INFO;
16 |
17 | #define BEEP_ON 1
18 | #define BEEP_OFF 0
19 |
20 | extern BEEP_INFO beepInfo;
21 |
22 |
23 |
24 |
25 | void Beep_Init(void);
26 |
27 | void Beep_Set(_Bool status);
28 |
29 |
30 | #endif
31 |
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/inc/delay.h:
--------------------------------------------------------------------------------
1 | #ifndef _DELAY_H_
2 | #define _DELAY_H_
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 | void Delay_Init(void);
11 |
12 | void DelayUs(unsigned short us);
13 |
14 | void DelayXms(unsigned short ms);
15 |
16 | void DelayMs(unsigned short ms);
17 |
18 | #endif
19 |
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/inc/gy30.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/hardware/inc/gy30.h
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/inc/hwtimer.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/hardware/inc/hwtimer.h
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/inc/i2c.h:
--------------------------------------------------------------------------------
1 | #ifndef _I2C_H_
2 | #define _I2C_H_
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 | #define IIC_OK 0
11 | #define IIC_Err 1
12 |
13 |
14 |
15 | //SDA PB11
16 | //SCL PB10
17 | #define SDA_H GPIO_SetBits(GPIOB, GPIO_Pin_11)
18 | #define SDA_L GPIO_ResetBits(GPIOB, GPIO_Pin_11)
19 | #define SDA_R GPIO_ReadInputDataBit(GPIOB, GPIO_Pin_11)
20 |
21 | #define SCL_H GPIO_SetBits(GPIOB, GPIO_Pin_10)
22 | #define SCL_L GPIO_ResetBits(GPIOB, GPIO_Pin_10)
23 |
24 |
25 | typedef struct
26 | {
27 |
28 | unsigned short speed;
29 |
30 | } IIC_INFO;
31 |
32 | extern IIC_INFO iicInfo;
33 |
34 |
35 |
36 |
37 | void IIC_Init(void);
38 |
39 | void IIC_SpeedCtl(unsigned short speed);
40 |
41 | _Bool I2C_WriteByte(unsigned char slaveAddr, unsigned char regAddr, unsigned char *byte);
42 |
43 | _Bool I2C_ReadByte(unsigned char slaveAddr, unsigned char regAddr, unsigned char *val);
44 |
45 | _Bool I2C_WriteBytes(unsigned char slaveAddr, unsigned char regAddr, unsigned char *buf, unsigned char num);
46 |
47 | _Bool I2C_ReadBytes(unsigned char slaveAddr, unsigned char regAddr, unsigned char *buf, unsigned char num);
48 |
49 | void IIC_Start(void);
50 |
51 | void IIC_Stop(void);
52 |
53 | _Bool IIC_WaitAck(unsigned int timeOut);
54 |
55 | void IIC_Ack(void);
56 |
57 | void IIC_NAck(void);
58 |
59 | void IIC_SendByte(unsigned char byte);
60 |
61 | unsigned char IIC_RecvByte(void);
62 |
63 |
64 | #endif
65 |
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/inc/info.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/hardware/inc/info.h
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/inc/iwdg.h:
--------------------------------------------------------------------------------
1 | #ifndef _IWDG_H_
2 | #define _IWDG_H_
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 | void Iwdg_Init(unsigned char psc, unsigned short arr);
11 |
12 | void Iwdg_Feed(void);
13 |
14 |
15 | #endif
16 |
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/inc/key.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/hardware/inc/key.h
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/inc/lcd1602.h:
--------------------------------------------------------------------------------
1 | #ifndef _LCD1602_H_
2 | #define _LCD1602_H_
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 | void Lcd1602_Init(void);
11 |
12 | void Lcd1602_WriteData(unsigned char byte);
13 |
14 | void Lcd1602_WriteCom_Busy(unsigned char byte);
15 |
16 | void Lcd1602_Clear(unsigned char pos);
17 |
18 | void Lcd1602_DisString(unsigned char pos, char *fmt,...);
19 |
20 |
21 | #endif
22 |
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/inc/led.h:
--------------------------------------------------------------------------------
1 | #ifndef _LED_H_
2 | #define _LED_H_
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 | typedef struct
11 | {
12 |
13 | _Bool Led4Sta;
14 | _Bool Led5Sta;
15 | _Bool Led6Sta;
16 | _Bool Led7Sta;
17 |
18 | } LED_STATUS;
19 |
20 | extern LED_STATUS ledStatus;
21 |
22 | typedef enum
23 | {
24 |
25 | LED_OFF = 0,
26 | LED_ON
27 |
28 | } LED_ENUM;
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 | void Led_Init(void);
38 |
39 | void Led4_Set(LED_ENUM status);
40 |
41 | void Led5_Set(LED_ENUM status);
42 |
43 | void Led6_Set(LED_ENUM status);
44 |
45 | void Led7_Set(LED_ENUM status);
46 |
47 |
48 | #endif
49 |
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/inc/oled.h:
--------------------------------------------------------------------------------
1 | #ifndef _OLED_H_
2 | #define _OLED_H_
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 | extern const unsigned char wen[];
11 | extern const unsigned char du[];
12 | extern const unsigned char shi[];
13 | extern const unsigned char san[];
14 | extern const unsigned char zhou[];
15 | extern const unsigned char zhuang[];
16 | extern const unsigned char tai[];
17 | extern const unsigned char wei[];
18 | extern const unsigned char lian[];
19 | extern const unsigned char jie[];
20 | extern const unsigned char zhong[];
21 | extern const unsigned char yi[];
22 | extern const unsigned char duan[];
23 | extern const unsigned char kai[];
24 |
25 |
26 | #define OLED_ADDRESS 0x78
27 |
28 |
29 |
30 | void OLED_Init(void);
31 |
32 | _Bool OLED_WriteCom(unsigned char cmd);
33 |
34 | void OLED_Address(unsigned char page, unsigned char column);
35 |
36 | void OLED_ClearScreen(void);
37 |
38 | void OLED_ClearAt(unsigned char x);
39 |
40 | void OLED_Dis12864_Pic(const unsigned char *dp);
41 |
42 | void OLED_DisChar16x16(unsigned short page, unsigned short column, const unsigned char *dp);
43 |
44 | void OLED_DisString6x8(unsigned char x, unsigned char y, char *fmt, ...);
45 |
46 | void OLED_DisString8x16(unsigned char x, unsigned char y, char *fmt, ...);
47 |
48 |
49 | #endif
50 |
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/inc/oled_zk.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/hardware/inc/oled_zk.h
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/inc/selfcheck.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/hardware/inc/selfcheck.h
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/inc/sht20.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/hardware/inc/sht20.h
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/inc/stmflash.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/hardware/inc/stmflash.h
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/inc/tcrt5000.h:
--------------------------------------------------------------------------------
1 | #ifndef _TCRT5000_H_
2 | #define _TCRT5000_H_
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 | typedef struct
11 | {
12 |
13 | float voltag;
14 |
15 | _Bool status;
16 |
17 | } TCRT5000_INFO;
18 |
19 | extern TCRT5000_INFO t5000Info;
20 |
21 | typedef enum
22 | {
23 |
24 | TCRT5000_OFF = 0,
25 | TCRT5000_ON
26 |
27 | } TCRT5000_ENUM;
28 |
29 |
30 | void TCRT5000_Init(void);
31 |
32 | void TCRT5000_GetValue(unsigned char times);
33 |
34 | void TCRT5000_Set(TCRT5000_ENUM status);
35 |
36 |
37 | #endif
38 |
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/inc/usart.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/hardware/inc/usart.h
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/src/adc.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/hardware/src/adc.c
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/src/adxl345.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/hardware/src/adxl345.c
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/src/at24c02.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/hardware/src/at24c02.c
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/src/beep.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/hardware/src/beep.c
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/src/delay.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/hardware/src/delay.c
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/src/gy30.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/hardware/src/gy30.c
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/src/hwtimer.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/hardware/src/hwtimer.c
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/src/i2c.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/hardware/src/i2c.c
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/src/info.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/hardware/src/info.c
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/src/iwdg.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/hardware/src/iwdg.c
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/src/key.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/hardware/src/key.c
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/src/lcd1602.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/hardware/src/lcd1602.c
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/src/led.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/hardware/src/led.c
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/src/oled.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/hardware/src/oled.c
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/src/selfcheck.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/hardware/src/selfcheck.c
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/src/sht20.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/hardware/src/sht20.c
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/src/stmflash.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/hardware/src/stmflash.c
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/src/tcrt5000.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/hardware/src/tcrt5000.c
--------------------------------------------------------------------------------
/V2.3HTTP/hardware/src/usart.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/hardware/src/usart.c
--------------------------------------------------------------------------------
/V2.3HTTP/keilkilll.bat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/keilkilll.bat
--------------------------------------------------------------------------------
/V2.3HTTP/listing/startup_stm32f10x_hd.lst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/listing/startup_stm32f10x_hd.lst
--------------------------------------------------------------------------------
/V2.3HTTP/user/main.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/V2.3HTTP/user/main.c
--------------------------------------------------------------------------------
/swagger-ui/dist/swagger-ui-bundle.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"file":"swagger-ui-bundle.js","sources":["webpack:///swagger-ui-bundle.js"],"mappings":"AAAA;AAu/FA;AA6+FA;;;;;;;;;;;;;;;;;;;;;;;;;;AAsdA;;;;;;AAoIA;AAk7FA;AAmtCA;;;;;AA0uIA;AAq7IA;AAo7FA;AA0wGA;AAglFA;AA0jFA;AAq9CA;AA6jDA;AAgrCA;AAgtEA;AAgkIA;;;;;;;;;;;;;;AAw4GA;AAyoIA;AAiuJA;AA8kHA;AAonGA;AAukEA;AA02DA;AAyxDA;AAm+BA;;;;;;AAmsEA;AA2zFA;;;;;AA+1CA;AA2qFA;AAo2CA;AAokCA;AAkhDA;AAwvEA;AAs+FA;;;;;;;;;AA+xBA;AA2zIA;AAg4DA;AA0vDA","sourceRoot":""}
--------------------------------------------------------------------------------
/swagger-ui/dist/swagger-ui-standalone-preset.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"file":"swagger-ui-standalone-preset.js","sources":["webpack:///swagger-ui-standalone-preset.js"],"mappings":"AAAA;;;;;AAqTA;AAyiGA","sourceRoot":""}
--------------------------------------------------------------------------------
/swagger-ui/dist/swagger-ui.css.map:
--------------------------------------------------------------------------------
1 | {"version":3,"file":"swagger-ui.css","sources":[],"mappings":"","sourceRoot":""}
--------------------------------------------------------------------------------
/swagger-ui/dist/swagger-ui.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"file":"swagger-ui.js","sources":["webpack:///swagger-ui.js"],"mappings":"AAAA;AAsoGA;AAy4HA;AA+7FA;AA2mCA;AAw/BA;AA2hCA;AAs5BA","sourceRoot":""}
--------------------------------------------------------------------------------
/weibonodejs/getaccess.js:
--------------------------------------------------------------------------------
1 | var Weibo = require('nodeweibo');
2 | var setting = require('./setting.json');
3 |
4 | Weibo.init(setting);
5 |
6 | var paras={
7 | code:"a45ce4c7065792f00d50bb2daf7ae20a",
8 | grant_type:"authorization_code"
9 | };
10 |
11 | Weibo.OAuth2.access_token(paras,function(data){
12 | console.log(data);
13 | })
--------------------------------------------------------------------------------
/weibonodejs/getcode.js:
--------------------------------------------------------------------------------
1 | var Weibo = require('nodeweibo');
2 | var setting = require('./setting.json');
3 |
4 | Weibo.init(setting);
5 |
6 | Weibo.authorize();
--------------------------------------------------------------------------------
/weibonodejs/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "weibonodejs",
3 | "version": "1.0.0",
4 | "description": "",
5 | "main": "index.js",
6 | "scripts": {
7 | "test": "echo \"Error: no test specified\" && exit 1"
8 | },
9 | "author": "",
10 | "license": "ISC",
11 | "dependencies": {
12 | "express": "^4.15.2",
13 | "mysql": "^2.13.0",
14 | "node-schedule": "^1.2.1",
15 | "nodeweibo": "^2.0.4"
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/weibonodejs/sendweibo.js:
--------------------------------------------------------------------------------
1 | var Weibo = require('nodeweibo');
2 | var setting = require('./setting.json');
3 |
4 | Weibo.init(setting);
5 | // access_token应该是不变的,status里面试要发送的内容
6 | var para = {
7 | "access_token":"2.00IlvKmF05EX2B7c5e17d246vKldGE",
8 | "status":"可能再给我发一条。。。"
9 | }
10 | Weibo.Statuses.update(para,function(data){
11 | console.log(data);
12 | })
--------------------------------------------------------------------------------
/weibonodejs/server.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seco/stm32_wifi/a81417fb6f22c57e320143377dd8145f95597bdb/weibonodejs/server.js
--------------------------------------------------------------------------------
/weibonodejs/setting.json:
--------------------------------------------------------------------------------
1 | {
2 | "appKey":"19908348",
3 | "appSecret":"0689798918ee99b569d768ea058647d1",
4 | "redirectUrl":"127.0.0.1:3000"
5 | }
--------------------------------------------------------------------------------
/weibonodejs/test.js:
--------------------------------------------------------------------------------
1 |
2 | var Weibo = require('nodeweibo'); // require('nodeweibo') also works if you have installed nodeweibo via npm
3 | var setting = require('./setting.json'); // get setting (appKey, appSecret, etc.)
4 |
5 | /*
6 | +-------------------------------------------------
7 | (1)注册账号:http://open.weibo.com/
8 | (2)在./setting.json中配置您的开发账号。
9 | (3)搞清楚微博的认证机制即oauth2.0认证原理。
10 | (4)第3点很重要,确保你理解这种开放方式。
11 | +-------------------------------------------------
12 | */
13 |
14 | /*
15 | initialize weibo before using it
16 | */
17 | Weibo.init(setting);
18 |
19 |
20 | /*
21 | +-------------------------------------------------
22 | 例1:开启微博认证
23 | 启动认证后,将在浏览器器打开一个窗口,url中含有code参数
24 | 注意:运行其中一个例子时,须注释掉另一个例子。
25 | +-------------------------------------------------
26 | */
27 |
28 | //Weibo.authorize();
29 |
30 |
31 | /*
32 | +--------------------------------------------------
33 | 例2:需要获取access_token
34 | (1)阅读微博开放平台API
35 | 如:http://open.weibo.com/wiki/OAuth2/access_token,
36 | 将必要的参数写进jsonParas对象。
37 | (2)在回调中打印出获取的数据
38 | (3)code是您浏览器窗口获得的code。
39 | (4)注意:如运行本例子,请注释掉第1个例子,且code职能调用一次,
40 | 会随着认证不断更新。一个用户一个access_token。
41 | +---------------------------------------------------
42 | */
43 | // var jsonParas = {
44 | // code:"ec0845264d86e19e24fa189493c0f60e",
45 | // grant_type:"authorization_code"
46 | // };
47 |
48 | // Weibo.OAuth2.access_token(jsonParas,function(data){
49 | // console.log(data);
50 | // });
51 |
52 | var para = {
53 | "access_token":"2.00IlvKmF05EX2B7c5e17d246vKldGE",
54 | "status":""
55 | }
56 | Weibo.Statuses.update(para,function(data){
57 | console.log(data);
58 | })
59 | /*
60 | example 3, get public timeline
61 | */
62 |
63 | // set parameters
64 | // var para = {
65 | // "source": Weibo.appKey.appKey,
66 | // "access_token": 'your access_token here'
67 | // };
68 |
69 | // // get public timeline
70 | // Weibo.Statuses.public_timeline(para, function(data){
71 | // console.log(data);
72 | // });
73 |
--------------------------------------------------------------------------------