├── androidControl ├── app │ ├── .idea │ │ ├── .name │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── libraries │ │ │ ├── Gradle__com_google_code_findbugs_jsr305_2_0_1_jar.xml │ │ │ ├── Gradle__androidx_constraintlayout_constraintlayout_solver_1_1_3_jar.xml │ │ │ ├── Gradle__androidx_constraintlayout_constraintlayout_1_1_3_aar.xml │ │ │ ├── Gradle__androidx_arch_core_core_common_2_1_0_jar.xml │ │ │ ├── Gradle__androidx_collection_collection_1_1_0_jar.xml │ │ │ ├── Gradle__androidx_lifecycle_lifecycle_common_2_1_0_jar.xml │ │ │ ├── Gradle__androidx_loader_loader_1_0_0_aar.xml │ │ │ ├── Gradle__junit_junit_4_12_jar.xml │ │ │ ├── Gradle__androidx_viewpager_viewpager_1_0_0_aar.xml │ │ │ ├── Gradle__androidx_activity_activity_1_0_0_aar.xml │ │ │ ├── Gradle__androidx_customview_customview_1_0_0_aar.xml │ │ │ ├── Gradle__androidx_arch_core_core_runtime_2_0_0_aar.xml │ │ │ ├── Gradle__androidx_interpolator_interpolator_1_0_0_aar.xml │ │ │ ├── Gradle__androidx_savedstate_savedstate_1_0_0_aar.xml │ │ │ ├── Gradle__net_sf_kxml_kxml2_2_3_0_jar.xml │ │ │ ├── Gradle__androidx_cursoradapter_cursoradapter_1_0_0_aar.xml │ │ │ ├── Gradle__androidx_lifecycle_lifecycle_runtime_2_1_0_aar.xml │ │ │ ├── Gradle__androidx_vectordrawable_vectordrawable_1_1_0_aar.xml │ │ │ ├── Gradle__androidx_lifecycle_lifecycle_livedata_2_0_0_aar.xml │ │ │ ├── Gradle__javax_inject_javax_inject_1_jar.xml │ │ │ ├── Gradle__androidx_lifecycle_lifecycle_viewmodel_2_1_0_aar.xml │ │ │ ├── Gradle__com_squareup_javawriter_2_1_1_jar.xml │ │ │ ├── Gradle__androidx_appcompat_appcompat_resources_1_1_0_aar.xml │ │ │ ├── Gradle__org_hamcrest_hamcrest_core_1_3_jar.xml │ │ │ ├── Gradle__androidx_lifecycle_lifecycle_livedata_core_2_0_0_aar.xml │ │ │ ├── Gradle__androidx_versionedparcelable_versionedparcelable_1_1_0_aar.xml │ │ │ ├── Gradle__androidx_vectordrawable_vectordrawable_animated_1_1_0_aar.xml │ │ │ ├── Gradle__androidx_annotation_annotation_1_1_0_jar.xml │ │ │ ├── Gradle__org_hamcrest_hamcrest_library_1_3_jar.xml │ │ │ ├── Gradle__org_hamcrest_hamcrest_integration_1_3_jar.xml │ │ │ ├── Gradle__androidx_core_core_1_1_0_aar.xml │ │ │ ├── Gradle__androidx_test_core_1_2_0_aar.xml │ │ │ ├── Gradle__androidx_test_runner_1_2_0_aar.xml │ │ │ ├── Gradle__androidx_test_monitor_1_2_0_aar.xml │ │ │ ├── Gradle__androidx_test_ext_junit_1_1_1_aar.xml │ │ │ ├── Gradle__androidx_fragment_fragment_1_1_0_aar.xml │ │ │ ├── Gradle__androidx_appcompat_appcompat_1_1_0_aar.xml │ │ │ ├── Gradle__androidx_drawerlayout_drawerlayout_1_0_0_aar.xml │ │ │ ├── Gradle__androidx_test_espresso_espresso_core_3_2_0_aar.xml │ │ │ └── Gradle__androidx_test_espresso_espresso_idling_resource_3_2_0_aar.xml │ │ ├── runConfigurations.xml │ │ ├── gradle.xml │ │ └── codeStyles │ │ │ └── Project.xml │ ├── .gitignore │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── src │ │ ├── main │ │ │ ├── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ └── layout │ │ │ │ │ └── activity_main.xml │ │ │ └── AndroidManifest.xml │ │ ├── test │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── led │ │ │ │ └── ExampleUnitTest.java │ │ └── androidTest │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── led │ │ │ └── ExampleInstrumentedTest.java │ ├── local.properties │ ├── proguard-rules.pro │ ├── build.gradle │ └── gradlew.bat ├── settings.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── .gitignore ├── .idea │ ├── misc.xml │ ├── runConfigurations.xml │ ├── gradle.xml │ └── codeStyles │ │ └── Project.xml ├── gradle.properties ├── build.gradle └── gradlew.bat ├── photo ├── app界面.png ├── stm32.png ├── 云端数据.png ├── esp8266.png ├── s-tlink.png ├── cp2102串口.png ├── led_power.png └── led_control.png ├── stm32Project ├── Objects │ ├── stm32f1xx_ll_adc.d │ ├── stm32f1xx_ll_crc.d │ ├── stm32f1xx_ll_dac.d │ ├── stm32f1xx_ll_dma.d │ ├── stm32f1xx_ll_i2c.d │ ├── stm32f1xx_ll_pwr.d │ ├── stm32f1xx_ll_rcc.d │ ├── stm32f1xx_ll_rtc.d │ ├── stm32f1xx_ll_spi.d │ ├── stm32f1xx_ll_tim.d │ ├── stm32f1xx_ll_exti.d │ ├── stm32f1xx_ll_gpio.d │ ├── adc.o │ ├── key.o │ ├── led.o │ ├── main.o │ ├── misc.o │ ├── stm32f1xx_ll_usart.d │ ├── sys.o │ ├── adc.crf │ ├── delay.crf │ ├── delay.o │ ├── edpkit.o │ ├── esp8266.o │ ├── key.crf │ ├── led.crf │ ├── main.crf │ ├── misc.crf │ ├── onenet.o │ ├── sys.crf │ ├── timer.crf │ ├── timer.o │ ├── usart.crf │ ├── usart.o │ ├── core_cm3.o │ ├── edpkit.crf │ ├── esp8266.crf │ ├── onenet.crf │ ├── startup_stm32f10x_hd.d │ ├── core_cm3.crf │ ├── esp8266_send.o │ ├── smartlamp.axf │ ├── startup_stm32f10x_hd_1.d │ ├── stm32f10x_it.o │ ├── esp8266_send.crf │ ├── stm32f10x_adc.o │ ├── stm32f10x_bkp.o │ ├── stm32f10x_can.o │ ├── stm32f10x_cec.o │ ├── stm32f10x_crc.o │ ├── stm32f10x_dac.o │ ├── stm32f10x_dma.o │ ├── stm32f10x_exti.o │ ├── stm32f10x_fsmc.o │ ├── stm32f10x_gpio.o │ ├── stm32f10x_i2c.o │ ├── stm32f10x_it.crf │ ├── stm32f10x_iwdg.o │ ├── stm32f10x_pwr.o │ ├── stm32f10x_rcc.o │ ├── stm32f10x_rtc.o │ ├── stm32f10x_sdio.o │ ├── stm32f10x_spi.o │ ├── stm32f10x_tim.o │ ├── stm32f10x_wwdg.o │ ├── stm32f10x_adc.crf │ ├── stm32f10x_bkp.crf │ ├── stm32f10x_can.crf │ ├── stm32f10x_cec.crf │ ├── stm32f10x_crc.crf │ ├── stm32f10x_dac.crf │ ├── stm32f10x_dbgmcu.o │ ├── stm32f10x_dma.crf │ ├── stm32f10x_exti.crf │ ├── stm32f10x_flash.crf │ ├── stm32f10x_flash.o │ ├── stm32f10x_fsmc.crf │ ├── stm32f10x_gpio.crf │ ├── stm32f10x_gpio_1.o │ ├── stm32f10x_i2c.crf │ ├── stm32f10x_iwdg.crf │ ├── stm32f10x_pwr.crf │ ├── stm32f10x_rcc.crf │ ├── stm32f10x_rtc.crf │ ├── stm32f10x_sdio.crf │ ├── stm32f10x_spi.crf │ ├── stm32f10x_tim.crf │ ├── stm32f10x_usart.crf │ ├── stm32f10x_usart.o │ ├── stm32f10x_wwdg.crf │ ├── stm32f1xx_ll_adc.o │ ├── stm32f1xx_ll_crc.o │ ├── stm32f1xx_ll_dac.o │ ├── stm32f1xx_ll_dma.o │ ├── stm32f1xx_ll_exti.o │ ├── stm32f1xx_ll_gpio.o │ ├── stm32f1xx_ll_i2c.o │ ├── stm32f1xx_ll_pwr.o │ ├── stm32f1xx_ll_rcc.o │ ├── stm32f1xx_ll_rtc.o │ ├── stm32f1xx_ll_spi.o │ ├── stm32f1xx_ll_tim.o │ ├── system_stm32f10x.o │ ├── stm32f10x_dbgmcu.crf │ ├── stm32f10x_gpio_1.crf │ ├── stm32f1xx_ll_adc.crf │ ├── stm32f1xx_ll_crc.crf │ ├── stm32f1xx_ll_dac.crf │ ├── stm32f1xx_ll_dma.crf │ ├── stm32f1xx_ll_exti.crf │ ├── stm32f1xx_ll_gpio.crf │ ├── stm32f1xx_ll_i2c.crf │ ├── stm32f1xx_ll_pwr.crf │ ├── stm32f1xx_ll_rcc.crf │ ├── stm32f1xx_ll_rtc.crf │ ├── stm32f1xx_ll_spi.crf │ ├── stm32f1xx_ll_tim.crf │ ├── stm32f1xx_ll_usart.o │ ├── system_stm32f10x.crf │ ├── smartlamp.build_log.htm │ ├── startup_stm32f10x_hd.o │ ├── startup_stm32f10x_hd_1.o │ ├── stm32f1xx_ll_usart.crf │ ├── core_cm3.d │ ├── stm32f1xx_ll_utils.d │ ├── stm32f1xx_hal.d │ ├── stm32f1xx_hal_sd.d │ ├── stm32f1xx_ll_usb.d │ ├── stm32f1xx_hal_adc.d │ ├── stm32f1xx_hal_can.d │ ├── stm32f1xx_hal_cec.d │ ├── stm32f1xx_hal_crc.d │ ├── stm32f1xx_hal_dac.d │ ├── stm32f1xx_hal_dma.d │ ├── stm32f1xx_hal_eth.d │ ├── stm32f1xx_hal_hcd.d │ ├── stm32f1xx_hal_i2c.d │ ├── stm32f1xx_hal_i2s.d │ ├── stm32f1xx_hal_mmc.d │ ├── stm32f1xx_hal_nor.d │ ├── stm32f1xx_hal_pcd.d │ ├── stm32f1xx_hal_pwr.d │ ├── stm32f1xx_hal_rcc.d │ ├── stm32f1xx_hal_rtc.d │ ├── stm32f1xx_hal_spi.d │ ├── stm32f1xx_hal_tim.d │ ├── stm32f1xx_ll_fsmc.d │ ├── stm32f1xx_hal_gpio.d │ ├── stm32f1xx_hal_irda.d │ ├── stm32f1xx_hal_iwdg.d │ ├── stm32f1xx_hal_nand.d │ ├── stm32f1xx_hal_sram.d │ ├── stm32f1xx_hal_uart.d │ ├── stm32f1xx_hal_wwdg.d │ ├── stm32f1xx_ll_sdmmc.d │ ├── stm32f1xx_hal_flash.d │ ├── stm32f1xx_hal_usart.d │ ├── stm32f1xx_hal_adc_ex.d │ ├── stm32f1xx_hal_cortex.d │ ├── stm32f1xx_hal_dac_ex.d │ ├── stm32f1xx_hal_pccard.d │ ├── stm32f1xx_hal_pcd_ex.d │ ├── stm32f1xx_hal_rcc_ex.d │ ├── stm32f1xx_hal_rtc_ex.d │ ├── stm32f1xx_hal_spi_ex.d │ ├── stm32f1xx_hal_tim_ex.d │ ├── stm32f1xx_hal_gpio_ex.d │ ├── stm32f1xx_hal_flash_ex.d │ ├── stm32f1xx_hal_smartcard.d │ ├── stm32f1xx_hal_msp_template.d │ ├── stm32f1xx_hal_timebase_tim_template.d │ ├── stm32f1xx_hal_timebase_rtc_alarm_template.d │ ├── smartlamp.sct │ ├── smartlamp_sct.Bak │ ├── sys.d │ ├── led.d │ ├── misc.d │ ├── delay.d │ ├── key.d │ ├── adc.d │ ├── stm32f10x_it.d │ ├── system_stm32f10x.d │ ├── stm32f10x_adc.d │ ├── stm32f10x_bkp.d │ ├── stm32f10x_can.d │ ├── stm32f10x_cec.d │ ├── stm32f10x_crc.d │ ├── stm32f10x_dac.d │ ├── stm32f10x_dma.d │ ├── stm32f10x_i2c.d │ ├── stm32f10x_pwr.d │ ├── stm32f10x_rcc.d │ ├── stm32f10x_rtc.d │ ├── stm32f10x_spi.d │ ├── stm32f10x_tim.d │ ├── stm32f10x_exti.d │ ├── stm32f10x_fsmc.d │ ├── stm32f10x_gpio.d │ ├── stm32f10x_iwdg.d │ ├── stm32f10x_sdio.d │ ├── stm32f10x_wwdg.d │ ├── stm32f10x_flash.d │ ├── stm32f10x_gpio_1.d │ ├── stm32f10x_usart.d │ ├── timer.d │ ├── stm32f10x_dbgmcu.d │ ├── edpkit.d │ ├── usart.d │ ├── onenet.d │ ├── esp8266.d │ ├── main.d │ ├── esp8266_send.d │ └── smartlamp.lnp ├── USER │ ├── adc.c │ ├── delay.c │ ├── delay.h │ ├── key.c │ ├── key.h │ ├── led.c │ ├── led.h │ ├── main.c │ ├── sys.c │ ├── sys.h │ ├── timer.c │ ├── timer.h │ ├── usart.c │ ├── usart.h │ ├── USART.Opt │ ├── edpkit.h │ ├── esp8266.c │ ├── esp8266.h │ ├── malloc.c │ ├── malloc.h │ ├── onenet.c │ ├── sample.c │ ├── stm32f10x.h │ ├── onenet.h │ ├── adc.h │ ├── Common.h │ ├── stm32f10x_it.h │ ├── system_stm32f10x.h │ ├── stm32f10x_it.c │ ├── stm32f10x_conf.h │ ├── PWM.opt.bak │ └── PWM.Uv2.bak ├── CMSIS │ ├── stm32f10x.h │ └── system_stm32f10x.h └── FWLIB │ ├── inc │ ├── delay.h │ ├── usart.h │ ├── stm32f10x_crc.h │ ├── stm32f10x_wwdg.h │ └── stm32_assert_template.h │ └── src │ ├── usart.c │ ├── stm32f10x_flash.c │ ├── stm32f10x_i2c.c │ ├── stm32f10x_usart.c │ ├── stm32f1xx_hal_timebase_rtc_alarm_template.c │ ├── stm32f1xx_hal_msp_template.c │ └── stm32f1xx_ll_pwr.c └── README.md /androidControl/app/.idea/.name: -------------------------------------------------------------------------------- 1 | LED -------------------------------------------------------------------------------- /androidControl/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /androidControl/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name='LED' 2 | include ':app' 3 | -------------------------------------------------------------------------------- /photo/app界面.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/photo/app界面.png -------------------------------------------------------------------------------- /photo/stm32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/photo/stm32.png -------------------------------------------------------------------------------- /photo/云端数据.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/photo/云端数据.png -------------------------------------------------------------------------------- /photo/esp8266.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/photo/esp8266.png -------------------------------------------------------------------------------- /photo/s-tlink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/photo/s-tlink.png -------------------------------------------------------------------------------- /photo/cp2102串口.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/photo/cp2102串口.png -------------------------------------------------------------------------------- /photo/led_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/photo/led_power.png -------------------------------------------------------------------------------- /photo/led_control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/photo/led_control.png -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_adc.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_ll_adc.o: FWLIB\src\stm32f1xx_ll_adc.c 2 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_crc.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_ll_crc.o: FWLIB\src\stm32f1xx_ll_crc.c 2 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_dac.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_ll_dac.o: FWLIB\src\stm32f1xx_ll_dac.c 2 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_dma.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_ll_dma.o: FWLIB\src\stm32f1xx_ll_dma.c 2 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_i2c.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_ll_i2c.o: FWLIB\src\stm32f1xx_ll_i2c.c 2 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_pwr.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_ll_pwr.o: FWLIB\src\stm32f1xx_ll_pwr.c 2 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_rcc.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_ll_rcc.o: FWLIB\src\stm32f1xx_ll_rcc.c 2 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_rtc.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_ll_rtc.o: FWLIB\src\stm32f1xx_ll_rtc.c 2 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_spi.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_ll_spi.o: FWLIB\src\stm32f1xx_ll_spi.c 2 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_tim.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_ll_tim.o: FWLIB\src\stm32f1xx_ll_tim.c 2 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_exti.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_ll_exti.o: FWLIB\src\stm32f1xx_ll_exti.c 2 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_gpio.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_ll_gpio.o: FWLIB\src\stm32f1xx_ll_gpio.c 2 | -------------------------------------------------------------------------------- /stm32Project/USER/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/USER/adc.c -------------------------------------------------------------------------------- /stm32Project/USER/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/USER/delay.c -------------------------------------------------------------------------------- /stm32Project/USER/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/USER/delay.h -------------------------------------------------------------------------------- /stm32Project/USER/key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/USER/key.c -------------------------------------------------------------------------------- /stm32Project/USER/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/USER/key.h -------------------------------------------------------------------------------- /stm32Project/USER/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/USER/led.c -------------------------------------------------------------------------------- /stm32Project/USER/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/USER/led.h -------------------------------------------------------------------------------- /stm32Project/USER/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/USER/main.c -------------------------------------------------------------------------------- /stm32Project/USER/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/USER/sys.c -------------------------------------------------------------------------------- /stm32Project/USER/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/USER/sys.h -------------------------------------------------------------------------------- /stm32Project/USER/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/USER/timer.c -------------------------------------------------------------------------------- /stm32Project/USER/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/USER/timer.h -------------------------------------------------------------------------------- /stm32Project/USER/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/USER/usart.c -------------------------------------------------------------------------------- /stm32Project/USER/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/USER/usart.h -------------------------------------------------------------------------------- /stm32Project/Objects/adc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/adc.o -------------------------------------------------------------------------------- /stm32Project/Objects/key.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/key.o -------------------------------------------------------------------------------- /stm32Project/Objects/led.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/led.o -------------------------------------------------------------------------------- /stm32Project/Objects/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/main.o -------------------------------------------------------------------------------- /stm32Project/Objects/misc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/misc.o -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_usart.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_ll_usart.o: FWLIB\src\stm32f1xx_ll_usart.c 2 | -------------------------------------------------------------------------------- /stm32Project/Objects/sys.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/sys.o -------------------------------------------------------------------------------- /stm32Project/USER/USART.Opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/USER/USART.Opt -------------------------------------------------------------------------------- /stm32Project/USER/edpkit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/USER/edpkit.h -------------------------------------------------------------------------------- /stm32Project/USER/esp8266.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/USER/esp8266.c -------------------------------------------------------------------------------- /stm32Project/USER/esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/USER/esp8266.h -------------------------------------------------------------------------------- /stm32Project/USER/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/USER/malloc.c -------------------------------------------------------------------------------- /stm32Project/USER/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/USER/malloc.h -------------------------------------------------------------------------------- /stm32Project/USER/onenet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/USER/onenet.c -------------------------------------------------------------------------------- /stm32Project/USER/sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/USER/sample.c -------------------------------------------------------------------------------- /stm32Project/CMSIS/stm32f10x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/CMSIS/stm32f10x.h -------------------------------------------------------------------------------- /stm32Project/FWLIB/inc/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/FWLIB/inc/delay.h -------------------------------------------------------------------------------- /stm32Project/FWLIB/inc/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/FWLIB/inc/usart.h -------------------------------------------------------------------------------- /stm32Project/FWLIB/src/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/FWLIB/src/usart.c -------------------------------------------------------------------------------- /stm32Project/Objects/adc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/adc.crf -------------------------------------------------------------------------------- /stm32Project/Objects/delay.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/delay.crf -------------------------------------------------------------------------------- /stm32Project/Objects/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/delay.o -------------------------------------------------------------------------------- /stm32Project/Objects/edpkit.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/edpkit.o -------------------------------------------------------------------------------- /stm32Project/Objects/esp8266.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/esp8266.o -------------------------------------------------------------------------------- /stm32Project/Objects/key.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/key.crf -------------------------------------------------------------------------------- /stm32Project/Objects/led.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/led.crf -------------------------------------------------------------------------------- /stm32Project/Objects/main.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/main.crf -------------------------------------------------------------------------------- /stm32Project/Objects/misc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/misc.crf -------------------------------------------------------------------------------- /stm32Project/Objects/onenet.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/onenet.o -------------------------------------------------------------------------------- /stm32Project/Objects/sys.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/sys.crf -------------------------------------------------------------------------------- /stm32Project/Objects/timer.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/timer.crf -------------------------------------------------------------------------------- /stm32Project/Objects/timer.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/timer.o -------------------------------------------------------------------------------- /stm32Project/Objects/usart.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/usart.crf -------------------------------------------------------------------------------- /stm32Project/Objects/usart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/usart.o -------------------------------------------------------------------------------- /stm32Project/USER/stm32f10x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/USER/stm32f10x.h -------------------------------------------------------------------------------- /stm32Project/Objects/core_cm3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/core_cm3.o -------------------------------------------------------------------------------- /stm32Project/Objects/edpkit.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/edpkit.crf -------------------------------------------------------------------------------- /stm32Project/Objects/esp8266.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/esp8266.crf -------------------------------------------------------------------------------- /stm32Project/Objects/onenet.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/onenet.crf -------------------------------------------------------------------------------- /stm32Project/Objects/startup_stm32f10x_hd.d: -------------------------------------------------------------------------------- 1 | .\objects\startup_stm32f10x_hd.o: CMSIS\startup\arm\startup_stm32f10x_hd.s 2 | -------------------------------------------------------------------------------- /stm32Project/Objects/core_cm3.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/core_cm3.crf -------------------------------------------------------------------------------- /stm32Project/Objects/esp8266_send.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/esp8266_send.o -------------------------------------------------------------------------------- /stm32Project/Objects/smartlamp.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/smartlamp.axf -------------------------------------------------------------------------------- /stm32Project/Objects/startup_stm32f10x_hd_1.d: -------------------------------------------------------------------------------- 1 | .\objects\startup_stm32f10x_hd_1.o: CMSIS\startup\arm\startup_stm32f10x_hd.s 2 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_it.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_it.o -------------------------------------------------------------------------------- /stm32Project/Objects/esp8266_send.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/esp8266_send.crf -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_adc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_adc.o -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_bkp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_bkp.o -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_can.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_can.o -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_cec.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_cec.o -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_crc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_crc.o -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_dac.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_dac.o -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_dma.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_dma.o -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_exti.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_exti.o -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_fsmc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_fsmc.o -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_gpio.o -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_i2c.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_i2c.o -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_it.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_it.crf -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_iwdg.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_iwdg.o -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_pwr.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_pwr.o -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_rcc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_rcc.o -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_rtc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_rtc.o -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_sdio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_sdio.o -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_spi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_spi.o -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_tim.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_tim.o -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_wwdg.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_wwdg.o -------------------------------------------------------------------------------- /stm32Project/FWLIB/src/stm32f10x_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/FWLIB/src/stm32f10x_flash.c -------------------------------------------------------------------------------- /stm32Project/FWLIB/src/stm32f10x_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/FWLIB/src/stm32f10x_i2c.c -------------------------------------------------------------------------------- /stm32Project/FWLIB/src/stm32f10x_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/FWLIB/src/stm32f10x_usart.c -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_adc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_adc.crf -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_bkp.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_bkp.crf -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_can.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_can.crf -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_cec.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_cec.crf -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_crc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_crc.crf -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_dac.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_dac.crf -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_dbgmcu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_dbgmcu.o -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_dma.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_dma.crf -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_exti.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_exti.crf -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_flash.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_flash.crf -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_flash.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_flash.o -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_fsmc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_fsmc.crf -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_gpio.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_gpio.crf -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_gpio_1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_gpio_1.o -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_i2c.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_i2c.crf -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_iwdg.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_iwdg.crf -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_pwr.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_pwr.crf -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_rcc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_rcc.crf -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_rtc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_rtc.crf -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_sdio.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_sdio.crf -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_spi.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_spi.crf -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_tim.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_tim.crf -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_usart.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_usart.crf -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_usart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_usart.o -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_wwdg.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_wwdg.crf -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_adc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f1xx_ll_adc.o -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_crc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f1xx_ll_crc.o -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_dac.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f1xx_ll_dac.o -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_dma.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f1xx_ll_dma.o -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_exti.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f1xx_ll_exti.o -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f1xx_ll_gpio.o -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_i2c.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f1xx_ll_i2c.o -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_pwr.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f1xx_ll_pwr.o -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_rcc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f1xx_ll_rcc.o -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_rtc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f1xx_ll_rtc.o -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_spi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f1xx_ll_spi.o -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_tim.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f1xx_ll_tim.o -------------------------------------------------------------------------------- /stm32Project/Objects/system_stm32f10x.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/system_stm32f10x.o -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_dbgmcu.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_dbgmcu.crf -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_gpio_1.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f10x_gpio_1.crf -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_adc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f1xx_ll_adc.crf -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_crc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f1xx_ll_crc.crf -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_dac.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f1xx_ll_dac.crf -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_dma.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f1xx_ll_dma.crf -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_exti.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f1xx_ll_exti.crf -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_gpio.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f1xx_ll_gpio.crf -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_i2c.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f1xx_ll_i2c.crf -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_pwr.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f1xx_ll_pwr.crf -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_rcc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f1xx_ll_rcc.crf -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_rtc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f1xx_ll_rtc.crf -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_spi.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f1xx_ll_spi.crf -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_tim.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f1xx_ll_tim.crf -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_usart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f1xx_ll_usart.o -------------------------------------------------------------------------------- /stm32Project/Objects/system_stm32f10x.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/system_stm32f10x.crf -------------------------------------------------------------------------------- /stm32Project/Objects/smartlamp.build_log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/smartlamp.build_log.htm -------------------------------------------------------------------------------- /stm32Project/Objects/startup_stm32f10x_hd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/startup_stm32f10x_hd.o -------------------------------------------------------------------------------- /stm32Project/Objects/startup_stm32f10x_hd_1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/startup_stm32f10x_hd_1.o -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_usart.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/Objects/stm32f1xx_ll_usart.crf -------------------------------------------------------------------------------- /androidControl/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/androidControl/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /androidControl/app/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/androidControl/app/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /stm32Project/Objects/core_cm3.d: -------------------------------------------------------------------------------- 1 | .\objects\core_cm3.o: CMSIS\core_cm3.c 2 | .\objects\core_cm3.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 3 | -------------------------------------------------------------------------------- /androidControl/app/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/androidControl/app/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /stm32Project/USER/onenet.h: -------------------------------------------------------------------------------- 1 | #ifndef _ONENET_H_ 2 | #define _ONENET_H_ 3 | 4 | _Bool OneNet_DevLink(void); 5 | void OneNet_SendData(int lightVal); 6 | 7 | #endif 8 | -------------------------------------------------------------------------------- /androidControl/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/androidControl/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /androidControl/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/androidControl/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /androidControl/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/androidControl/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_utils.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_ll_utils.o: FWLIB\src\stm32f1xx_ll_utils.c 2 | .\objects\stm32f1xx_ll_utils.o: .\FWLIB\inc\stm32f1xx_ll_rcc.h 3 | -------------------------------------------------------------------------------- /androidControl/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/androidControl/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /androidControl/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/androidControl/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /androidControl/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/androidControl/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /androidControl/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/androidControl/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /androidControl/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/androidControl/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /androidControl/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/androidControl/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /stm32Project/FWLIB/src/stm32f1xx_hal_timebase_rtc_alarm_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/stm32Project/FWLIB/src/stm32f1xx_hal_timebase_rtc_alarm_template.c -------------------------------------------------------------------------------- /androidControl/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwekelly/Light_Control/HEAD/androidControl/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal.o: FWLIB\src\stm32f1xx_hal.c 2 | .\objects\stm32f1xx_hal.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_sd.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_sd.o: FWLIB\src\stm32f1xx_hal_sd.c 2 | .\objects\stm32f1xx_hal_sd.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_sd.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_usb.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_ll_usb.o: FWLIB\src\stm32f1xx_ll_usb.c 2 | .\objects\stm32f1xx_ll_usb.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_ll_usb.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_adc.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_adc.o: FWLIB\src\stm32f1xx_hal_adc.c 2 | .\objects\stm32f1xx_hal_adc.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_adc.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_can.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_can.o: FWLIB\src\stm32f1xx_hal_can.c 2 | .\objects\stm32f1xx_hal_can.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_can.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_cec.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_cec.o: FWLIB\src\stm32f1xx_hal_cec.c 2 | .\objects\stm32f1xx_hal_cec.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_cec.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_crc.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_crc.o: FWLIB\src\stm32f1xx_hal_crc.c 2 | .\objects\stm32f1xx_hal_crc.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_crc.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_dac.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_dac.o: FWLIB\src\stm32f1xx_hal_dac.c 2 | .\objects\stm32f1xx_hal_dac.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_dac.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_dma.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_dma.o: FWLIB\src\stm32f1xx_hal_dma.c 2 | .\objects\stm32f1xx_hal_dma.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_dma.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_eth.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_eth.o: FWLIB\src\stm32f1xx_hal_eth.c 2 | .\objects\stm32f1xx_hal_eth.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_eth.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_hcd.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_hcd.o: FWLIB\src\stm32f1xx_hal_hcd.c 2 | .\objects\stm32f1xx_hal_hcd.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_hcd.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_i2c.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_i2c.o: FWLIB\src\stm32f1xx_hal_i2c.c 2 | .\objects\stm32f1xx_hal_i2c.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_i2c.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_i2s.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_i2s.o: FWLIB\src\stm32f1xx_hal_i2s.c 2 | .\objects\stm32f1xx_hal_i2s.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_i2s.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_mmc.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_mmc.o: FWLIB\src\stm32f1xx_hal_mmc.c 2 | .\objects\stm32f1xx_hal_mmc.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_mmc.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_nor.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_nor.o: FWLIB\src\stm32f1xx_hal_nor.c 2 | .\objects\stm32f1xx_hal_nor.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_nor.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_pcd.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_pcd.o: FWLIB\src\stm32f1xx_hal_pcd.c 2 | .\objects\stm32f1xx_hal_pcd.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_pcd.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_pwr.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_pwr.o: FWLIB\src\stm32f1xx_hal_pwr.c 2 | .\objects\stm32f1xx_hal_pwr.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_pwr.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_rcc.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_rcc.o: FWLIB\src\stm32f1xx_hal_rcc.c 2 | .\objects\stm32f1xx_hal_rcc.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_rcc.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_rtc.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_rtc.o: FWLIB\src\stm32f1xx_hal_rtc.c 2 | .\objects\stm32f1xx_hal_rtc.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_rtc.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_spi.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_spi.o: FWLIB\src\stm32f1xx_hal_spi.c 2 | .\objects\stm32f1xx_hal_spi.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_spi.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_tim.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_tim.o: FWLIB\src\stm32f1xx_hal_tim.c 2 | .\objects\stm32f1xx_hal_tim.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_tim.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_fsmc.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_ll_fsmc.o: FWLIB\src\stm32f1xx_ll_fsmc.c 2 | .\objects\stm32f1xx_ll_fsmc.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_ll_fsmc.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_gpio.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_gpio.o: FWLIB\src\stm32f1xx_hal_gpio.c 2 | .\objects\stm32f1xx_hal_gpio.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_gpio.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_irda.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_irda.o: FWLIB\src\stm32f1xx_hal_irda.c 2 | .\objects\stm32f1xx_hal_irda.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_irda.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_iwdg.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_iwdg.o: FWLIB\src\stm32f1xx_hal_iwdg.c 2 | .\objects\stm32f1xx_hal_iwdg.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_iwdg.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_nand.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_nand.o: FWLIB\src\stm32f1xx_hal_nand.c 2 | .\objects\stm32f1xx_hal_nand.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_nand.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_sram.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_sram.o: FWLIB\src\stm32f1xx_hal_sram.c 2 | .\objects\stm32f1xx_hal_sram.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_sram.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_uart.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_uart.o: FWLIB\src\stm32f1xx_hal_uart.c 2 | .\objects\stm32f1xx_hal_uart.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_uart.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_wwdg.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_wwdg.o: FWLIB\src\stm32f1xx_hal_wwdg.c 2 | .\objects\stm32f1xx_hal_wwdg.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_wwdg.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_ll_sdmmc.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_ll_sdmmc.o: FWLIB\src\stm32f1xx_ll_sdmmc.c 2 | .\objects\stm32f1xx_ll_sdmmc.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_ll_sdmmc.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_flash.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_flash.o: FWLIB\src\stm32f1xx_hal_flash.c 2 | .\objects\stm32f1xx_hal_flash.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_flash.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_usart.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_usart.o: FWLIB\src\stm32f1xx_hal_usart.c 2 | .\objects\stm32f1xx_hal_usart.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_usart.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_adc_ex.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_adc_ex.o: FWLIB\src\stm32f1xx_hal_adc_ex.c 2 | .\objects\stm32f1xx_hal_adc_ex.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_adc_ex.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_cortex.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_cortex.o: FWLIB\src\stm32f1xx_hal_cortex.c 2 | .\objects\stm32f1xx_hal_cortex.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_cortex.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_dac_ex.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_dac_ex.o: FWLIB\src\stm32f1xx_hal_dac_ex.c 2 | .\objects\stm32f1xx_hal_dac_ex.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_dac_ex.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_pccard.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_pccard.o: FWLIB\src\stm32f1xx_hal_pccard.c 2 | .\objects\stm32f1xx_hal_pccard.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_pccard.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_pcd_ex.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_pcd_ex.o: FWLIB\src\stm32f1xx_hal_pcd_ex.c 2 | .\objects\stm32f1xx_hal_pcd_ex.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_pcd_ex.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_rcc_ex.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_rcc_ex.o: FWLIB\src\stm32f1xx_hal_rcc_ex.c 2 | .\objects\stm32f1xx_hal_rcc_ex.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_rcc_ex.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_rtc_ex.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_rtc_ex.o: FWLIB\src\stm32f1xx_hal_rtc_ex.c 2 | .\objects\stm32f1xx_hal_rtc_ex.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_rtc_ex.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_spi_ex.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_spi_ex.o: FWLIB\src\stm32f1xx_hal_spi_ex.c 2 | .\objects\stm32f1xx_hal_spi_ex.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_spi_ex.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_tim_ex.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_tim_ex.o: FWLIB\src\stm32f1xx_hal_tim_ex.c 2 | .\objects\stm32f1xx_hal_tim_ex.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_tim_ex.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_gpio_ex.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_gpio_ex.o: FWLIB\src\stm32f1xx_hal_gpio_ex.c 2 | .\objects\stm32f1xx_hal_gpio_ex.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_gpio_ex.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_flash_ex.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_flash_ex.o: FWLIB\src\stm32f1xx_hal_flash_ex.c 2 | .\objects\stm32f1xx_hal_flash_ex.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_flash_ex.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_smartcard.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_smartcard.o: FWLIB\src\stm32f1xx_hal_smartcard.c 2 | .\objects\stm32f1xx_hal_smartcard.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_smartcard.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_msp_template.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_msp_template.o: FWLIB\src\stm32f1xx_hal_msp_template.c 2 | .\objects\stm32f1xx_hal_msp_template.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_msp_template.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /androidControl/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #6200EE 4 | #3700B3 5 | #03DAC5 6 | 7 | -------------------------------------------------------------------------------- /androidControl/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/caches 5 | /.idea/libraries 6 | /.idea/modules.xml 7 | /.idea/workspace.xml 8 | /.idea/navEditor.xml 9 | /.idea/assetWizardSettings.xml 10 | .DS_Store 11 | /build 12 | /captures 13 | .externalNativeBuild 14 | .cxx 15 | -------------------------------------------------------------------------------- /androidControl/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu May 28 20:01:35 CST 2020 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip 7 | -------------------------------------------------------------------------------- /stm32Project/USER/adc.h: -------------------------------------------------------------------------------- 1 | #ifndef __ADC_H 2 | #define __ADC_H 3 | #include "sys.h" 4 | 5 | ////////////////////////////////////////////////////////////////////////////////// 6 | 7 | void Adc_Init(void); 8 | u16 Get_Adc(u8 ch); 9 | u16 Get_Adc_Average(u8 ch,u8 times); 10 | 11 | #endif 12 | -------------------------------------------------------------------------------- /androidControl/app/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri May 29 09:44:23 CST 2020 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip 7 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_timebase_tim_template.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_timebase_tim_template.o: FWLIB\src\stm32f1xx_hal_timebase_tim_template.c 2 | .\objects\stm32f1xx_hal_timebase_tim_template.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_timebase_tim_template.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /androidControl/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f1xx_hal_timebase_rtc_alarm_template.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f1xx_hal_timebase_rtc_alarm_template.o: FWLIB\src\stm32f1xx_hal_timebase_rtc_alarm_template.c 2 | .\objects\stm32f1xx_hal_timebase_rtc_alarm_template.o: .\FWLIB\inc\stm32f1xx_hal.h 3 | .\objects\stm32f1xx_hal_timebase_rtc_alarm_template.o: .\USER\stm32f1xx_hal_conf.h 4 | -------------------------------------------------------------------------------- /androidControl/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /androidControl/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 9 | -------------------------------------------------------------------------------- /androidControl/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | LED 3 | 开启连接 4 | IP 5 | 端口号 6 | 自动模式 7 | 手动模式 8 | 调亮 9 | 调暗 10 | 11 | -------------------------------------------------------------------------------- /androidControl/app/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 9 | -------------------------------------------------------------------------------- /androidControl/app/local.properties: -------------------------------------------------------------------------------- 1 | ## This file must *NOT* be checked into Version Control Systems, 2 | # as it contains information specific to your local configuration. 3 | # 4 | # Location of the SDK. This is only used by Gradle. 5 | # For customization when using a Version Control System, please read the 6 | # header note. 7 | #Fri May 29 09:43:57 CST 2020 8 | sdk.dir=C\:\\Users\\asus\\AppData\\Local\\Android\\Sdk 9 | -------------------------------------------------------------------------------- /androidControl/app/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__com_google_code_findbugs_jsr305_2_0_1_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /androidControl/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /androidControl/app/src/test/java/com/example/led/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.example.led; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__androidx_constraintlayout_constraintlayout_solver_1_1_3_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /stm32Project/Objects/smartlamp.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 | -------------------------------------------------------------------------------- /stm32Project/Objects/smartlamp_sct.Bak: -------------------------------------------------------------------------------- 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 | .ANY (+XO) 11 | } 12 | RW_IRAM1 0x20000000 0x00005000 { ; RW data 13 | .ANY (+RW +ZI) 14 | } 15 | } 16 | 17 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__androidx_constraintlayout_constraintlayout_1_1_3_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /androidControl/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /androidControl/app/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /stm32Project/USER/Common.h: -------------------------------------------------------------------------------- 1 | #ifndef __COMMON_H__ 2 | #define __COMMON_H__ 3 | 4 | /*---------------------------------------------------------------------------*/ 5 | /* Type Definition Macros */ 6 | /*---------------------------------------------------------------------------*/ 7 | 8 | typedef _Bool uint1; 9 | typedef unsigned char uint8; 10 | typedef char int8; 11 | typedef unsigned short uint16; 12 | typedef short int16; 13 | typedef unsigned int uint32; 14 | typedef int int32; 15 | typedef unsigned int size_t; 16 | 17 | #endif /* __COMMON_H__ */ 18 | -------------------------------------------------------------------------------- /stm32Project/Objects/sys.d: -------------------------------------------------------------------------------- 1 | .\objects\sys.o: USER\sys.c 2 | .\objects\sys.o: USER\sys.h 3 | .\objects\sys.o: USER\stm32f10x.h 4 | .\objects\sys.o: .\CMSIS\core_cm3.h 5 | .\objects\sys.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\sys.o: USER\system_stm32f10x.h 7 | .\objects\sys.o: USER\stm32f10x_conf.h 8 | .\objects\sys.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 9 | .\objects\sys.o: .\USER\stm32f10x.h 10 | .\objects\sys.o: .\FWLIB\inc\stm32f10x_gpio.h 11 | .\objects\sys.o: .\FWLIB\inc\stm32f10x_rcc.h 12 | .\objects\sys.o: .\FWLIB\inc\stm32f10x_tim.h 13 | .\objects\sys.o: .\FWLIB\inc\stm32f10x_usart.h 14 | .\objects\sys.o: .\FWLIB\inc\misc.h 15 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__androidx_arch_core_core_common_2_1_0_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__androidx_collection_collection_1_1_0_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /stm32Project/Objects/led.d: -------------------------------------------------------------------------------- 1 | .\objects\led.o: USER\led.c 2 | .\objects\led.o: USER\led.h 3 | .\objects\led.o: USER\sys.h 4 | .\objects\led.o: USER\stm32f10x.h 5 | .\objects\led.o: .\CMSIS\core_cm3.h 6 | .\objects\led.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 7 | .\objects\led.o: USER\system_stm32f10x.h 8 | .\objects\led.o: USER\stm32f10x_conf.h 9 | .\objects\led.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 10 | .\objects\led.o: .\USER\stm32f10x.h 11 | .\objects\led.o: .\FWLIB\inc\stm32f10x_gpio.h 12 | .\objects\led.o: .\FWLIB\inc\stm32f10x_rcc.h 13 | .\objects\led.o: .\FWLIB\inc\stm32f10x_tim.h 14 | .\objects\led.o: .\FWLIB\inc\stm32f10x_usart.h 15 | .\objects\led.o: .\FWLIB\inc\misc.h 16 | -------------------------------------------------------------------------------- /stm32Project/Objects/misc.d: -------------------------------------------------------------------------------- 1 | .\objects\misc.o: FWLIB\src\misc.c 2 | .\objects\misc.o: .\FWLIB\inc\misc.h 3 | .\objects\misc.o: .\USER\stm32f10x.h 4 | .\objects\misc.o: .\CMSIS\core_cm3.h 5 | .\objects\misc.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\misc.o: .\USER\system_stm32f10x.h 7 | .\objects\misc.o: .\USER\stm32f10x_conf.h 8 | .\objects\misc.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 9 | .\objects\misc.o: .\USER\stm32f10x.h 10 | .\objects\misc.o: .\FWLIB\inc\stm32f10x_gpio.h 11 | .\objects\misc.o: .\FWLIB\inc\stm32f10x_rcc.h 12 | .\objects\misc.o: .\FWLIB\inc\stm32f10x_tim.h 13 | .\objects\misc.o: .\FWLIB\inc\stm32f10x_usart.h 14 | .\objects\misc.o: .\FWLIB\inc\misc.h 15 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_common_2_1_0_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /stm32Project/Objects/delay.d: -------------------------------------------------------------------------------- 1 | .\objects\delay.o: USER\delay.c 2 | .\objects\delay.o: USER\delay.h 3 | .\objects\delay.o: USER\sys.h 4 | .\objects\delay.o: USER\stm32f10x.h 5 | .\objects\delay.o: .\CMSIS\core_cm3.h 6 | .\objects\delay.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 7 | .\objects\delay.o: USER\system_stm32f10x.h 8 | .\objects\delay.o: USER\stm32f10x_conf.h 9 | .\objects\delay.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 10 | .\objects\delay.o: .\USER\stm32f10x.h 11 | .\objects\delay.o: .\FWLIB\inc\stm32f10x_gpio.h 12 | .\objects\delay.o: .\FWLIB\inc\stm32f10x_rcc.h 13 | .\objects\delay.o: .\FWLIB\inc\stm32f10x_tim.h 14 | .\objects\delay.o: .\FWLIB\inc\stm32f10x_usart.h 15 | .\objects\delay.o: .\FWLIB\inc\misc.h 16 | -------------------------------------------------------------------------------- /stm32Project/Objects/key.d: -------------------------------------------------------------------------------- 1 | .\objects\key.o: USER\key.c 2 | .\objects\key.o: USER\key.h 3 | .\objects\key.o: USER\sys.h 4 | .\objects\key.o: USER\stm32f10x.h 5 | .\objects\key.o: .\CMSIS\core_cm3.h 6 | .\objects\key.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 7 | .\objects\key.o: USER\system_stm32f10x.h 8 | .\objects\key.o: USER\stm32f10x_conf.h 9 | .\objects\key.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 10 | .\objects\key.o: .\USER\stm32f10x.h 11 | .\objects\key.o: .\FWLIB\inc\stm32f10x_gpio.h 12 | .\objects\key.o: .\FWLIB\inc\stm32f10x_rcc.h 13 | .\objects\key.o: .\FWLIB\inc\stm32f10x_tim.h 14 | .\objects\key.o: .\FWLIB\inc\stm32f10x_usart.h 15 | .\objects\key.o: .\FWLIB\inc\misc.h 16 | .\objects\key.o: USER\delay.h 17 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__androidx_loader_loader_1_0_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__junit_junit_4_12_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__androidx_viewpager_viewpager_1_0_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__androidx_activity_activity_1_0_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__androidx_customview_customview_1_0_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /stm32Project/Objects/adc.d: -------------------------------------------------------------------------------- 1 | .\objects\adc.o: USER\adc.c 2 | .\objects\adc.o: USER\adc.h 3 | .\objects\adc.o: USER\sys.h 4 | .\objects\adc.o: USER\stm32f10x.h 5 | .\objects\adc.o: .\CMSIS\core_cm3.h 6 | .\objects\adc.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 7 | .\objects\adc.o: USER\system_stm32f10x.h 8 | .\objects\adc.o: USER\stm32f10x_conf.h 9 | .\objects\adc.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 10 | .\objects\adc.o: .\USER\stm32f10x.h 11 | .\objects\adc.o: .\FWLIB\inc\stm32f10x_gpio.h 12 | .\objects\adc.o: .\FWLIB\inc\stm32f10x_rcc.h 13 | .\objects\adc.o: .\FWLIB\inc\stm32f10x_tim.h 14 | .\objects\adc.o: .\FWLIB\inc\stm32f10x_usart.h 15 | .\objects\adc.o: .\FWLIB\inc\misc.h 16 | .\objects\adc.o: USER\delay.h 17 | .\objects\adc.o: .\FWLIB\inc\stm32f10x_adc.h 18 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__androidx_arch_core_core_runtime_2_0_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__androidx_interpolator_interpolator_1_0_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__androidx_savedstate_savedstate_1_0_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__net_sf_kxml_kxml2_2_3_0_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__androidx_cursoradapter_cursoradapter_1_0_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_it.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_it.o: USER\stm32f10x_it.c 2 | .\objects\stm32f10x_it.o: USER\stm32f10x_it.h 3 | .\objects\stm32f10x_it.o: USER\stm32f10x.h 4 | .\objects\stm32f10x_it.o: .\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_it.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_it.o: USER\system_stm32f10x.h 7 | .\objects\stm32f10x_it.o: USER\stm32f10x_conf.h 8 | .\objects\stm32f10x_it.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 9 | .\objects\stm32f10x_it.o: .\USER\stm32f10x.h 10 | .\objects\stm32f10x_it.o: .\FWLIB\inc\stm32f10x_gpio.h 11 | .\objects\stm32f10x_it.o: .\FWLIB\inc\stm32f10x_rcc.h 12 | .\objects\stm32f10x_it.o: .\FWLIB\inc\stm32f10x_tim.h 13 | .\objects\stm32f10x_it.o: .\FWLIB\inc\stm32f10x_usart.h 14 | .\objects\stm32f10x_it.o: .\FWLIB\inc\misc.h 15 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_runtime_2_1_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__androidx_vectordrawable_vectordrawable_1_1_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /stm32Project/Objects/system_stm32f10x.d: -------------------------------------------------------------------------------- 1 | .\objects\system_stm32f10x.o: USER\system_stm32f10x.c 2 | .\objects\system_stm32f10x.o: USER\stm32f10x.h 3 | .\objects\system_stm32f10x.o: .\CMSIS\core_cm3.h 4 | .\objects\system_stm32f10x.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 5 | .\objects\system_stm32f10x.o: USER\system_stm32f10x.h 6 | .\objects\system_stm32f10x.o: USER\stm32f10x_conf.h 7 | .\objects\system_stm32f10x.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 8 | .\objects\system_stm32f10x.o: .\USER\stm32f10x.h 9 | .\objects\system_stm32f10x.o: .\FWLIB\inc\stm32f10x_gpio.h 10 | .\objects\system_stm32f10x.o: .\FWLIB\inc\stm32f10x_rcc.h 11 | .\objects\system_stm32f10x.o: .\FWLIB\inc\stm32f10x_tim.h 12 | .\objects\system_stm32f10x.o: .\FWLIB\inc\stm32f10x_usart.h 13 | .\objects\system_stm32f10x.o: .\FWLIB\inc\misc.h 14 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_livedata_2_0_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__javax_inject_javax_inject_1_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_viewmodel_2_1_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__com_squareup_javawriter_2_1_1_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__androidx_appcompat_appcompat_resources_1_1_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_adc.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_adc.o: FWLIB\src\stm32f10x_adc.c 2 | .\objects\stm32f10x_adc.o: .\FWLIB\inc\stm32f10x_adc.h 3 | .\objects\stm32f10x_adc.o: .\USER\stm32f10x.h 4 | .\objects\stm32f10x_adc.o: .\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_adc.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_adc.o: .\USER\system_stm32f10x.h 7 | .\objects\stm32f10x_adc.o: .\USER\stm32f10x_conf.h 8 | .\objects\stm32f10x_adc.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 9 | .\objects\stm32f10x_adc.o: .\USER\stm32f10x.h 10 | .\objects\stm32f10x_adc.o: .\FWLIB\inc\stm32f10x_gpio.h 11 | .\objects\stm32f10x_adc.o: .\FWLIB\inc\stm32f10x_rcc.h 12 | .\objects\stm32f10x_adc.o: .\FWLIB\inc\stm32f10x_tim.h 13 | .\objects\stm32f10x_adc.o: .\FWLIB\inc\stm32f10x_usart.h 14 | .\objects\stm32f10x_adc.o: .\FWLIB\inc\misc.h 15 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_bkp.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_bkp.o: FWLIB\src\stm32f10x_bkp.c 2 | .\objects\stm32f10x_bkp.o: .\FWLIB\inc\stm32f10x_bkp.h 3 | .\objects\stm32f10x_bkp.o: .\USER\stm32f10x.h 4 | .\objects\stm32f10x_bkp.o: .\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_bkp.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_bkp.o: .\USER\system_stm32f10x.h 7 | .\objects\stm32f10x_bkp.o: .\USER\stm32f10x_conf.h 8 | .\objects\stm32f10x_bkp.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 9 | .\objects\stm32f10x_bkp.o: .\USER\stm32f10x.h 10 | .\objects\stm32f10x_bkp.o: .\FWLIB\inc\stm32f10x_gpio.h 11 | .\objects\stm32f10x_bkp.o: .\FWLIB\inc\stm32f10x_rcc.h 12 | .\objects\stm32f10x_bkp.o: .\FWLIB\inc\stm32f10x_tim.h 13 | .\objects\stm32f10x_bkp.o: .\FWLIB\inc\stm32f10x_usart.h 14 | .\objects\stm32f10x_bkp.o: .\FWLIB\inc\misc.h 15 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_can.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_can.o: FWLIB\src\stm32f10x_can.c 2 | .\objects\stm32f10x_can.o: .\FWLIB\inc\stm32f10x_can.h 3 | .\objects\stm32f10x_can.o: .\USER\stm32f10x.h 4 | .\objects\stm32f10x_can.o: .\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_can.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_can.o: .\USER\system_stm32f10x.h 7 | .\objects\stm32f10x_can.o: .\USER\stm32f10x_conf.h 8 | .\objects\stm32f10x_can.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 9 | .\objects\stm32f10x_can.o: .\USER\stm32f10x.h 10 | .\objects\stm32f10x_can.o: .\FWLIB\inc\stm32f10x_gpio.h 11 | .\objects\stm32f10x_can.o: .\FWLIB\inc\stm32f10x_rcc.h 12 | .\objects\stm32f10x_can.o: .\FWLIB\inc\stm32f10x_tim.h 13 | .\objects\stm32f10x_can.o: .\FWLIB\inc\stm32f10x_usart.h 14 | .\objects\stm32f10x_can.o: .\FWLIB\inc\misc.h 15 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_cec.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_cec.o: FWLIB\src\stm32f10x_cec.c 2 | .\objects\stm32f10x_cec.o: .\FWLIB\inc\stm32f10x_cec.h 3 | .\objects\stm32f10x_cec.o: .\USER\stm32f10x.h 4 | .\objects\stm32f10x_cec.o: .\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_cec.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_cec.o: .\USER\system_stm32f10x.h 7 | .\objects\stm32f10x_cec.o: .\USER\stm32f10x_conf.h 8 | .\objects\stm32f10x_cec.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 9 | .\objects\stm32f10x_cec.o: .\USER\stm32f10x.h 10 | .\objects\stm32f10x_cec.o: .\FWLIB\inc\stm32f10x_gpio.h 11 | .\objects\stm32f10x_cec.o: .\FWLIB\inc\stm32f10x_rcc.h 12 | .\objects\stm32f10x_cec.o: .\FWLIB\inc\stm32f10x_tim.h 13 | .\objects\stm32f10x_cec.o: .\FWLIB\inc\stm32f10x_usart.h 14 | .\objects\stm32f10x_cec.o: .\FWLIB\inc\misc.h 15 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_crc.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_crc.o: FWLIB\src\stm32f10x_crc.c 2 | .\objects\stm32f10x_crc.o: .\FWLIB\inc\stm32f10x_crc.h 3 | .\objects\stm32f10x_crc.o: .\USER\stm32f10x.h 4 | .\objects\stm32f10x_crc.o: .\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_crc.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_crc.o: .\USER\system_stm32f10x.h 7 | .\objects\stm32f10x_crc.o: .\USER\stm32f10x_conf.h 8 | .\objects\stm32f10x_crc.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 9 | .\objects\stm32f10x_crc.o: .\USER\stm32f10x.h 10 | .\objects\stm32f10x_crc.o: .\FWLIB\inc\stm32f10x_gpio.h 11 | .\objects\stm32f10x_crc.o: .\FWLIB\inc\stm32f10x_rcc.h 12 | .\objects\stm32f10x_crc.o: .\FWLIB\inc\stm32f10x_tim.h 13 | .\objects\stm32f10x_crc.o: .\FWLIB\inc\stm32f10x_usart.h 14 | .\objects\stm32f10x_crc.o: .\FWLIB\inc\misc.h 15 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_dac.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_dac.o: FWLIB\src\stm32f10x_dac.c 2 | .\objects\stm32f10x_dac.o: .\FWLIB\inc\stm32f10x_dac.h 3 | .\objects\stm32f10x_dac.o: .\USER\stm32f10x.h 4 | .\objects\stm32f10x_dac.o: .\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_dac.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_dac.o: .\USER\system_stm32f10x.h 7 | .\objects\stm32f10x_dac.o: .\USER\stm32f10x_conf.h 8 | .\objects\stm32f10x_dac.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 9 | .\objects\stm32f10x_dac.o: .\USER\stm32f10x.h 10 | .\objects\stm32f10x_dac.o: .\FWLIB\inc\stm32f10x_gpio.h 11 | .\objects\stm32f10x_dac.o: .\FWLIB\inc\stm32f10x_rcc.h 12 | .\objects\stm32f10x_dac.o: .\FWLIB\inc\stm32f10x_tim.h 13 | .\objects\stm32f10x_dac.o: .\FWLIB\inc\stm32f10x_usart.h 14 | .\objects\stm32f10x_dac.o: .\FWLIB\inc\misc.h 15 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_dma.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_dma.o: FWLIB\src\stm32f10x_dma.c 2 | .\objects\stm32f10x_dma.o: .\FWLIB\inc\stm32f10x_dma.h 3 | .\objects\stm32f10x_dma.o: .\USER\stm32f10x.h 4 | .\objects\stm32f10x_dma.o: .\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_dma.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_dma.o: .\USER\system_stm32f10x.h 7 | .\objects\stm32f10x_dma.o: .\USER\stm32f10x_conf.h 8 | .\objects\stm32f10x_dma.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 9 | .\objects\stm32f10x_dma.o: .\USER\stm32f10x.h 10 | .\objects\stm32f10x_dma.o: .\FWLIB\inc\stm32f10x_gpio.h 11 | .\objects\stm32f10x_dma.o: .\FWLIB\inc\stm32f10x_rcc.h 12 | .\objects\stm32f10x_dma.o: .\FWLIB\inc\stm32f10x_tim.h 13 | .\objects\stm32f10x_dma.o: .\FWLIB\inc\stm32f10x_usart.h 14 | .\objects\stm32f10x_dma.o: .\FWLIB\inc\misc.h 15 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_i2c.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_i2c.o: FWLIB\src\stm32f10x_i2c.c 2 | .\objects\stm32f10x_i2c.o: .\FWLIB\inc\stm32f10x_i2c.h 3 | .\objects\stm32f10x_i2c.o: .\USER\stm32f10x.h 4 | .\objects\stm32f10x_i2c.o: .\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_i2c.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_i2c.o: .\USER\system_stm32f10x.h 7 | .\objects\stm32f10x_i2c.o: .\USER\stm32f10x_conf.h 8 | .\objects\stm32f10x_i2c.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 9 | .\objects\stm32f10x_i2c.o: .\USER\stm32f10x.h 10 | .\objects\stm32f10x_i2c.o: .\FWLIB\inc\stm32f10x_gpio.h 11 | .\objects\stm32f10x_i2c.o: .\FWLIB\inc\stm32f10x_rcc.h 12 | .\objects\stm32f10x_i2c.o: .\FWLIB\inc\stm32f10x_tim.h 13 | .\objects\stm32f10x_i2c.o: .\FWLIB\inc\stm32f10x_usart.h 14 | .\objects\stm32f10x_i2c.o: .\FWLIB\inc\misc.h 15 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_pwr.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_pwr.o: FWLIB\src\stm32f10x_pwr.c 2 | .\objects\stm32f10x_pwr.o: .\FWLIB\inc\stm32f10x_pwr.h 3 | .\objects\stm32f10x_pwr.o: .\USER\stm32f10x.h 4 | .\objects\stm32f10x_pwr.o: .\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_pwr.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_pwr.o: .\USER\system_stm32f10x.h 7 | .\objects\stm32f10x_pwr.o: .\USER\stm32f10x_conf.h 8 | .\objects\stm32f10x_pwr.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 9 | .\objects\stm32f10x_pwr.o: .\USER\stm32f10x.h 10 | .\objects\stm32f10x_pwr.o: .\FWLIB\inc\stm32f10x_gpio.h 11 | .\objects\stm32f10x_pwr.o: .\FWLIB\inc\stm32f10x_rcc.h 12 | .\objects\stm32f10x_pwr.o: .\FWLIB\inc\stm32f10x_tim.h 13 | .\objects\stm32f10x_pwr.o: .\FWLIB\inc\stm32f10x_usart.h 14 | .\objects\stm32f10x_pwr.o: .\FWLIB\inc\misc.h 15 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_rcc.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_rcc.o: FWLIB\src\stm32f10x_rcc.c 2 | .\objects\stm32f10x_rcc.o: .\FWLIB\inc\stm32f10x_rcc.h 3 | .\objects\stm32f10x_rcc.o: .\USER\stm32f10x.h 4 | .\objects\stm32f10x_rcc.o: .\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_rcc.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_rcc.o: .\USER\system_stm32f10x.h 7 | .\objects\stm32f10x_rcc.o: .\USER\stm32f10x_conf.h 8 | .\objects\stm32f10x_rcc.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 9 | .\objects\stm32f10x_rcc.o: .\USER\stm32f10x.h 10 | .\objects\stm32f10x_rcc.o: .\FWLIB\inc\stm32f10x_gpio.h 11 | .\objects\stm32f10x_rcc.o: .\FWLIB\inc\stm32f10x_rcc.h 12 | .\objects\stm32f10x_rcc.o: .\FWLIB\inc\stm32f10x_tim.h 13 | .\objects\stm32f10x_rcc.o: .\FWLIB\inc\stm32f10x_usart.h 14 | .\objects\stm32f10x_rcc.o: .\FWLIB\inc\misc.h 15 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_rtc.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_rtc.o: FWLIB\src\stm32f10x_rtc.c 2 | .\objects\stm32f10x_rtc.o: .\FWLIB\inc\stm32f10x_rtc.h 3 | .\objects\stm32f10x_rtc.o: .\USER\stm32f10x.h 4 | .\objects\stm32f10x_rtc.o: .\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_rtc.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_rtc.o: .\USER\system_stm32f10x.h 7 | .\objects\stm32f10x_rtc.o: .\USER\stm32f10x_conf.h 8 | .\objects\stm32f10x_rtc.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 9 | .\objects\stm32f10x_rtc.o: .\USER\stm32f10x.h 10 | .\objects\stm32f10x_rtc.o: .\FWLIB\inc\stm32f10x_gpio.h 11 | .\objects\stm32f10x_rtc.o: .\FWLIB\inc\stm32f10x_rcc.h 12 | .\objects\stm32f10x_rtc.o: .\FWLIB\inc\stm32f10x_tim.h 13 | .\objects\stm32f10x_rtc.o: .\FWLIB\inc\stm32f10x_usart.h 14 | .\objects\stm32f10x_rtc.o: .\FWLIB\inc\misc.h 15 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_spi.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_spi.o: FWLIB\src\stm32f10x_spi.c 2 | .\objects\stm32f10x_spi.o: .\FWLIB\inc\stm32f10x_spi.h 3 | .\objects\stm32f10x_spi.o: .\USER\stm32f10x.h 4 | .\objects\stm32f10x_spi.o: .\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_spi.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_spi.o: .\USER\system_stm32f10x.h 7 | .\objects\stm32f10x_spi.o: .\USER\stm32f10x_conf.h 8 | .\objects\stm32f10x_spi.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 9 | .\objects\stm32f10x_spi.o: .\USER\stm32f10x.h 10 | .\objects\stm32f10x_spi.o: .\FWLIB\inc\stm32f10x_gpio.h 11 | .\objects\stm32f10x_spi.o: .\FWLIB\inc\stm32f10x_rcc.h 12 | .\objects\stm32f10x_spi.o: .\FWLIB\inc\stm32f10x_tim.h 13 | .\objects\stm32f10x_spi.o: .\FWLIB\inc\stm32f10x_usart.h 14 | .\objects\stm32f10x_spi.o: .\FWLIB\inc\misc.h 15 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_tim.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_tim.o: FWLIB\src\stm32f10x_tim.c 2 | .\objects\stm32f10x_tim.o: .\FWLIB\inc\stm32f10x_tim.h 3 | .\objects\stm32f10x_tim.o: .\USER\stm32f10x.h 4 | .\objects\stm32f10x_tim.o: .\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_tim.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_tim.o: .\USER\system_stm32f10x.h 7 | .\objects\stm32f10x_tim.o: .\USER\stm32f10x_conf.h 8 | .\objects\stm32f10x_tim.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 9 | .\objects\stm32f10x_tim.o: .\USER\stm32f10x.h 10 | .\objects\stm32f10x_tim.o: .\FWLIB\inc\stm32f10x_gpio.h 11 | .\objects\stm32f10x_tim.o: .\FWLIB\inc\stm32f10x_rcc.h 12 | .\objects\stm32f10x_tim.o: .\FWLIB\inc\stm32f10x_tim.h 13 | .\objects\stm32f10x_tim.o: .\FWLIB\inc\stm32f10x_usart.h 14 | .\objects\stm32f10x_tim.o: .\FWLIB\inc\misc.h 15 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_livedata_core_2_0_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /androidControl/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 19 | 20 | -------------------------------------------------------------------------------- /androidControl/app/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 19 | 20 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__androidx_versionedparcelable_versionedparcelable_1_1_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_exti.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_exti.o: FWLIB\src\stm32f10x_exti.c 2 | .\objects\stm32f10x_exti.o: .\FWLIB\inc\stm32f10x_exti.h 3 | .\objects\stm32f10x_exti.o: .\USER\stm32f10x.h 4 | .\objects\stm32f10x_exti.o: .\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_exti.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_exti.o: .\USER\system_stm32f10x.h 7 | .\objects\stm32f10x_exti.o: .\USER\stm32f10x_conf.h 8 | .\objects\stm32f10x_exti.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 9 | .\objects\stm32f10x_exti.o: .\USER\stm32f10x.h 10 | .\objects\stm32f10x_exti.o: .\FWLIB\inc\stm32f10x_gpio.h 11 | .\objects\stm32f10x_exti.o: .\FWLIB\inc\stm32f10x_rcc.h 12 | .\objects\stm32f10x_exti.o: .\FWLIB\inc\stm32f10x_tim.h 13 | .\objects\stm32f10x_exti.o: .\FWLIB\inc\stm32f10x_usart.h 14 | .\objects\stm32f10x_exti.o: .\FWLIB\inc\misc.h 15 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_fsmc.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_fsmc.o: FWLIB\src\stm32f10x_fsmc.c 2 | .\objects\stm32f10x_fsmc.o: .\FWLIB\inc\stm32f10x_fsmc.h 3 | .\objects\stm32f10x_fsmc.o: .\USER\stm32f10x.h 4 | .\objects\stm32f10x_fsmc.o: .\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_fsmc.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_fsmc.o: .\USER\system_stm32f10x.h 7 | .\objects\stm32f10x_fsmc.o: .\USER\stm32f10x_conf.h 8 | .\objects\stm32f10x_fsmc.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 9 | .\objects\stm32f10x_fsmc.o: .\USER\stm32f10x.h 10 | .\objects\stm32f10x_fsmc.o: .\FWLIB\inc\stm32f10x_gpio.h 11 | .\objects\stm32f10x_fsmc.o: .\FWLIB\inc\stm32f10x_rcc.h 12 | .\objects\stm32f10x_fsmc.o: .\FWLIB\inc\stm32f10x_tim.h 13 | .\objects\stm32f10x_fsmc.o: .\FWLIB\inc\stm32f10x_usart.h 14 | .\objects\stm32f10x_fsmc.o: .\FWLIB\inc\misc.h 15 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_gpio.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_gpio.o: FWLIB\src\stm32f10x_gpio.c 2 | .\objects\stm32f10x_gpio.o: .\FWLIB\inc\stm32f10x_gpio.h 3 | .\objects\stm32f10x_gpio.o: .\USER\stm32f10x.h 4 | .\objects\stm32f10x_gpio.o: .\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_gpio.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_gpio.o: .\USER\system_stm32f10x.h 7 | .\objects\stm32f10x_gpio.o: .\USER\stm32f10x_conf.h 8 | .\objects\stm32f10x_gpio.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 9 | .\objects\stm32f10x_gpio.o: .\USER\stm32f10x.h 10 | .\objects\stm32f10x_gpio.o: .\FWLIB\inc\stm32f10x_gpio.h 11 | .\objects\stm32f10x_gpio.o: .\FWLIB\inc\stm32f10x_rcc.h 12 | .\objects\stm32f10x_gpio.o: .\FWLIB\inc\stm32f10x_tim.h 13 | .\objects\stm32f10x_gpio.o: .\FWLIB\inc\stm32f10x_usart.h 14 | .\objects\stm32f10x_gpio.o: .\FWLIB\inc\misc.h 15 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_iwdg.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_iwdg.o: FWLIB\src\stm32f10x_iwdg.c 2 | .\objects\stm32f10x_iwdg.o: .\FWLIB\inc\stm32f10x_iwdg.h 3 | .\objects\stm32f10x_iwdg.o: .\USER\stm32f10x.h 4 | .\objects\stm32f10x_iwdg.o: .\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_iwdg.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_iwdg.o: .\USER\system_stm32f10x.h 7 | .\objects\stm32f10x_iwdg.o: .\USER\stm32f10x_conf.h 8 | .\objects\stm32f10x_iwdg.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 9 | .\objects\stm32f10x_iwdg.o: .\USER\stm32f10x.h 10 | .\objects\stm32f10x_iwdg.o: .\FWLIB\inc\stm32f10x_gpio.h 11 | .\objects\stm32f10x_iwdg.o: .\FWLIB\inc\stm32f10x_rcc.h 12 | .\objects\stm32f10x_iwdg.o: .\FWLIB\inc\stm32f10x_tim.h 13 | .\objects\stm32f10x_iwdg.o: .\FWLIB\inc\stm32f10x_usart.h 14 | .\objects\stm32f10x_iwdg.o: .\FWLIB\inc\misc.h 15 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_sdio.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_sdio.o: FWLIB\src\stm32f10x_sdio.c 2 | .\objects\stm32f10x_sdio.o: .\FWLIB\inc\stm32f10x_sdio.h 3 | .\objects\stm32f10x_sdio.o: .\USER\stm32f10x.h 4 | .\objects\stm32f10x_sdio.o: .\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_sdio.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_sdio.o: .\USER\system_stm32f10x.h 7 | .\objects\stm32f10x_sdio.o: .\USER\stm32f10x_conf.h 8 | .\objects\stm32f10x_sdio.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 9 | .\objects\stm32f10x_sdio.o: .\USER\stm32f10x.h 10 | .\objects\stm32f10x_sdio.o: .\FWLIB\inc\stm32f10x_gpio.h 11 | .\objects\stm32f10x_sdio.o: .\FWLIB\inc\stm32f10x_rcc.h 12 | .\objects\stm32f10x_sdio.o: .\FWLIB\inc\stm32f10x_tim.h 13 | .\objects\stm32f10x_sdio.o: .\FWLIB\inc\stm32f10x_usart.h 14 | .\objects\stm32f10x_sdio.o: .\FWLIB\inc\misc.h 15 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_wwdg.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_wwdg.o: FWLIB\src\stm32f10x_wwdg.c 2 | .\objects\stm32f10x_wwdg.o: .\FWLIB\inc\stm32f10x_wwdg.h 3 | .\objects\stm32f10x_wwdg.o: .\USER\stm32f10x.h 4 | .\objects\stm32f10x_wwdg.o: .\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_wwdg.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_wwdg.o: .\USER\system_stm32f10x.h 7 | .\objects\stm32f10x_wwdg.o: .\USER\stm32f10x_conf.h 8 | .\objects\stm32f10x_wwdg.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 9 | .\objects\stm32f10x_wwdg.o: .\USER\stm32f10x.h 10 | .\objects\stm32f10x_wwdg.o: .\FWLIB\inc\stm32f10x_gpio.h 11 | .\objects\stm32f10x_wwdg.o: .\FWLIB\inc\stm32f10x_rcc.h 12 | .\objects\stm32f10x_wwdg.o: .\FWLIB\inc\stm32f10x_tim.h 13 | .\objects\stm32f10x_wwdg.o: .\FWLIB\inc\stm32f10x_usart.h 14 | .\objects\stm32f10x_wwdg.o: .\FWLIB\inc\misc.h 15 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__androidx_vectordrawable_vectordrawable_animated_1_1_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__androidx_annotation_annotation_1_1_0_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__org_hamcrest_hamcrest_library_1_3_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /androidControl/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # You can control the set of applied configuration files using the 3 | # proguardFiles setting in build.gradle. 4 | # 5 | # For more details, see 6 | # http://developer.android.com/guide/developing/tools/proguard.html 7 | 8 | # If your project uses WebView with JS, uncomment the following 9 | # and specify the fully qualified class name to the JavaScript interface 10 | # class: 11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 12 | # public *; 13 | #} 14 | 15 | # Uncomment this to preserve the line number information for 16 | # debugging stack traces. 17 | #-keepattributes SourceFile,LineNumberTable 18 | 19 | # If you keep the line number information, uncomment this to 20 | # hide the original source file name. 21 | #-renamesourcefileattribute SourceFile 22 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_flash.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_flash.o: FWLIB\src\stm32f10x_flash.c 2 | .\objects\stm32f10x_flash.o: .\FWLIB\inc\stm32f10x_flash.h 3 | .\objects\stm32f10x_flash.o: .\USER\stm32f10x.h 4 | .\objects\stm32f10x_flash.o: .\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_flash.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_flash.o: .\USER\system_stm32f10x.h 7 | .\objects\stm32f10x_flash.o: .\USER\stm32f10x_conf.h 8 | .\objects\stm32f10x_flash.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 9 | .\objects\stm32f10x_flash.o: .\USER\stm32f10x.h 10 | .\objects\stm32f10x_flash.o: .\FWLIB\inc\stm32f10x_gpio.h 11 | .\objects\stm32f10x_flash.o: .\FWLIB\inc\stm32f10x_rcc.h 12 | .\objects\stm32f10x_flash.o: .\FWLIB\inc\stm32f10x_tim.h 13 | .\objects\stm32f10x_flash.o: .\FWLIB\inc\stm32f10x_usart.h 14 | .\objects\stm32f10x_flash.o: .\FWLIB\inc\misc.h 15 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_gpio_1.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_gpio_1.o: FWLIB\src\stm32f10x_gpio.c 2 | .\objects\stm32f10x_gpio_1.o: .\FWLIB\inc\stm32f10x_gpio.h 3 | .\objects\stm32f10x_gpio_1.o: .\USER\stm32f10x.h 4 | .\objects\stm32f10x_gpio_1.o: .\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_gpio_1.o: D:\keli5\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_gpio_1.o: .\USER\system_stm32f10x.h 7 | .\objects\stm32f10x_gpio_1.o: .\USER\stm32f10x_conf.h 8 | .\objects\stm32f10x_gpio_1.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 9 | .\objects\stm32f10x_gpio_1.o: .\USER\stm32f10x.h 10 | .\objects\stm32f10x_gpio_1.o: .\FWLIB\inc\stm32f10x_gpio.h 11 | .\objects\stm32f10x_gpio_1.o: .\FWLIB\inc\stm32f10x_rcc.h 12 | .\objects\stm32f10x_gpio_1.o: .\FWLIB\inc\stm32f10x_tim.h 13 | .\objects\stm32f10x_gpio_1.o: .\FWLIB\inc\stm32f10x_usart.h 14 | .\objects\stm32f10x_gpio_1.o: .\FWLIB\inc\misc.h 15 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_usart.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_usart.o: FWLIB\src\stm32f10x_usart.c 2 | .\objects\stm32f10x_usart.o: .\FWLIB\inc\stm32f10x_usart.h 3 | .\objects\stm32f10x_usart.o: .\USER\stm32f10x.h 4 | .\objects\stm32f10x_usart.o: .\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_usart.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_usart.o: .\USER\system_stm32f10x.h 7 | .\objects\stm32f10x_usart.o: .\USER\stm32f10x_conf.h 8 | .\objects\stm32f10x_usart.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 9 | .\objects\stm32f10x_usart.o: .\USER\stm32f10x.h 10 | .\objects\stm32f10x_usart.o: .\FWLIB\inc\stm32f10x_gpio.h 11 | .\objects\stm32f10x_usart.o: .\FWLIB\inc\stm32f10x_rcc.h 12 | .\objects\stm32f10x_usart.o: .\FWLIB\inc\stm32f10x_tim.h 13 | .\objects\stm32f10x_usart.o: .\FWLIB\inc\stm32f10x_usart.h 14 | .\objects\stm32f10x_usart.o: .\FWLIB\inc\misc.h 15 | -------------------------------------------------------------------------------- /stm32Project/Objects/timer.d: -------------------------------------------------------------------------------- 1 | .\objects\timer.o: USER\timer.c 2 | .\objects\timer.o: USER\timer.h 3 | .\objects\timer.o: USER\sys.h 4 | .\objects\timer.o: USER\stm32f10x.h 5 | .\objects\timer.o: .\CMSIS\core_cm3.h 6 | .\objects\timer.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 7 | .\objects\timer.o: USER\system_stm32f10x.h 8 | .\objects\timer.o: USER\stm32f10x_conf.h 9 | .\objects\timer.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 10 | .\objects\timer.o: .\USER\stm32f10x.h 11 | .\objects\timer.o: .\FWLIB\inc\stm32f10x_gpio.h 12 | .\objects\timer.o: .\FWLIB\inc\stm32f10x_rcc.h 13 | .\objects\timer.o: .\FWLIB\inc\stm32f10x_tim.h 14 | .\objects\timer.o: .\FWLIB\inc\stm32f10x_usart.h 15 | .\objects\timer.o: .\FWLIB\inc\misc.h 16 | .\objects\timer.o: USER\led.h 17 | .\objects\timer.o: USER\usart.h 18 | .\objects\timer.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdio.h 19 | -------------------------------------------------------------------------------- /stm32Project/Objects/stm32f10x_dbgmcu.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_dbgmcu.o: FWLIB\src\stm32f10x_dbgmcu.c 2 | .\objects\stm32f10x_dbgmcu.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 3 | .\objects\stm32f10x_dbgmcu.o: .\USER\stm32f10x.h 4 | .\objects\stm32f10x_dbgmcu.o: .\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_dbgmcu.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_dbgmcu.o: .\USER\system_stm32f10x.h 7 | .\objects\stm32f10x_dbgmcu.o: .\USER\stm32f10x_conf.h 8 | .\objects\stm32f10x_dbgmcu.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 9 | .\objects\stm32f10x_dbgmcu.o: .\FWLIB\inc\stm32f10x_gpio.h 10 | .\objects\stm32f10x_dbgmcu.o: .\USER\stm32f10x.h 11 | .\objects\stm32f10x_dbgmcu.o: .\FWLIB\inc\stm32f10x_rcc.h 12 | .\objects\stm32f10x_dbgmcu.o: .\FWLIB\inc\stm32f10x_tim.h 13 | .\objects\stm32f10x_dbgmcu.o: .\FWLIB\inc\stm32f10x_usart.h 14 | .\objects\stm32f10x_dbgmcu.o: .\FWLIB\inc\misc.h 15 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__org_hamcrest_hamcrest_integration_1_3_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /androidControl/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__androidx_core_core_1_1_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__androidx_test_core_1_2_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__androidx_test_runner_1_2_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__androidx_test_monitor_1_2_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__androidx_test_ext_junit_1_1_1_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /androidControl/app/src/androidTest/java/com/example/led/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- 1 | package com.example.led; 2 | 3 | import android.content.Context; 4 | 5 | import androidx.test.platform.app.InstrumentationRegistry; 6 | import androidx.test.ext.junit.runners.AndroidJUnit4; 7 | 8 | import org.junit.Test; 9 | import org.junit.runner.RunWith; 10 | 11 | import static org.junit.Assert.*; 12 | 13 | /** 14 | * Instrumented test, which will execute on an Android device. 15 | * 16 | * @see Testing documentation 17 | */ 18 | @RunWith(AndroidJUnit4.class) 19 | public class ExampleInstrumentedTest { 20 | @Test 21 | public void useAppContext() { 22 | // Context of the app under test. 23 | Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); 24 | 25 | assertEquals("com.example.led", appContext.getPackageName()); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__androidx_fragment_fragment_1_1_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /stm32Project/Objects/edpkit.d: -------------------------------------------------------------------------------- 1 | .\objects\edpkit.o: USER\EdpKit.c 2 | .\objects\edpkit.o: USER\EdpKit.h 3 | .\objects\edpkit.o: USER\Common.h 4 | .\objects\edpkit.o: USER\malloc.h 5 | .\objects\edpkit.o: USER\stm32f10x.h 6 | .\objects\edpkit.o: .\CMSIS\core_cm3.h 7 | .\objects\edpkit.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 8 | .\objects\edpkit.o: USER\system_stm32f10x.h 9 | .\objects\edpkit.o: USER\stm32f10x_conf.h 10 | .\objects\edpkit.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 11 | .\objects\edpkit.o: .\USER\stm32f10x.h 12 | .\objects\edpkit.o: .\FWLIB\inc\stm32f10x_gpio.h 13 | .\objects\edpkit.o: .\FWLIB\inc\stm32f10x_rcc.h 14 | .\objects\edpkit.o: .\FWLIB\inc\stm32f10x_tim.h 15 | .\objects\edpkit.o: .\FWLIB\inc\stm32f10x_usart.h 16 | .\objects\edpkit.o: .\FWLIB\inc\misc.h 17 | .\objects\edpkit.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdlib.h 18 | .\objects\edpkit.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\string.h 19 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__androidx_appcompat_appcompat_1_1_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__androidx_drawerlayout_drawerlayout_1_0_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /stm32Project/Objects/usart.d: -------------------------------------------------------------------------------- 1 | .\objects\usart.o: USER\usart.c 2 | .\objects\usart.o: USER\usart.h 3 | .\objects\usart.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdio.h 4 | .\objects\usart.o: USER\sys.h 5 | .\objects\usart.o: USER\stm32f10x.h 6 | .\objects\usart.o: .\CMSIS\core_cm3.h 7 | .\objects\usart.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 8 | .\objects\usart.o: USER\system_stm32f10x.h 9 | .\objects\usart.o: USER\stm32f10x_conf.h 10 | .\objects\usart.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 11 | .\objects\usart.o: .\USER\stm32f10x.h 12 | .\objects\usart.o: .\FWLIB\inc\stm32f10x_gpio.h 13 | .\objects\usart.o: .\FWLIB\inc\stm32f10x_rcc.h 14 | .\objects\usart.o: .\FWLIB\inc\stm32f10x_tim.h 15 | .\objects\usart.o: .\FWLIB\inc\stm32f10x_usart.h 16 | .\objects\usart.o: .\FWLIB\inc\misc.h 17 | .\objects\usart.o: USER\delay.h 18 | .\objects\usart.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdarg.h 19 | .\objects\usart.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\string.h 20 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__androidx_test_espresso_espresso_core_3_2_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /androidControl/app/.idea/libraries/Gradle__androidx_test_espresso_espresso_idling_resource_3_2_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /androidControl/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | compileSdkVersion 29 5 | buildToolsVersion "29.0.3" 6 | 7 | defaultConfig { 8 | applicationId "com.example.led" 9 | minSdkVersion 16 10 | targetSdkVersion 29 11 | versionCode 1 12 | versionName "1.0" 13 | 14 | testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" 15 | } 16 | 17 | buildTypes { 18 | release { 19 | minifyEnabled false 20 | proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' 21 | } 22 | } 23 | 24 | } 25 | 26 | dependencies { 27 | implementation fileTree(dir: 'libs', include: ['*.jar']) 28 | 29 | implementation 'androidx.appcompat:appcompat:1.1.0' 30 | implementation 'androidx.constraintlayout:constraintlayout:1.1.3' 31 | testImplementation 'junit:junit:4.12' 32 | androidTestImplementation 'androidx.test.ext:junit:1.1.1' 33 | androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' 34 | } 35 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Light_Control 2 | 基于STM32F103C8T6、ESP8266WiFI、Onenet云端、安卓APP的智能灯光控制系统 3 | 4 | --- 5 | 6 | ### 目录解说: 7 | ``` 8 | androidContorl 是APP工程。 9 | stm32Project 是32单片机的工程,包括初始化ESP8266连接和接收模式。 10 | ``` 11 | ### 硬件设备 12 | 1、单片机采用STM32F103C8T6型号控制器 13 | ![STM32F103C8T6](./photo/stm32.png) 14 | 15 | 2、串口调试设备 16 | ![串口](./photo/cp2102串口.png) 17 | 18 | 3、esp8266 WIFI模块 19 | ![esp8266](./photo/esp8266.png) 20 | 21 | 4、下载模块 22 | ![S-Tlink](./photo/s-tlink.png) 23 | 24 | 5、LED灯驱动模块 25 | ![led_control](./photo/led_control.png) 26 | 27 | 6、LED灯电源模块 28 | ![led_power](./photo/led_power.png) 29 | 30 | ### APP 31 | APP采用Android Studio 进行开发
32 | 连接需要输入ESP8266的IP地址和端口号(ESP8266的AT指令可配置,详见工程代码) 33 | ![app](./photo/app界面.png) 34 | 35 | ### OneNET云端 36 | 云端采用OneNET开放平台,采用EDP方式与ESP8266进行通信
37 | 这种模式,需要ESP8266进行联网操作,可以连接wifi热点(工程代码可配置wifi热点信息) 38 | ![onenet](./photo/云端数据.png) 39 | 40 | --- 41 | 42 | ## 项目总结 43 | 系统目前实现功能: 44 | ``` 45 | 1、单片机按键切换模式:按键控制灯光、根据光照强度自动控制灯光、灯光数据上传云平台、安卓APP控制灯光。 46 | 2、每个模式之间相互独立。 47 | ``` 48 | 49 | 说明: 50 | ``` 51 | 使用本系统,在进入灯光数据上传云平台模式下,需要给ESP8266设置热点进行联网(此时ESP8266相当于客户端),热点的相关信息可在程序代码中配置;在安卓APP控制模式下,需要让APP所在的设备接上ESP8266的热点(此时ESP8266相当于服务器),再打开APP进行IP地址的直接相连进行通信。 52 | ``` -------------------------------------------------------------------------------- /androidControl/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | # IDE (e.g. Android Studio) users: 3 | # Gradle settings configured through the IDE *will override* 4 | # any settings specified in this file. 5 | # For more details on how to configure your build environment visit 6 | # http://www.gradle.org/docs/current/userguide/build_environment.html 7 | # Specifies the JVM arguments used for the daemon process. 8 | # The setting is particularly useful for tweaking memory settings. 9 | org.gradle.jvmargs=-Xmx1536m 10 | # When configured, Gradle will run in incubating parallel mode. 11 | # This option should only be used with decoupled projects. More details, visit 12 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 13 | # org.gradle.parallel=true 14 | # AndroidX package structure to make it clearer which packages are bundled with the 15 | # Android operating system, and which are packaged with your app's APK 16 | # https://developer.android.com/topic/libraries/support-library/androidx-rn 17 | android.useAndroidX=true 18 | # Automatically convert third-party libraries to use AndroidX 19 | android.enableJetifier=true 20 | android.injected.testOnly=false 21 | 22 | -------------------------------------------------------------------------------- /androidControl/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | 5 | repositories { 6 | // google() 7 | // jcenter() 8 | maven { url 'https://maven.aliyun.com/nexus/content/repositories/google' } 9 | maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/' } 10 | maven{ url 'http://maven.aliyun.com/nexus/content/repositories/jcenter'} 11 | 12 | } 13 | dependencies { 14 | classpath 'com.android.tools.build:gradle:3.6.1' 15 | 16 | 17 | // NOTE: Do not place your application dependencies here; they belong 18 | // in the individual module build.gradle files 19 | } 20 | } 21 | 22 | allprojects { 23 | repositories { 24 | // google() 25 | // jcenter() 26 | maven { url 'https://maven.aliyun.com/nexus/content/repositories/google' } 27 | maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/' } 28 | maven{ url 'http://maven.aliyun.com/nexus/content/repositories/jcenter'} 29 | } 30 | } 31 | 32 | task clean(type: Delete) { 33 | delete rootProject.buildDir 34 | } 35 | -------------------------------------------------------------------------------- /stm32Project/Objects/onenet.d: -------------------------------------------------------------------------------- 1 | .\objects\onenet.o: USER\onenet.c 2 | .\objects\onenet.o: USER\stm32f10x.h 3 | .\objects\onenet.o: .\CMSIS\core_cm3.h 4 | .\objects\onenet.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 5 | .\objects\onenet.o: USER\system_stm32f10x.h 6 | .\objects\onenet.o: USER\stm32f10x_conf.h 7 | .\objects\onenet.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 8 | .\objects\onenet.o: .\USER\stm32f10x.h 9 | .\objects\onenet.o: .\FWLIB\inc\stm32f10x_gpio.h 10 | .\objects\onenet.o: .\FWLIB\inc\stm32f10x_rcc.h 11 | .\objects\onenet.o: .\FWLIB\inc\stm32f10x_tim.h 12 | .\objects\onenet.o: .\FWLIB\inc\stm32f10x_usart.h 13 | .\objects\onenet.o: .\FWLIB\inc\misc.h 14 | .\objects\onenet.o: USER\esp8266.h 15 | .\objects\onenet.o: USER\delay.h 16 | .\objects\onenet.o: USER\sys.h 17 | .\objects\onenet.o: USER\usart.h 18 | .\objects\onenet.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdio.h 19 | .\objects\onenet.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h 20 | .\objects\onenet.o: USER\onenet.h 21 | .\objects\onenet.o: USER\edpkit.h 22 | .\objects\onenet.o: USER\Common.h 23 | .\objects\onenet.o: USER\malloc.h 24 | .\objects\onenet.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdlib.h 25 | .\objects\onenet.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\string.h 26 | -------------------------------------------------------------------------------- /stm32Project/Objects/esp8266.d: -------------------------------------------------------------------------------- 1 | .\objects\esp8266.o: USER\esp8266.c 2 | .\objects\esp8266.o: USER\stm32f10x.h 3 | .\objects\esp8266.o: .\CMSIS\core_cm3.h 4 | .\objects\esp8266.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 5 | .\objects\esp8266.o: USER\system_stm32f10x.h 6 | .\objects\esp8266.o: USER\stm32f10x_conf.h 7 | .\objects\esp8266.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 8 | .\objects\esp8266.o: .\USER\stm32f10x.h 9 | .\objects\esp8266.o: .\FWLIB\inc\stm32f10x_gpio.h 10 | .\objects\esp8266.o: .\FWLIB\inc\stm32f10x_rcc.h 11 | .\objects\esp8266.o: .\FWLIB\inc\stm32f10x_tim.h 12 | .\objects\esp8266.o: .\FWLIB\inc\stm32f10x_usart.h 13 | .\objects\esp8266.o: .\FWLIB\inc\misc.h 14 | .\objects\esp8266.o: USER\esp8266.h 15 | .\objects\esp8266.o: USER\delay.h 16 | .\objects\esp8266.o: USER\sys.h 17 | .\objects\esp8266.o: USER\usart.h 18 | .\objects\esp8266.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdio.h 19 | .\objects\esp8266.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h 20 | .\objects\esp8266.o: USER\edpkit.h 21 | .\objects\esp8266.o: USER\Common.h 22 | .\objects\esp8266.o: USER\malloc.h 23 | .\objects\esp8266.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdlib.h 24 | .\objects\esp8266.o: USER\led.h 25 | .\objects\esp8266.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\string.h 26 | -------------------------------------------------------------------------------- /stm32Project/Objects/main.d: -------------------------------------------------------------------------------- 1 | .\objects\main.o: USER\main.c 2 | .\objects\main.o: USER\led.h 3 | .\objects\main.o: USER\sys.h 4 | .\objects\main.o: USER\stm32f10x.h 5 | .\objects\main.o: .\CMSIS\core_cm3.h 6 | .\objects\main.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 7 | .\objects\main.o: USER\system_stm32f10x.h 8 | .\objects\main.o: USER\stm32f10x_conf.h 9 | .\objects\main.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 10 | .\objects\main.o: .\USER\stm32f10x.h 11 | .\objects\main.o: .\FWLIB\inc\stm32f10x_gpio.h 12 | .\objects\main.o: .\FWLIB\inc\stm32f10x_rcc.h 13 | .\objects\main.o: .\FWLIB\inc\stm32f10x_tim.h 14 | .\objects\main.o: .\FWLIB\inc\stm32f10x_usart.h 15 | .\objects\main.o: .\FWLIB\inc\misc.h 16 | .\objects\main.o: USER\delay.h 17 | .\objects\main.o: USER\key.h 18 | .\objects\main.o: USER\usart.h 19 | .\objects\main.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdio.h 20 | .\objects\main.o: USER\timer.h 21 | .\objects\main.o: USER\adc.h 22 | .\objects\main.o: USER\onenet.h 23 | .\objects\main.o: USER\esp8266.h 24 | .\objects\main.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h 25 | .\objects\main.o: USER\edpkit.h 26 | .\objects\main.o: USER\Common.h 27 | .\objects\main.o: USER\malloc.h 28 | .\objects\main.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdlib.h 29 | .\objects\main.o: .\FWLIB\inc\stm32f10x_adc.h 30 | -------------------------------------------------------------------------------- /stm32Project/Objects/esp8266_send.d: -------------------------------------------------------------------------------- 1 | .\objects\esp8266_send.o: USER\esp8266_send.c 2 | .\objects\esp8266_send.o: USER\esp8266_send.h 3 | .\objects\esp8266_send.o: USER\stm32f10x.h 4 | .\objects\esp8266_send.o: .\CMSIS\core_cm3.h 5 | .\objects\esp8266_send.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\esp8266_send.o: USER\system_stm32f10x.h 7 | .\objects\esp8266_send.o: USER\stm32f10x_conf.h 8 | .\objects\esp8266_send.o: .\FWLIB\inc\stm32f10x_dbgmcu.h 9 | .\objects\esp8266_send.o: .\USER\stm32f10x.h 10 | .\objects\esp8266_send.o: .\FWLIB\inc\stm32f10x_gpio.h 11 | .\objects\esp8266_send.o: .\FWLIB\inc\stm32f10x_rcc.h 12 | .\objects\esp8266_send.o: .\FWLIB\inc\stm32f10x_tim.h 13 | .\objects\esp8266_send.o: .\FWLIB\inc\stm32f10x_usart.h 14 | .\objects\esp8266_send.o: .\FWLIB\inc\misc.h 15 | .\objects\esp8266_send.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdio.h 16 | .\objects\esp8266_send.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\string.h 17 | .\objects\esp8266_send.o: USER\usart.h 18 | .\objects\esp8266_send.o: USER\sys.h 19 | .\objects\esp8266_send.o: USER\esp8266.h 20 | .\objects\esp8266_send.o: USER\delay.h 21 | .\objects\esp8266_send.o: USER\onenet.h 22 | .\objects\esp8266_send.o: USER\edpkit.h 23 | .\objects\esp8266_send.o: USER\Common.h 24 | .\objects\esp8266_send.o: USER\malloc.h 25 | .\objects\esp8266_send.o: F:\wwwQw\ELEpcApp\Keil5\ARM\ARMCC\Bin\..\include\stdlib.h 26 | -------------------------------------------------------------------------------- /stm32Project/Objects/smartlamp.lnp: -------------------------------------------------------------------------------- 1 | --cpu Cortex-M3 2 | ".\objects\delay.o" 3 | ".\objects\key.o" 4 | ".\objects\led.o" 5 | ".\objects\stm32f10x_it.o" 6 | ".\objects\sys.o" 7 | ".\objects\system_stm32f10x.o" 8 | ".\objects\timer.o" 9 | ".\objects\usart.o" 10 | ".\objects\main.o" 11 | ".\objects\adc.o" 12 | ".\objects\esp8266.o" 13 | ".\objects\onenet.o" 14 | ".\objects\edpkit.o" 15 | ".\objects\core_cm3.o" 16 | ".\objects\misc.o" 17 | ".\objects\stm32f10x_adc.o" 18 | ".\objects\stm32f10x_bkp.o" 19 | ".\objects\stm32f10x_can.o" 20 | ".\objects\stm32f10x_cec.o" 21 | ".\objects\stm32f10x_crc.o" 22 | ".\objects\stm32f10x_dac.o" 23 | ".\objects\stm32f10x_dbgmcu.o" 24 | ".\objects\stm32f10x_dma.o" 25 | ".\objects\stm32f10x_exti.o" 26 | ".\objects\stm32f10x_flash.o" 27 | ".\objects\stm32f10x_fsmc.o" 28 | ".\objects\stm32f10x_gpio.o" 29 | ".\objects\stm32f10x_i2c.o" 30 | ".\objects\stm32f10x_iwdg.o" 31 | ".\objects\stm32f10x_pwr.o" 32 | ".\objects\stm32f10x_rcc.o" 33 | ".\objects\stm32f10x_rtc.o" 34 | ".\objects\stm32f10x_sdio.o" 35 | ".\objects\stm32f10x_spi.o" 36 | ".\objects\stm32f10x_tim.o" 37 | ".\objects\stm32f10x_usart.o" 38 | ".\objects\stm32f10x_wwdg.o" 39 | ".\objects\startup_stm32f10x_hd.o" 40 | --strict --scatter ".\Objects\smartlamp.sct" 41 | --summary_stderr --info summarysizes --map --xref --callgraph --symbols 42 | --info sizes --info totals --info unused --info veneers 43 | --list ".\Listings\smartlamp.map" -o .\Objects\smartlamp.axf -------------------------------------------------------------------------------- /androidControl/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 15 | 18 | 21 | 22 | 23 | 24 | 30 | -------------------------------------------------------------------------------- /stm32Project/USER/stm32f10x_it.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file GPIO/IOToggle/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 | /* Includes ------------------------------------------------------------------*/ 27 | #include "stm32f10x.h" 28 | 29 | /* Exported types ------------------------------------------------------------*/ 30 | /* Exported constants --------------------------------------------------------*/ 31 | /* Exported macro ------------------------------------------------------------*/ 32 | /* Exported functions ------------------------------------------------------- */ 33 | 34 | void NMI_Handler(void); 35 | void HardFault_Handler(void); 36 | void MemManage_Handler(void); 37 | void BusFault_Handler(void); 38 | void UsageFault_Handler(void); 39 | void SVC_Handler(void); 40 | void DebugMon_Handler(void); 41 | void PendSV_Handler(void); 42 | void SysTick_Handler(void); 43 | 44 | #endif /* __STM32F10x_IT_H */ 45 | 46 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 47 | -------------------------------------------------------------------------------- /stm32Project/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 | -------------------------------------------------------------------------------- /stm32Project/USER/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 | -------------------------------------------------------------------------------- /stm32Project/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 | -------------------------------------------------------------------------------- /androidControl/gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | set DIRNAME=%~dp0 12 | if "%DIRNAME%" == "" set DIRNAME=. 13 | set APP_BASE_NAME=%~n0 14 | set APP_HOME=%DIRNAME% 15 | 16 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 17 | set DEFAULT_JVM_OPTS= 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windows variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | 53 | :win9xME_args 54 | @rem Slurp the command line arguments. 55 | set CMD_LINE_ARGS= 56 | set _SKIP=2 57 | 58 | :win9xME_args_slurp 59 | if "x%~1" == "x" goto execute 60 | 61 | set CMD_LINE_ARGS=%* 62 | 63 | :execute 64 | @rem Setup the command line 65 | 66 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 67 | 68 | @rem Execute Gradle 69 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 70 | 71 | :end 72 | @rem End local scope for the variables with windows NT shell 73 | if "%ERRORLEVEL%"=="0" goto mainEnd 74 | 75 | :fail 76 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 77 | rem the _cmd.exe /c_ return code! 78 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 79 | exit /b 1 80 | 81 | :mainEnd 82 | if "%OS%"=="Windows_NT" endlocal 83 | 84 | :omega 85 | -------------------------------------------------------------------------------- /androidControl/app/gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | set DIRNAME=%~dp0 12 | if "%DIRNAME%" == "" set DIRNAME=. 13 | set APP_BASE_NAME=%~n0 14 | set APP_HOME=%DIRNAME% 15 | 16 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 17 | set DEFAULT_JVM_OPTS= 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windows variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | 53 | :win9xME_args 54 | @rem Slurp the command line arguments. 55 | set CMD_LINE_ARGS= 56 | set _SKIP=2 57 | 58 | :win9xME_args_slurp 59 | if "x%~1" == "x" goto execute 60 | 61 | set CMD_LINE_ARGS=%* 62 | 63 | :execute 64 | @rem Setup the command line 65 | 66 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 67 | 68 | @rem Execute Gradle 69 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 70 | 71 | :end 72 | @rem End local scope for the variables with windows NT shell 73 | if "%ERRORLEVEL%"=="0" goto mainEnd 74 | 75 | :fail 76 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 77 | rem the _cmd.exe /c_ return code! 78 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 79 | exit /b 1 80 | 81 | :mainEnd 82 | if "%OS%"=="Windows_NT" endlocal 83 | 84 | :omega 85 | -------------------------------------------------------------------------------- /stm32Project/USER/stm32f10x_it.c: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file GPIO/IOToggle/stm32f10x_it.c 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 08-April-2011 7 | * @brief Main Interrupt Service Routines. 8 | * This file provides template for all exceptions handler and peripherals 9 | * interrupt service routine. 10 | ****************************************************************************** 11 | * @attention 12 | * 13 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 14 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 15 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 16 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 17 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 18 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 19 | * 20 | *

© COPYRIGHT 2011 STMicroelectronics

21 | ****************************************************************************** 22 | */ 23 | 24 | /* Includes ------------------------------------------------------------------*/ 25 | #include "stm32f10x_it.h" 26 | 27 | 28 | 29 | void NMI_Handler(void) 30 | { 31 | } 32 | 33 | void HardFault_Handler(void) 34 | { 35 | /* Go to infinite loop when Hard Fault exception occurs */ 36 | while (1) 37 | { 38 | } 39 | } 40 | 41 | void MemManage_Handler(void) 42 | { 43 | /* Go to infinite loop when Memory Manage exception occurs */ 44 | while (1) 45 | { 46 | } 47 | } 48 | 49 | 50 | void BusFault_Handler(void) 51 | { 52 | /* Go to infinite loop when Bus Fault exception occurs */ 53 | while (1) 54 | { 55 | } 56 | } 57 | 58 | void UsageFault_Handler(void) 59 | { 60 | /* Go to infinite loop when Usage Fault exception occurs */ 61 | while (1) 62 | { 63 | } 64 | } 65 | 66 | void SVC_Handler(void) 67 | { 68 | } 69 | 70 | void DebugMon_Handler(void) 71 | { 72 | } 73 | 74 | void PendSV_Handler(void) 75 | { 76 | } 77 | 78 | void SysTick_Handler(void) 79 | { 80 | } 81 | 82 | /******************************************************************************/ 83 | /* STM32F10x Peripherals Interrupt Handlers */ 84 | /* Add here the Interrupt Handler for the used peripheral(s) (PPP), for the */ 85 | /* available peripheral interrupt handler's name please refer to the startup */ 86 | /* file (startup_stm32f10x_xx.s). */ 87 | /******************************************************************************/ 88 | -------------------------------------------------------------------------------- /stm32Project/USER/stm32f10x_conf.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file GPIO/IOToggle/stm32f10x_conf.h 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 08-April-2011 7 | * @brief Library configuration 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 | /* Define to prevent recursive inclusion -------------------------------------*/ 23 | #ifndef __STM32F10x_CONF_H 24 | #define __STM32F10x_CONF_H 25 | 26 | /* Includes ------------------------------------------------------------------*/ 27 | /* Uncomment/Comment the line below to enable/disable peripheral header file inclusion */ 28 | //#include "stm32f10x_adc.h" 29 | //#include "stm32f10x_bkp.h" 30 | //#include "stm32f10x_can.h" 31 | //#include "stm32f10x_cec.h" 32 | //#include "stm32f10x_crc.h" 33 | //#include "stm32f10x_dac.h" 34 | #include "stm32f10x_dbgmcu.h" 35 | //#include "stm32f10x_dma.h" 36 | //#include "stm32f10x_exti.h" 37 | //#include "stm32f10x_flash.h" 38 | //#include "stm32f10x_fsmc.h" 39 | #include "stm32f10x_gpio.h" 40 | //#include "stm32f10x_i2c.h" 41 | //#include "stm32f10x_iwdg.h" 42 | //#include "stm32f10x_pwr.h" 43 | #include "stm32f10x_rcc.h" 44 | //#include "stm32f10x_rtc.h" 45 | //#include "stm32f10x_sdio.h" 46 | //#include "stm32f10x_spi.h" 47 | #include "stm32f10x_tim.h" 48 | #include "stm32f10x_usart.h" 49 | //#include "stm32f10x_wwdg.h" 50 | #include "misc.h" /* High level functions for NVIC and SysTick (add-on to CMSIS functions) */ 51 | 52 | /* Exported types ------------------------------------------------------------*/ 53 | /* Exported constants --------------------------------------------------------*/ 54 | /* Uncomment the line below to expanse the "assert_param" macro in the 55 | Standard Peripheral Library drivers code */ 56 | /* #define USE_FULL_ASSERT 1 */ 57 | 58 | /* Exported macro ------------------------------------------------------------*/ 59 | #ifdef USE_FULL_ASSERT 60 | 61 | /** 62 | * @brief The assert_param macro is used for function's parameters check. 63 | * @param expr: If expr is false, it calls assert_failed function which reports 64 | * the name of the source file and the source line number of the call 65 | * that failed. If expr is true, it returns no value. 66 | * @retval None 67 | */ 68 | #define assert_param(expr) ((expr) ? (void)0 : assert_failed((uint8_t *)__FILE__, __LINE__)) 69 | /* Exported functions ------------------------------------------------------- */ 70 | void assert_failed(uint8_t* file, uint32_t line); 71 | #else 72 | #define assert_param(expr) ((void)0) 73 | #endif /* USE_FULL_ASSERT */ 74 | 75 | #endif /* __STM32F10x_CONF_H */ 76 | 77 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 78 | -------------------------------------------------------------------------------- /stm32Project/FWLIB/inc/stm32f10x_wwdg.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file stm32f10x_wwdg.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 WWDG 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_WWDG_H 25 | #define __STM32F10x_WWDG_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 WWDG 39 | * @{ 40 | */ 41 | 42 | /** @defgroup WWDG_Exported_Types 43 | * @{ 44 | */ 45 | 46 | /** 47 | * @} 48 | */ 49 | 50 | /** @defgroup WWDG_Exported_Constants 51 | * @{ 52 | */ 53 | 54 | /** @defgroup WWDG_Prescaler 55 | * @{ 56 | */ 57 | 58 | #define WWDG_Prescaler_1 ((uint32_t)0x00000000) 59 | #define WWDG_Prescaler_2 ((uint32_t)0x00000080) 60 | #define WWDG_Prescaler_4 ((uint32_t)0x00000100) 61 | #define WWDG_Prescaler_8 ((uint32_t)0x00000180) 62 | #define IS_WWDG_PRESCALER(PRESCALER) (((PRESCALER) == WWDG_Prescaler_1) || \ 63 | ((PRESCALER) == WWDG_Prescaler_2) || \ 64 | ((PRESCALER) == WWDG_Prescaler_4) || \ 65 | ((PRESCALER) == WWDG_Prescaler_8)) 66 | #define IS_WWDG_WINDOW_VALUE(VALUE) ((VALUE) <= 0x7F) 67 | #define IS_WWDG_COUNTER(COUNTER) (((COUNTER) >= 0x40) && ((COUNTER) <= 0x7F)) 68 | 69 | /** 70 | * @} 71 | */ 72 | 73 | /** 74 | * @} 75 | */ 76 | 77 | /** @defgroup WWDG_Exported_Macros 78 | * @{ 79 | */ 80 | /** 81 | * @} 82 | */ 83 | 84 | /** @defgroup WWDG_Exported_Functions 85 | * @{ 86 | */ 87 | 88 | void WWDG_DeInit(void); 89 | void WWDG_SetPrescaler(uint32_t WWDG_Prescaler); 90 | void WWDG_SetWindowValue(uint8_t WindowValue); 91 | void WWDG_EnableIT(void); 92 | void WWDG_SetCounter(uint8_t Counter); 93 | void WWDG_Enable(uint8_t Counter); 94 | FlagStatus WWDG_GetFlagStatus(void); 95 | void WWDG_ClearFlag(void); 96 | 97 | #ifdef __cplusplus 98 | } 99 | #endif 100 | 101 | #endif /* __STM32F10x_WWDG_H */ 102 | 103 | /** 104 | * @} 105 | */ 106 | 107 | /** 108 | * @} 109 | */ 110 | 111 | /** 112 | * @} 113 | */ 114 | 115 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 116 | -------------------------------------------------------------------------------- /androidControl/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 28 | 29 | 45 | 46 |