├── .editorconfig ├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── README.md ├── docs ├── B.jpg ├── CH579.png ├── CH579DS1.PDF └── diff.png ├── index.json └── src ├── CH579Update ├── .gitignore ├── .idea │ ├── .gitignore │ ├── androidDexCompiler.xml │ ├── codeStyles │ │ └── Project.xml │ ├── compiler.xml │ ├── gradle.xml │ ├── jarRepositories.xml │ ├── kotlinc.xml │ ├── misc.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ ├── release │ │ └── output-metadata.json │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── cn │ │ │ └── wch │ │ │ └── ch579update │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── cn │ │ │ │ └── wch │ │ │ │ └── ch579update │ │ │ │ ├── MyApplication.java │ │ │ │ └── scan │ │ │ │ ├── ScanActivity.java │ │ │ │ ├── ScanBaseActivity.java │ │ │ │ └── ui │ │ │ │ └── DeviceAdapter.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_scan.xml │ │ │ ├── content_scan.xml │ │ │ ├── devicelist_item.xml │ │ │ └── menu_progress.xml │ │ │ ├── menu │ │ │ └── main.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-ldpi │ │ │ ├── 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-sw1024dp │ │ │ └── dimens.xml │ │ │ ├── values-sw1280dp │ │ │ └── dimens.xml │ │ │ ├── values-sw1365dp │ │ │ └── dimens.xml │ │ │ ├── values-sw320dp │ │ │ └── dimens.xml │ │ │ ├── values-sw360dp │ │ │ └── dimens.xml │ │ │ ├── values-sw384dp │ │ │ └── dimens.xml │ │ │ ├── values-sw392dp │ │ │ └── dimens.xml │ │ │ ├── values-sw400dp │ │ │ └── dimens.xml │ │ │ ├── values-sw410dp │ │ │ └── dimens.xml │ │ │ ├── values-sw411dp │ │ │ └── dimens.xml │ │ │ ├── values-sw432dp │ │ │ └── dimens.xml │ │ │ ├── values-sw480dp │ │ │ └── dimens.xml │ │ │ ├── values-sw533dp │ │ │ └── dimens.xml │ │ │ ├── values-sw540dp │ │ │ └── dimens.xml │ │ │ ├── values-sw592dp │ │ │ └── dimens.xml │ │ │ ├── values-sw600dp │ │ │ └── dimens.xml │ │ │ ├── values-sw640dp │ │ │ └── dimens.xml │ │ │ ├── values-sw662dp │ │ │ └── dimens.xml │ │ │ ├── values-sw720dp │ │ │ └── dimens.xml │ │ │ ├── values-sw768dp │ │ │ └── dimens.xml │ │ │ ├── values-sw800dp │ │ │ └── dimens.xml │ │ │ ├── values-sw811dp │ │ │ └── dimens.xml │ │ │ ├── values-sw820dp │ │ │ └── dimens.xml │ │ │ ├── values-sw960dp │ │ │ └── dimens.xml │ │ │ ├── values-sw961dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── cn │ │ └── wch │ │ └── ch579update │ │ └── ExampleUnitTest.java ├── blelib │ ├── .gitignore │ ├── build.gradle │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── cn │ │ │ └── wch │ │ │ └── blelib │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── cn │ │ │ └── wch │ │ │ └── blelib │ │ │ ├── ch579 │ │ │ ├── CH579BluetoothManager.java │ │ │ ├── callback │ │ │ │ ├── ConnectStatus.java │ │ │ │ ├── NotifyStatus.java │ │ │ │ ├── RSSIStatus.java │ │ │ │ └── ScanResult.java │ │ │ ├── constant │ │ │ │ └── Constant.java │ │ │ └── ota │ │ │ │ ├── CH579OTAManager.java │ │ │ │ ├── callback │ │ │ │ └── IProgress.java │ │ │ │ ├── command │ │ │ │ └── CommandUtil.java │ │ │ │ ├── entry │ │ │ │ ├── CurrentImageInfo.java │ │ │ │ └── ImageType.java │ │ │ │ ├── exception │ │ │ │ └── CH579OTAException.java │ │ │ │ └── util │ │ │ │ ├── DebugUtil.java │ │ │ │ ├── FileParseUtil.java │ │ │ │ ├── FormatUtil.java │ │ │ │ └── ParseUtil.java │ │ │ ├── exception │ │ │ └── BLELibException.java │ │ │ ├── host │ │ │ ├── advertise │ │ │ │ ├── AdvertiseUtil.java │ │ │ │ ├── AdvertisingParse.java │ │ │ │ ├── Manufacturer.java │ │ │ │ └── bean │ │ │ │ │ ├── AdvBean.java │ │ │ │ │ └── ManufactureBean.java │ │ │ ├── core │ │ │ │ ├── BLEHostManager.java │ │ │ │ ├── ConnPresent.java │ │ │ │ ├── ConnRuler.java │ │ │ │ ├── Connection.java │ │ │ │ ├── Connector.java │ │ │ │ └── callback │ │ │ │ │ ├── ConnectCallback.java │ │ │ │ │ ├── DiscoverServiceCallback.java │ │ │ │ │ ├── MtuCallback.java │ │ │ │ │ ├── NotifyDataCallback.java │ │ │ │ │ ├── ReadCallback.java │ │ │ │ │ ├── RssiCallback.java │ │ │ │ │ └── WriteCallback.java │ │ │ ├── gattNameResolver │ │ │ │ ├── GATT_Characteristic.java │ │ │ │ ├── GATT_Descriptor.java │ │ │ │ └── GATT_Services.java │ │ │ └── scan │ │ │ │ ├── BLEScanUtil.java │ │ │ │ ├── BLEScanUtil2.java │ │ │ │ ├── ScanObserver.java │ │ │ │ └── ScanRuler.java │ │ │ ├── peripheral │ │ │ ├── BLEPeripheralManager.java │ │ │ └── Linker.java │ │ │ ├── provider │ │ │ └── MyProvider.java │ │ │ └── utils │ │ │ ├── AppUtil.java │ │ │ ├── BLEUtil.java │ │ │ ├── FileUtil.java │ │ │ ├── FormatUtil.java │ │ │ ├── Location.java │ │ │ └── LogUtil.java │ │ └── test │ │ └── java │ │ └── cn │ │ └── wch │ │ └── blelib │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── otaupdate │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── cn │ │ │ └── wch │ │ │ └── otaupdate │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── cn │ │ │ │ └── wch │ │ │ │ └── otaupdate │ │ │ │ ├── MainActivity.java │ │ │ │ ├── other │ │ │ │ ├── Constant.java │ │ │ │ ├── ImageFile.java │ │ │ │ └── TimeUtil.java │ │ │ │ └── ui │ │ │ │ ├── FileListAdapter.java │ │ │ │ └── FileListDialog.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── btn_round.xml │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── content_main.xml │ │ │ ├── dialog_filelist.xml │ │ │ └── dialog_filelist_item.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── values-sw1024dp │ │ │ └── dimens.xml │ │ │ ├── values-sw1280dp │ │ │ └── dimens.xml │ │ │ ├── values-sw1365dp │ │ │ └── dimens.xml │ │ │ ├── values-sw320dp │ │ │ └── dimens.xml │ │ │ ├── values-sw360dp │ │ │ └── dimens.xml │ │ │ ├── values-sw384dp │ │ │ └── dimens.xml │ │ │ ├── values-sw392dp │ │ │ └── dimens.xml │ │ │ ├── values-sw400dp │ │ │ └── dimens.xml │ │ │ ├── values-sw410dp │ │ │ └── dimens.xml │ │ │ ├── values-sw411dp │ │ │ └── dimens.xml │ │ │ ├── values-sw432dp │ │ │ └── dimens.xml │ │ │ ├── values-sw480dp │ │ │ └── dimens.xml │ │ │ ├── values-sw533dp │ │ │ └── dimens.xml │ │ │ ├── values-sw540dp │ │ │ └── dimens.xml │ │ │ ├── values-sw592dp │ │ │ └── dimens.xml │ │ │ ├── values-sw600dp │ │ │ └── dimens.xml │ │ │ ├── values-sw640dp │ │ │ └── dimens.xml │ │ │ ├── values-sw662dp │ │ │ └── dimens.xml │ │ │ ├── values-sw720dp │ │ │ └── dimens.xml │ │ │ ├── values-sw768dp │ │ │ └── dimens.xml │ │ │ ├── values-sw800dp │ │ │ └── dimens.xml │ │ │ ├── values-sw811dp │ │ │ └── dimens.xml │ │ │ ├── values-sw820dp │ │ │ └── dimens.xml │ │ │ ├── values-sw960dp │ │ │ └── dimens.xml │ │ │ ├── values-sw961dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── cn │ │ └── wch │ │ └── otaupdate │ │ └── ExampleUnitTest.java ├── screenMatch.properties ├── screenMatch_example_dimens.xml ├── settings.gradle └── ui │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── touchmcu │ │ └── ui │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── touchmcu │ │ │ └── ui │ │ │ ├── DialogUtil.java │ │ │ ├── LoadingDialog.java │ │ │ └── LoadingView.java │ └── res │ │ ├── anim │ │ ├── dialog_in.xml │ │ └── dialog_out.xml │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── dialog_loading.xml │ │ ├── values-sw1024dp │ │ └── dimens.xml │ │ ├── values-sw1280dp │ │ └── dimens.xml │ │ ├── values-sw1365dp │ │ └── dimens.xml │ │ ├── values-sw320dp │ │ └── dimens.xml │ │ ├── values-sw360dp │ │ └── dimens.xml │ │ ├── values-sw384dp │ │ └── dimens.xml │ │ ├── values-sw392dp │ │ └── dimens.xml │ │ ├── values-sw400dp │ │ └── dimens.xml │ │ ├── values-sw410dp │ │ └── dimens.xml │ │ ├── values-sw411dp │ │ └── dimens.xml │ │ ├── values-sw432dp │ │ └── dimens.xml │ │ ├── values-sw480dp │ │ └── dimens.xml │ │ ├── values-sw533dp │ │ └── dimens.xml │ │ ├── values-sw540dp │ │ └── dimens.xml │ │ ├── values-sw592dp │ │ └── dimens.xml │ │ ├── values-sw600dp │ │ └── dimens.xml │ │ ├── values-sw640dp │ │ └── dimens.xml │ │ ├── values-sw662dp │ │ └── dimens.xml │ │ ├── values-sw720dp │ │ └── dimens.xml │ │ ├── values-sw768dp │ │ └── dimens.xml │ │ ├── values-sw800dp │ │ └── dimens.xml │ │ ├── values-sw811dp │ │ └── dimens.xml │ │ ├── values-sw820dp │ │ └── dimens.xml │ │ ├── values-sw960dp │ │ └── dimens.xml │ │ ├── values-sw961dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── touchmcu │ └── ui │ └── ExampleUnitTest.java ├── EVT ├── CH579_List.txt ├── EXAM │ ├── ADC │ │ ├── CH57x.uvprojx │ │ └── Main.c │ ├── BLE │ │ ├── BackupUpgrade_IAP │ │ │ ├── APP │ │ │ │ ├── include │ │ │ │ │ ├── ota.h │ │ │ │ │ └── peripheral.h │ │ │ │ ├── peripheral.c │ │ │ │ └── peripheral_main.c │ │ │ ├── Profile │ │ │ │ ├── OTAprofile.c │ │ │ │ ├── devinfoservice.c │ │ │ │ ├── gattprofile.c │ │ │ │ └── include │ │ │ │ │ ├── OTAprofile.h │ │ │ │ │ ├── devinfoservice.h │ │ │ │ │ └── gattprofile.h │ │ │ └── Project │ │ │ │ └── BLE.uvprojx │ │ ├── BackupUpgrade_OTA │ │ │ ├── APP │ │ │ │ ├── include │ │ │ │ │ ├── ota.h │ │ │ │ │ └── peripheral.h │ │ │ │ ├── peripheral.c │ │ │ │ └── peripheral_main.c │ │ │ ├── Profile │ │ │ │ ├── OTAprofile.c │ │ │ │ ├── devinfoservice.c │ │ │ │ ├── gattprofile.c │ │ │ │ └── include │ │ │ │ │ ├── OTAprofile.h │ │ │ │ │ ├── devinfoservice.h │ │ │ │ │ └── gattprofile.h │ │ │ └── Project │ │ │ │ └── BLE.uvprojx │ │ ├── Broadcaster │ │ │ ├── APP │ │ │ │ ├── broadcaster.c │ │ │ │ ├── broadcaster_main.c │ │ │ │ └── include │ │ │ │ │ └── broadcaster.h │ │ │ ├── Profile │ │ │ │ ├── devinfoservice.c │ │ │ │ └── include │ │ │ │ │ └── devinfoservice.h │ │ │ └── Project │ │ │ │ └── BLE.uvprojx │ │ ├── CH57xBLE协议栈库说明.pdf │ │ ├── CentPeri │ │ │ ├── APP │ │ │ │ ├── centPeri_main.c │ │ │ │ ├── central.c │ │ │ │ ├── include │ │ │ │ │ ├── central.h │ │ │ │ │ └── peripheral.h │ │ │ │ └── peripheral.c │ │ │ ├── Profile │ │ │ │ ├── devinfoservice.c │ │ │ │ ├── gattprofile.c │ │ │ │ └── include │ │ │ │ │ ├── devinfoservice.h │ │ │ │ │ └── gattprofile.h │ │ │ └── Project │ │ │ │ └── BLE.uvprojx │ │ ├── Central │ │ │ ├── APP │ │ │ │ ├── central.c │ │ │ │ ├── central_main.c │ │ │ │ └── include │ │ │ │ │ └── central.h │ │ │ ├── Profile │ │ │ │ └── include │ │ │ │ │ └── gattprofile.h │ │ │ └── Project │ │ │ │ └── BLE.uvprojx │ │ ├── CyclingSensor │ │ │ ├── APP │ │ │ │ ├── cyclingsensor.c │ │ │ │ ├── cyclingsensor_main.c │ │ │ │ └── include │ │ │ │ │ └── cyclingsensor.h │ │ │ ├── Profile │ │ │ │ ├── battservice.c │ │ │ │ ├── cyclingservice.c │ │ │ │ ├── devinfoservice.c │ │ │ │ └── include │ │ │ │ │ ├── battservice.h │ │ │ │ │ ├── cyclingservice.h │ │ │ │ │ ├── devinfoservice.h │ │ │ │ │ └── hiddev.h │ │ │ └── Project │ │ │ │ └── BLE.uvprojx │ │ ├── Direct_Test_Mode │ │ │ ├── APP │ │ │ │ ├── buf.c │ │ │ │ ├── dtm_main.c │ │ │ │ ├── hci_test.c │ │ │ │ ├── include │ │ │ │ │ ├── buf.h │ │ │ │ │ ├── hci_test.h │ │ │ │ │ ├── test_dtm.h │ │ │ │ │ └── uart.h │ │ │ │ ├── test_dtm.c │ │ │ │ └── uart.c │ │ │ ├── Profile │ │ │ │ ├── battservice.c │ │ │ │ ├── devinfoservice.c │ │ │ │ └── include │ │ │ │ │ ├── battservice.h │ │ │ │ │ ├── devinfoservice.h │ │ │ │ │ └── hiddev.h │ │ │ └── Project │ │ │ │ └── BLE.uvprojx │ │ ├── HAL │ │ │ ├── KEY.c │ │ │ ├── LED.c │ │ │ ├── MCU.c │ │ │ ├── RTC.c │ │ │ ├── SLEEP.c │ │ │ └── include │ │ │ │ ├── HAL.h │ │ │ │ ├── KEY.h │ │ │ │ ├── LED.h │ │ │ │ ├── RTC.h │ │ │ │ ├── SLEEP.h │ │ │ │ └── config.h │ │ ├── HID_Consumer │ │ │ ├── APP │ │ │ │ ├── hidconsumer.c │ │ │ │ ├── hidconsumer_main.c │ │ │ │ └── include │ │ │ │ │ └── hidconsumer.h │ │ │ ├── Profile │ │ │ │ ├── battservice.c │ │ │ │ ├── devinfoservice.c │ │ │ │ ├── hidconsumerservice.c │ │ │ │ ├── hiddev.c │ │ │ │ ├── include │ │ │ │ │ ├── battservice.h │ │ │ │ │ ├── devinfoservice.h │ │ │ │ │ ├── hidconsumerservice.h │ │ │ │ │ ├── hiddev.h │ │ │ │ │ └── scanparamservice.h │ │ │ │ └── scanparamservice.c │ │ │ └── Project │ │ │ │ └── BLE.uvprojx │ │ ├── HID_Keyboard │ │ │ ├── APP │ │ │ │ ├── hidkbd.c │ │ │ │ ├── hidkbd_main.c │ │ │ │ └── include │ │ │ │ │ └── hidkbd.h │ │ │ ├── Profile │ │ │ │ ├── battservice.c │ │ │ │ ├── devinfoservice.c │ │ │ │ ├── hiddev.c │ │ │ │ ├── hidkbdservice.c │ │ │ │ ├── include │ │ │ │ │ ├── battservice.h │ │ │ │ │ ├── devinfoservice.h │ │ │ │ │ ├── hiddev.h │ │ │ │ │ ├── hidkbdservice.h │ │ │ │ │ └── scanparamservice.h │ │ │ │ └── scanparamservice.c │ │ │ └── Project │ │ │ │ └── BLE.uvprojx │ │ ├── HID_Mouse │ │ │ ├── APP │ │ │ │ ├── hidmouse.c │ │ │ │ ├── hidmouse_main.c │ │ │ │ └── include │ │ │ │ │ └── hidmouse.h │ │ │ ├── Profile │ │ │ │ ├── battservice.c │ │ │ │ ├── devinfoservice.c │ │ │ │ ├── hiddev.c │ │ │ │ ├── hidmouseservice.c │ │ │ │ ├── include │ │ │ │ │ ├── battservice.h │ │ │ │ │ ├── devinfoservice.h │ │ │ │ │ ├── hiddev.h │ │ │ │ │ ├── hidmouseservice.h │ │ │ │ │ └── scanparamservice.h │ │ │ │ └── scanparamservice.c │ │ │ └── Project │ │ │ │ └── BLE.uvprojx │ │ ├── HID_Touch │ │ │ ├── APP │ │ │ │ ├── hidtouch.c │ │ │ │ ├── hidtouch_main.c │ │ │ │ └── include │ │ │ │ │ └── hidtouch.h │ │ │ ├── Profile │ │ │ │ ├── battservice.c │ │ │ │ ├── devinfoservice.c │ │ │ │ ├── hiddev.c │ │ │ │ ├── hidtouchservice.c │ │ │ │ ├── include │ │ │ │ │ ├── battservice.h │ │ │ │ │ ├── devinfoservice.h │ │ │ │ │ ├── hiddev.h │ │ │ │ │ ├── hidtouchservice.h │ │ │ │ │ └── scanparamservice.h │ │ │ │ └── scanparamservice.c │ │ │ └── Project │ │ │ │ └── BLE.uvprojx │ │ ├── HeartRate │ │ │ ├── APP │ │ │ │ ├── heartrate.c │ │ │ │ ├── heartrate_main.c │ │ │ │ └── include │ │ │ │ │ └── heartrate.h │ │ │ ├── Profile │ │ │ │ ├── battservice.c │ │ │ │ ├── devinfoservice.c │ │ │ │ ├── heartrateservice.c │ │ │ │ └── include │ │ │ │ │ ├── battservice.h │ │ │ │ │ ├── devinfoservice.h │ │ │ │ │ ├── heartrateservice.h │ │ │ │ │ └── hiddev.h │ │ │ └── Project │ │ │ │ └── BLE.uvprojx │ │ ├── LIB │ │ │ ├── CH577BLE_ROM.hex │ │ │ ├── CH578BLE_ROM.hex │ │ │ ├── CH579BLE_ROM.hex │ │ │ ├── CH57xBLE.lib │ │ │ ├── CH57xBLE_LIB.H │ │ │ └── CH57xBLE_ROM.H │ │ ├── MESH │ │ │ ├── MESH_LIB │ │ │ │ ├── MESH_LIB.h │ │ │ │ └── MESH_LIB.lib │ │ │ ├── adv_ali_light │ │ │ │ ├── APP │ │ │ │ │ ├── app.c │ │ │ │ │ ├── app_generic_onoff_model.c │ │ │ │ │ ├── app_main.c │ │ │ │ │ ├── app_mesh_config.c │ │ │ │ │ ├── app_vendor_model.c │ │ │ │ │ └── include │ │ │ │ │ │ ├── app.h │ │ │ │ │ │ ├── app_generic_onoff_model.h │ │ │ │ │ │ ├── app_mesh_config.h │ │ │ │ │ │ └── app_vendor_model.h │ │ │ │ └── Project │ │ │ │ │ └── BLE.uvprojx │ │ │ ├── adv_ali_light_add_lightness │ │ │ │ ├── APP │ │ │ │ │ ├── app.c │ │ │ │ │ ├── app_generic_lightness_model.c │ │ │ │ │ ├── app_generic_onoff_model.c │ │ │ │ │ ├── app_main.c │ │ │ │ │ ├── app_mesh_config.c │ │ │ │ │ ├── app_vendor_model.c │ │ │ │ │ └── include │ │ │ │ │ │ ├── app.h │ │ │ │ │ │ ├── app_generic_lightness_model.h │ │ │ │ │ │ ├── app_generic_onoff_model.h │ │ │ │ │ │ ├── app_mesh_config.h │ │ │ │ │ │ └── app_vendor_model.h │ │ │ │ └── Project │ │ │ │ │ └── BLE.uvprojx │ │ │ ├── adv_ali_light_add_windspeed │ │ │ │ ├── APP │ │ │ │ │ ├── app.c │ │ │ │ │ ├── app_als_windspeed_attr.c │ │ │ │ │ ├── app_generic_onoff_model.c │ │ │ │ │ ├── app_main.c │ │ │ │ │ ├── app_mesh_config.c │ │ │ │ │ ├── app_vendor_model.c │ │ │ │ │ └── include │ │ │ │ │ │ ├── app.h │ │ │ │ │ │ ├── app_als_windspeed_attr.h │ │ │ │ │ │ ├── app_generic_onoff_model.h │ │ │ │ │ │ ├── app_mesh_config.h │ │ │ │ │ │ ├── app_vendor_model.h │ │ │ │ │ │ └── mesh_debug.h │ │ │ │ └── Project │ │ │ │ │ └── BLE.uvprojx │ │ │ ├── adv_ali_light_with_peripheral │ │ │ │ ├── APP │ │ │ │ │ ├── app.c │ │ │ │ │ ├── app_generic_color_model.c │ │ │ │ │ ├── app_generic_lightness_model.c │ │ │ │ │ ├── app_generic_onoff_model.c │ │ │ │ │ ├── app_main.c │ │ │ │ │ ├── app_mesh_config.c │ │ │ │ │ ├── app_vendor_model.c │ │ │ │ │ ├── include │ │ │ │ │ │ ├── app.h │ │ │ │ │ │ ├── app_generic_color_model.h │ │ │ │ │ │ ├── app_generic_lightness_model.h │ │ │ │ │ │ ├── app_generic_onoff_model.h │ │ │ │ │ │ ├── app_mesh_config.h │ │ │ │ │ │ ├── app_vendor_model.h │ │ │ │ │ │ └── peripheral.h │ │ │ │ │ └── peripheral.c │ │ │ │ ├── Profile │ │ │ │ │ ├── gattprofile.c │ │ │ │ │ └── include │ │ │ │ │ │ └── gattprofile.h │ │ │ │ └── Project │ │ │ │ │ └── BLE.uvprojx │ │ │ ├── adv_proxy │ │ │ │ ├── APP │ │ │ │ │ ├── app.c │ │ │ │ │ ├── app_generic_onoff_model.c │ │ │ │ │ ├── app_main.c │ │ │ │ │ ├── app_mesh_config.c │ │ │ │ │ └── include │ │ │ │ │ │ ├── app.h │ │ │ │ │ │ ├── app_generic_onoff_model.h │ │ │ │ │ │ └── app_mesh_config.h │ │ │ │ └── Project │ │ │ │ │ └── BLE.uvprojx │ │ │ ├── adv_vendor │ │ │ │ ├── APP │ │ │ │ │ ├── app.c │ │ │ │ │ ├── app_main.c │ │ │ │ │ ├── app_mesh_config.c │ │ │ │ │ ├── app_vendor_model_srv.c │ │ │ │ │ └── include │ │ │ │ │ │ ├── app.h │ │ │ │ │ │ ├── app_mesh_config.h │ │ │ │ │ │ └── app_vendor_model_srv.h │ │ │ │ └── Project │ │ │ │ │ └── BLE.uvprojx │ │ │ ├── adv_vendor_friend │ │ │ │ ├── APP │ │ │ │ │ ├── app.c │ │ │ │ │ ├── app_main.c │ │ │ │ │ ├── app_mesh_config.c │ │ │ │ │ ├── app_vendor_model_srv.c │ │ │ │ │ └── include │ │ │ │ │ │ ├── app.h │ │ │ │ │ │ ├── app_mesh_config.h │ │ │ │ │ │ └── app_vendor_model_srv.h │ │ │ │ └── Project │ │ │ │ │ └── BLE.uvprojx │ │ │ ├── adv_vendor_low_power │ │ │ │ ├── APP │ │ │ │ │ ├── app.c │ │ │ │ │ ├── app_main.c │ │ │ │ │ ├── app_mesh_config.c │ │ │ │ │ ├── app_vendor_model_srv.c │ │ │ │ │ └── include │ │ │ │ │ │ ├── app.h │ │ │ │ │ │ ├── app_mesh_config.h │ │ │ │ │ │ └── app_vendor_model_srv.h │ │ │ │ └── Project │ │ │ │ │ └── BLE.uvprojx │ │ │ ├── self_provisioner_vendor │ │ │ │ ├── APP │ │ │ │ │ ├── app.c │ │ │ │ │ ├── app_main.c │ │ │ │ │ ├── app_mesh_config.c │ │ │ │ │ ├── app_vendor_model_cli.c │ │ │ │ │ └── include │ │ │ │ │ │ ├── app.h │ │ │ │ │ │ ├── app_mesh_config.h │ │ │ │ │ │ ├── app_vendor_model_cli.h │ │ │ │ │ │ └── app_vendor_model_srv.h │ │ │ │ └── Project │ │ │ │ │ └── BLE.uvprojx │ │ │ └── self_provisioner_vendor_with_peripheral │ │ │ │ ├── APP │ │ │ │ ├── app.c │ │ │ │ ├── app_main.c │ │ │ │ ├── app_mesh_config.c │ │ │ │ ├── app_vendor_model_cli.c │ │ │ │ ├── include │ │ │ │ │ ├── app.h │ │ │ │ │ ├── app_mesh_config.h │ │ │ │ │ ├── app_vendor_model_cli.h │ │ │ │ │ ├── app_vendor_model_srv.h │ │ │ │ │ └── peripheral.h │ │ │ │ └── peripheral.c │ │ │ │ ├── Profile │ │ │ │ ├── gattprofile.c │ │ │ │ └── include │ │ │ │ │ └── gattprofile.h │ │ │ │ └── Project │ │ │ │ └── BLE.uvprojx │ │ ├── MultiCentral │ │ │ ├── APP │ │ │ │ ├── include │ │ │ │ │ └── multiCentral.h │ │ │ │ ├── multiCentral.c │ │ │ │ └── multiCentral_main.c │ │ │ ├── Profile │ │ │ │ └── include │ │ │ │ │ └── gattprofile.h │ │ │ └── Project │ │ │ │ └── BLE.uvprojx │ │ ├── Observer │ │ │ ├── APP │ │ │ │ ├── include │ │ │ │ │ └── observer.h │ │ │ │ ├── observer.c │ │ │ │ └── observer_main.c │ │ │ └── Project │ │ │ │ └── BLE.uvprojx │ │ ├── OnlyUpdateApp_IAP │ │ │ ├── APP │ │ │ │ ├── OTAnobackup.c │ │ │ │ ├── OTAnobackup_main.c │ │ │ │ └── include │ │ │ │ │ ├── OTAnobackup.h │ │ │ │ │ └── ota.h │ │ │ ├── Profile │ │ │ │ ├── OTAprofile.c │ │ │ │ ├── devinfoservice.c │ │ │ │ ├── gattprofile.c │ │ │ │ └── include │ │ │ │ │ ├── OTAprofile.h │ │ │ │ │ ├── devinfoservice.h │ │ │ │ │ └── gattprofile.h │ │ │ └── Project │ │ │ │ └── BLE.uvprojx │ │ ├── OnlyUpdateApp_Peripheral │ │ │ ├── APP │ │ │ │ ├── include │ │ │ │ │ ├── ota.h │ │ │ │ │ └── peripheral.h │ │ │ │ ├── peripheral.c │ │ │ │ └── peripheral_main.c │ │ │ ├── Profile │ │ │ │ ├── devinfoservice.c │ │ │ │ ├── gattprofile.c │ │ │ │ └── include │ │ │ │ │ ├── devinfoservice.h │ │ │ │ │ └── gattprofile.h │ │ │ └── Project │ │ │ │ └── BLE.uvprojx │ │ ├── Peripheral │ │ │ ├── APP │ │ │ │ ├── include │ │ │ │ │ └── peripheral.h │ │ │ │ ├── peripheral.c │ │ │ │ └── peripheral_main.c │ │ │ ├── Profile │ │ │ │ ├── devinfoservice.c │ │ │ │ ├── gattprofile.c │ │ │ │ └── include │ │ │ │ │ ├── devinfoservice.h │ │ │ │ │ └── gattprofile.h │ │ │ └── Project │ │ │ │ └── BLE.uvprojx │ │ ├── RF_PHY │ │ │ ├── APP │ │ │ │ ├── RF_PHY.c │ │ │ │ ├── RF_main.c │ │ │ │ └── include │ │ │ │ │ └── RF_PHY.h │ │ │ └── Project │ │ │ │ └── BLE.uvprojx │ │ ├── RF_PHY_Hop │ │ │ ├── APP │ │ │ │ ├── RF_PHY.c │ │ │ │ ├── RF_main.c │ │ │ │ └── include │ │ │ │ │ └── RF_PHY.h │ │ │ └── Project │ │ │ │ └── BLE.uvprojx │ │ └── RunningSensor │ │ │ ├── APP │ │ │ ├── include │ │ │ │ └── runningsensor.h │ │ │ ├── runningsensor.c │ │ │ └── runningsensor_main.c │ │ │ ├── Profile │ │ │ ├── battservice.c │ │ │ ├── devinfoservice.c │ │ │ ├── include │ │ │ │ ├── battservice.h │ │ │ │ ├── devinfoservice.h │ │ │ │ ├── hiddev.h │ │ │ │ └── runningservice.h │ │ │ └── runningservice.c │ │ │ └── Project │ │ │ └── BLE.uvprojx │ ├── FLASH │ │ ├── CH57x.uvprojx │ │ └── Main.c │ ├── LCD │ │ ├── CH57x.uvprojx │ │ └── Main.c │ ├── NET │ │ ├── DHCP │ │ │ ├── CH57x.uvprojx │ │ │ ├── Main.c │ │ │ └── net_config.h │ │ ├── DNS │ │ │ ├── CH57x.uvprojx │ │ │ ├── Main.c │ │ │ └── net_config.h │ │ ├── FTP_Client │ │ │ ├── CH57x.uvprojx │ │ │ ├── FTP │ │ │ │ ├── FTPCMD.c │ │ │ │ ├── FTPINC.h │ │ │ │ ├── FTP_Client.c │ │ │ │ └── FTPfile.c │ │ │ ├── Main.c │ │ │ └── net_config.h │ │ ├── FTP_Server │ │ │ ├── CH57x.uvprojx │ │ │ ├── FTP │ │ │ │ ├── FTPCMD.c │ │ │ │ ├── FTPINC.h │ │ │ │ ├── FTP_Server.c │ │ │ │ └── FTPfile.c │ │ │ ├── Main.c │ │ │ └── net_config.h │ │ ├── IPRaw_PING │ │ │ ├── CH57x.uvprojx │ │ │ ├── Main.c │ │ │ ├── PING │ │ │ │ ├── PING.c │ │ │ │ └── PING.h │ │ │ └── net_config.h │ │ ├── MQTT │ │ │ ├── CH57x.uvprojx │ │ │ ├── MQTT │ │ │ │ ├── MQTTConnectClient.c │ │ │ │ ├── MQTTDeserializePublish.c │ │ │ │ ├── MQTTFormat.c │ │ │ │ ├── MQTTPacket.c │ │ │ │ ├── MQTTSerializePublish.c │ │ │ │ ├── MQTTSubscribeClient.c │ │ │ │ ├── MQTTUnsubscribeClient.c │ │ │ │ └── inc │ │ │ │ │ ├── MQTTConnect.h │ │ │ │ │ ├── MQTTFormat.h │ │ │ │ │ ├── MQTTPacket.h │ │ │ │ │ ├── MQTTPublish.h │ │ │ │ │ ├── MQTTSubscribe.h │ │ │ │ │ ├── MQTTUnsubscribe.h │ │ │ │ │ └── StackTrace.h │ │ │ ├── Main.c │ │ │ └── net_config.h │ │ ├── NetLib │ │ │ ├── CH57xNET.lib │ │ │ ├── eth_driver.c │ │ │ ├── eth_driver.h │ │ │ └── wchnet.h │ │ ├── TcpClient │ │ │ ├── CH57x.uvprojx │ │ │ ├── Main.c │ │ │ └── net_config.h │ │ ├── TcpServer │ │ │ ├── CH57x.uvprojx │ │ │ ├── Main.c │ │ │ └── net_config.h │ │ ├── UdpClient │ │ │ ├── CH57x.uvprojx │ │ │ ├── Main.c │ │ │ └── net_config.h │ │ ├── UdpServer │ │ │ ├── CH57x.uvprojx │ │ │ ├── Main.c │ │ │ └── net_config.h │ │ ├── WCHNET Protocol Stack Library Application Note.PDF │ │ └── WCHNET使用文档.PDF │ ├── PM │ │ ├── CH57x.uvprojx │ │ └── Main.c │ ├── PWMX │ │ ├── CH57x.uvprojx │ │ └── Main.c │ ├── SPI0 │ │ └── SPI0_MASTER&SLAVE │ │ │ ├── CH57x.uvprojx │ │ │ └── Main.c │ ├── SPI1 │ │ ├── SPI1_FLASH │ │ │ ├── CH57x.uvprojx │ │ │ ├── Main.c │ │ │ ├── SPIFlash.C │ │ │ └── SPIFlash.H │ │ └── SPI1_MASTER │ │ │ ├── CH57x.uvprojx │ │ │ └── Main.c │ ├── SRC │ │ ├── CMSIS │ │ │ └── Include │ │ │ │ ├── core_cm0.h │ │ │ │ ├── core_cmFunc.h │ │ │ │ └── core_cmInstr.h │ │ ├── Startup │ │ │ └── startup_ARMCM0.s │ │ └── StdPeriphDriver │ │ │ ├── CH57x_adc.c │ │ │ ├── CH57x_clk.c │ │ │ ├── CH57x_flash.c │ │ │ ├── CH57x_gpio.c │ │ │ ├── CH57x_int.c │ │ │ ├── CH57x_lcd.c │ │ │ ├── CH57x_pwm.c │ │ │ ├── CH57x_pwr.c │ │ │ ├── CH57x_spi0.c │ │ │ ├── CH57x_spi1.c │ │ │ ├── CH57x_sys.c │ │ │ ├── CH57x_timer0.c │ │ │ ├── CH57x_timer1.c │ │ │ ├── CH57x_timer2.c │ │ │ ├── CH57x_timer3.c │ │ │ ├── CH57x_uart0.c │ │ │ ├── CH57x_uart1.c │ │ │ ├── CH57x_uart2.c │ │ │ ├── CH57x_uart3.c │ │ │ ├── CH57x_usbdev.c │ │ │ ├── CH57x_usbhostBase.c │ │ │ ├── CH57x_usbhostClass.c │ │ │ └── inc │ │ │ ├── CH579SFR.h │ │ │ ├── CH57x_adc.h │ │ │ ├── CH57x_clk.h │ │ │ ├── CH57x_common.h │ │ │ ├── CH57x_flash.h │ │ │ ├── CH57x_gpio.h │ │ │ ├── CH57x_lcd.h │ │ │ ├── CH57x_pwm.h │ │ │ ├── CH57x_pwr.h │ │ │ ├── CH57x_spi.h │ │ │ ├── CH57x_sys.h │ │ │ ├── CH57x_timer.h │ │ │ ├── CH57x_uart.h │ │ │ ├── CH57x_usbdev.h │ │ │ └── CH57x_usbhost.h │ ├── TMR │ │ ├── CH57x.uvprojx │ │ └── Main.c │ ├── UART1 │ │ ├── CH57x.uvprojx │ │ └── Main.c │ └── USB │ │ ├── Device │ │ ├── CompoundDev │ │ │ ├── CH57x.uvprojx │ │ │ └── Main.c │ │ └── VendorDefinedDev │ │ │ ├── CH57x.uvprojx │ │ │ └── Main.c │ │ └── Host │ │ ├── HostAOA │ │ ├── CH57x.uvprojx │ │ └── Main.c │ │ ├── HostEnum │ │ ├── CH57x.uvprojx │ │ └── Main.c │ │ ├── USB_LIB │ │ ├── CH579UFI.C │ │ ├── CH579UFI.H │ │ ├── CH579UFI.lib │ │ └── CH579UF_README.TXT │ │ └── U_DISK │ │ ├── EXAM1 │ │ ├── CH57x.uvprojx │ │ └── EXAM1.C │ │ ├── EXAM10 │ │ ├── CH57x.uvprojx │ │ └── EXAM10.C │ │ ├── EXAM11 │ │ ├── CH57x.uvprojx │ │ └── EXAM11.C │ │ └── EXAM13 │ │ ├── CH57x.uvprojx │ │ └── EXAM13.C └── PUB │ ├── CH579SCH.PDF │ ├── CH579评估版说明书.PDF │ ├── Keil.WCH57x_DFP.1.1.0.pack │ └── 蓝牙芯片的电路及PCB设计的重要注意事项.pdf ├── README.md └── kicad └── QFN-28-1EP_4x4mm_Pitch0.4mm.kicad_mod /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/README.md -------------------------------------------------------------------------------- /docs/B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/docs/B.jpg -------------------------------------------------------------------------------- /docs/CH579.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/docs/CH579.png -------------------------------------------------------------------------------- /docs/CH579DS1.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/docs/CH579DS1.PDF -------------------------------------------------------------------------------- /docs/diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/docs/diff.png -------------------------------------------------------------------------------- /index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/index.json -------------------------------------------------------------------------------- /src/CH579Update/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/.gitignore -------------------------------------------------------------------------------- /src/CH579Update/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /src/CH579Update/.idea/androidDexCompiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/.idea/androidDexCompiler.xml -------------------------------------------------------------------------------- /src/CH579Update/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /src/CH579Update/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/.idea/compiler.xml -------------------------------------------------------------------------------- /src/CH579Update/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/.idea/gradle.xml -------------------------------------------------------------------------------- /src/CH579Update/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /src/CH579Update/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/.idea/kotlinc.xml -------------------------------------------------------------------------------- /src/CH579Update/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/.idea/misc.xml -------------------------------------------------------------------------------- /src/CH579Update/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /src/CH579Update/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /src/CH579Update/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/build.gradle -------------------------------------------------------------------------------- /src/CH579Update/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/proguard-rules.pro -------------------------------------------------------------------------------- /src/CH579Update/app/release/output-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/release/output-metadata.json -------------------------------------------------------------------------------- /src/CH579Update/app/src/androidTest/java/cn/wch/ch579update/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/androidTest/java/cn/wch/ch579update/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/java/cn/wch/ch579update/MyApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/java/cn/wch/ch579update/MyApplication.java -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/java/cn/wch/ch579update/scan/ScanActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/java/cn/wch/ch579update/scan/ScanActivity.java -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/java/cn/wch/ch579update/scan/ScanBaseActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/java/cn/wch/ch579update/scan/ScanBaseActivity.java -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/java/cn/wch/ch579update/scan/ui/DeviceAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/java/cn/wch/ch579update/scan/ui/DeviceAdapter.java -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/layout/activity_scan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/layout/activity_scan.xml -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/layout/content_scan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/layout/content_scan.xml -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/layout/devicelist_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/layout/devicelist_item.xml -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/layout/menu_progress.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/layout/menu_progress.xml -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/menu/main.xml -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/mipmap-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/mipmap-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/mipmap-ldpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/mipmap-ldpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/values-sw1024dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/values-sw1024dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/values-sw1280dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/values-sw1280dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/values-sw1365dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/values-sw1365dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/values-sw320dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/values-sw320dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/values-sw360dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/values-sw360dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/values-sw384dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/values-sw384dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/values-sw392dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/values-sw392dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/values-sw400dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/values-sw400dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/values-sw410dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/values-sw410dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/values-sw411dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/values-sw411dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/values-sw432dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/values-sw432dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/values-sw480dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/values-sw480dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/values-sw533dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/values-sw533dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/values-sw540dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/values-sw540dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/values-sw592dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/values-sw592dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/values-sw640dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/values-sw640dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/values-sw662dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/values-sw662dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/values-sw720dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/values-sw720dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/values-sw768dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/values-sw768dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/values-sw800dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/values-sw800dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/values-sw811dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/values-sw811dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/values-sw820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/values-sw820dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/values-sw960dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/values-sw960dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/values-sw961dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/values-sw961dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /src/CH579Update/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /src/CH579Update/app/src/test/java/cn/wch/ch579update/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/app/src/test/java/cn/wch/ch579update/ExampleUnitTest.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /src/CH579Update/blelib/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/build.gradle -------------------------------------------------------------------------------- /src/CH579Update/blelib/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/CH579Update/blelib/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/proguard-rules.pro -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/androidTest/java/cn/wch/blelib/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/androidTest/java/cn/wch/blelib/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/ch579/CH579BluetoothManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/ch579/CH579BluetoothManager.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/ch579/callback/ConnectStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/ch579/callback/ConnectStatus.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/ch579/callback/NotifyStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/ch579/callback/NotifyStatus.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/ch579/callback/RSSIStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/ch579/callback/RSSIStatus.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/ch579/callback/ScanResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/ch579/callback/ScanResult.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/ch579/constant/Constant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/ch579/constant/Constant.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/ch579/ota/CH579OTAManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/ch579/ota/CH579OTAManager.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/ch579/ota/callback/IProgress.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/ch579/ota/callback/IProgress.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/ch579/ota/command/CommandUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/ch579/ota/command/CommandUtil.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/ch579/ota/entry/CurrentImageInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/ch579/ota/entry/CurrentImageInfo.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/ch579/ota/entry/ImageType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/ch579/ota/entry/ImageType.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/ch579/ota/exception/CH579OTAException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/ch579/ota/exception/CH579OTAException.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/ch579/ota/util/DebugUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/ch579/ota/util/DebugUtil.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/ch579/ota/util/FileParseUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/ch579/ota/util/FileParseUtil.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/ch579/ota/util/FormatUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/ch579/ota/util/FormatUtil.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/ch579/ota/util/ParseUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/ch579/ota/util/ParseUtil.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/exception/BLELibException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/exception/BLELibException.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/advertise/AdvertiseUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/advertise/AdvertiseUtil.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/advertise/AdvertisingParse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/advertise/AdvertisingParse.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/advertise/Manufacturer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/advertise/Manufacturer.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/advertise/bean/AdvBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/advertise/bean/AdvBean.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/advertise/bean/ManufactureBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/advertise/bean/ManufactureBean.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/core/BLEHostManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/core/BLEHostManager.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/core/ConnPresent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/core/ConnPresent.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/core/ConnRuler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/core/ConnRuler.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/core/Connection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/core/Connection.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/core/Connector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/core/Connector.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/core/callback/ConnectCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/core/callback/ConnectCallback.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/core/callback/DiscoverServiceCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/core/callback/DiscoverServiceCallback.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/core/callback/MtuCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/core/callback/MtuCallback.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/core/callback/NotifyDataCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/core/callback/NotifyDataCallback.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/core/callback/ReadCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/core/callback/ReadCallback.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/core/callback/RssiCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/core/callback/RssiCallback.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/core/callback/WriteCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/core/callback/WriteCallback.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/gattNameResolver/GATT_Characteristic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/gattNameResolver/GATT_Characteristic.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/gattNameResolver/GATT_Descriptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/gattNameResolver/GATT_Descriptor.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/gattNameResolver/GATT_Services.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/gattNameResolver/GATT_Services.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/scan/BLEScanUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/scan/BLEScanUtil.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/scan/BLEScanUtil2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/scan/BLEScanUtil2.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/scan/ScanObserver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/scan/ScanObserver.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/scan/ScanRuler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/host/scan/ScanRuler.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/peripheral/BLEPeripheralManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/peripheral/BLEPeripheralManager.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/peripheral/Linker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/peripheral/Linker.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/provider/MyProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/provider/MyProvider.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/utils/AppUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/utils/AppUtil.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/utils/BLEUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/utils/BLEUtil.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/utils/FileUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/utils/FileUtil.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/utils/FormatUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/utils/FormatUtil.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/utils/Location.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/utils/Location.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/main/java/cn/wch/blelib/utils/LogUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/main/java/cn/wch/blelib/utils/LogUtil.java -------------------------------------------------------------------------------- /src/CH579Update/blelib/src/test/java/cn/wch/blelib/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/blelib/src/test/java/cn/wch/blelib/ExampleUnitTest.java -------------------------------------------------------------------------------- /src/CH579Update/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/build.gradle -------------------------------------------------------------------------------- /src/CH579Update/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/gradle.properties -------------------------------------------------------------------------------- /src/CH579Update/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/CH579Update/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /src/CH579Update/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/gradlew -------------------------------------------------------------------------------- /src/CH579Update/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/gradlew.bat -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/build.gradle -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/proguard-rules.pro -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/androidTest/java/cn/wch/otaupdate/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/androidTest/java/cn/wch/otaupdate/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/java/cn/wch/otaupdate/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/java/cn/wch/otaupdate/MainActivity.java -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/java/cn/wch/otaupdate/other/Constant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/java/cn/wch/otaupdate/other/Constant.java -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/java/cn/wch/otaupdate/other/ImageFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/java/cn/wch/otaupdate/other/ImageFile.java -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/java/cn/wch/otaupdate/other/TimeUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/java/cn/wch/otaupdate/other/TimeUtil.java -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/java/cn/wch/otaupdate/ui/FileListAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/java/cn/wch/otaupdate/ui/FileListAdapter.java -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/java/cn/wch/otaupdate/ui/FileListDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/java/cn/wch/otaupdate/ui/FileListDialog.java -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/res/drawable/btn_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/res/drawable/btn_round.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/res/layout/content_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/res/layout/content_main.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/res/layout/dialog_filelist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/res/layout/dialog_filelist.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/res/layout/dialog_filelist_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/res/layout/dialog_filelist_item.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/res/values-sw1024dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/res/values-sw1024dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/res/values-sw1280dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/res/values-sw1280dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/res/values-sw1365dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/res/values-sw1365dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/res/values-sw320dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/res/values-sw320dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/res/values-sw360dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/res/values-sw360dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/res/values-sw384dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/res/values-sw384dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/res/values-sw392dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/res/values-sw392dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/res/values-sw400dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/res/values-sw400dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/res/values-sw410dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/res/values-sw410dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/res/values-sw411dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/res/values-sw411dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/res/values-sw432dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/res/values-sw432dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/res/values-sw480dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/res/values-sw480dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/res/values-sw533dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/res/values-sw533dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/res/values-sw540dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/res/values-sw540dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/res/values-sw592dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/res/values-sw592dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/res/values-sw640dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/res/values-sw640dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/res/values-sw662dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/res/values-sw662dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/res/values-sw720dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/res/values-sw720dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/res/values-sw768dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/res/values-sw768dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/res/values-sw800dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/res/values-sw800dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/res/values-sw811dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/res/values-sw811dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/res/values-sw820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/res/values-sw820dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/res/values-sw960dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/res/values-sw960dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/res/values-sw961dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/res/values-sw961dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /src/CH579Update/otaupdate/src/test/java/cn/wch/otaupdate/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/otaupdate/src/test/java/cn/wch/otaupdate/ExampleUnitTest.java -------------------------------------------------------------------------------- /src/CH579Update/screenMatch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/screenMatch.properties -------------------------------------------------------------------------------- /src/CH579Update/screenMatch_example_dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/screenMatch_example_dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/settings.gradle -------------------------------------------------------------------------------- /src/CH579Update/ui/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /src/CH579Update/ui/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/build.gradle -------------------------------------------------------------------------------- /src/CH579Update/ui/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/proguard-rules.pro -------------------------------------------------------------------------------- /src/CH579Update/ui/src/androidTest/java/com/touchmcu/ui/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/androidTest/java/com/touchmcu/ui/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/java/com/touchmcu/ui/DialogUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/java/com/touchmcu/ui/DialogUtil.java -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/java/com/touchmcu/ui/LoadingDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/java/com/touchmcu/ui/LoadingDialog.java -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/java/com/touchmcu/ui/LoadingView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/java/com/touchmcu/ui/LoadingView.java -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/res/anim/dialog_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/res/anim/dialog_in.xml -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/res/anim/dialog_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/res/anim/dialog_out.xml -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/res/layout/dialog_loading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/res/layout/dialog_loading.xml -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/res/values-sw1024dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/res/values-sw1024dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/res/values-sw1280dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/res/values-sw1280dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/res/values-sw1365dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/res/values-sw1365dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/res/values-sw320dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/res/values-sw320dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/res/values-sw360dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/res/values-sw360dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/res/values-sw384dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/res/values-sw384dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/res/values-sw392dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/res/values-sw392dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/res/values-sw400dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/res/values-sw400dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/res/values-sw410dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/res/values-sw410dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/res/values-sw411dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/res/values-sw411dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/res/values-sw432dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/res/values-sw432dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/res/values-sw480dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/res/values-sw480dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/res/values-sw533dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/res/values-sw533dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/res/values-sw540dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/res/values-sw540dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/res/values-sw592dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/res/values-sw592dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/res/values-sw640dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/res/values-sw640dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/res/values-sw662dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/res/values-sw662dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/res/values-sw720dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/res/values-sw720dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/res/values-sw768dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/res/values-sw768dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/res/values-sw800dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/res/values-sw800dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/res/values-sw811dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/res/values-sw811dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/res/values-sw820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/res/values-sw820dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/res/values-sw960dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/res/values-sw960dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/res/values-sw961dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/res/values-sw961dp/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /src/CH579Update/ui/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /src/CH579Update/ui/src/test/java/com/touchmcu/ui/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/CH579Update/ui/src/test/java/com/touchmcu/ui/ExampleUnitTest.java -------------------------------------------------------------------------------- /src/EVT/CH579_List.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/CH579_List.txt -------------------------------------------------------------------------------- /src/EVT/EXAM/ADC/CH57x.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/ADC/CH57x.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/ADC/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/ADC/Main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/BackupUpgrade_IAP/APP/include/ota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/BackupUpgrade_IAP/APP/include/ota.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/BackupUpgrade_IAP/APP/include/peripheral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/BackupUpgrade_IAP/APP/include/peripheral.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/BackupUpgrade_IAP/APP/peripheral.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/BackupUpgrade_IAP/APP/peripheral.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/BackupUpgrade_IAP/APP/peripheral_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/BackupUpgrade_IAP/APP/peripheral_main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/BackupUpgrade_IAP/Profile/OTAprofile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/BackupUpgrade_IAP/Profile/OTAprofile.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/BackupUpgrade_IAP/Profile/devinfoservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/BackupUpgrade_IAP/Profile/devinfoservice.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/BackupUpgrade_IAP/Profile/gattprofile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/BackupUpgrade_IAP/Profile/gattprofile.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/BackupUpgrade_IAP/Profile/include/OTAprofile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/BackupUpgrade_IAP/Profile/include/OTAprofile.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/BackupUpgrade_IAP/Profile/include/devinfoservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/BackupUpgrade_IAP/Profile/include/devinfoservice.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/BackupUpgrade_IAP/Profile/include/gattprofile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/BackupUpgrade_IAP/Profile/include/gattprofile.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/BackupUpgrade_IAP/Project/BLE.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/BackupUpgrade_IAP/Project/BLE.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/BackupUpgrade_OTA/APP/include/ota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/BackupUpgrade_OTA/APP/include/ota.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/BackupUpgrade_OTA/APP/include/peripheral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/BackupUpgrade_OTA/APP/include/peripheral.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/BackupUpgrade_OTA/APP/peripheral.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/BackupUpgrade_OTA/APP/peripheral.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/BackupUpgrade_OTA/APP/peripheral_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/BackupUpgrade_OTA/APP/peripheral_main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/BackupUpgrade_OTA/Profile/OTAprofile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/BackupUpgrade_OTA/Profile/OTAprofile.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/BackupUpgrade_OTA/Profile/devinfoservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/BackupUpgrade_OTA/Profile/devinfoservice.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/BackupUpgrade_OTA/Profile/gattprofile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/BackupUpgrade_OTA/Profile/gattprofile.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/BackupUpgrade_OTA/Profile/include/OTAprofile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/BackupUpgrade_OTA/Profile/include/OTAprofile.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/BackupUpgrade_OTA/Profile/include/devinfoservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/BackupUpgrade_OTA/Profile/include/devinfoservice.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/BackupUpgrade_OTA/Profile/include/gattprofile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/BackupUpgrade_OTA/Profile/include/gattprofile.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/BackupUpgrade_OTA/Project/BLE.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/BackupUpgrade_OTA/Project/BLE.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Broadcaster/APP/broadcaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Broadcaster/APP/broadcaster.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Broadcaster/APP/broadcaster_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Broadcaster/APP/broadcaster_main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Broadcaster/APP/include/broadcaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Broadcaster/APP/include/broadcaster.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Broadcaster/Profile/devinfoservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Broadcaster/Profile/devinfoservice.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Broadcaster/Profile/include/devinfoservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Broadcaster/Profile/include/devinfoservice.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Broadcaster/Project/BLE.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Broadcaster/Project/BLE.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/CH57xBLE协议栈库说明.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/CH57xBLE协议栈库说明.pdf -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/CentPeri/APP/centPeri_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/CentPeri/APP/centPeri_main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/CentPeri/APP/central.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/CentPeri/APP/central.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/CentPeri/APP/include/central.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/CentPeri/APP/include/central.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/CentPeri/APP/include/peripheral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/CentPeri/APP/include/peripheral.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/CentPeri/APP/peripheral.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/CentPeri/APP/peripheral.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/CentPeri/Profile/devinfoservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/CentPeri/Profile/devinfoservice.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/CentPeri/Profile/gattprofile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/CentPeri/Profile/gattprofile.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/CentPeri/Profile/include/devinfoservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/CentPeri/Profile/include/devinfoservice.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/CentPeri/Profile/include/gattprofile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/CentPeri/Profile/include/gattprofile.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/CentPeri/Project/BLE.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/CentPeri/Project/BLE.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Central/APP/central.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Central/APP/central.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Central/APP/central_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Central/APP/central_main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Central/APP/include/central.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Central/APP/include/central.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Central/Profile/include/gattprofile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Central/Profile/include/gattprofile.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Central/Project/BLE.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Central/Project/BLE.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/CyclingSensor/APP/cyclingsensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/CyclingSensor/APP/cyclingsensor.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/CyclingSensor/APP/cyclingsensor_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/CyclingSensor/APP/cyclingsensor_main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/CyclingSensor/APP/include/cyclingsensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/CyclingSensor/APP/include/cyclingsensor.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/CyclingSensor/Profile/battservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/CyclingSensor/Profile/battservice.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/CyclingSensor/Profile/cyclingservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/CyclingSensor/Profile/cyclingservice.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/CyclingSensor/Profile/devinfoservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/CyclingSensor/Profile/devinfoservice.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/CyclingSensor/Profile/include/battservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/CyclingSensor/Profile/include/battservice.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/CyclingSensor/Profile/include/cyclingservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/CyclingSensor/Profile/include/cyclingservice.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/CyclingSensor/Profile/include/devinfoservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/CyclingSensor/Profile/include/devinfoservice.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/CyclingSensor/Profile/include/hiddev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/CyclingSensor/Profile/include/hiddev.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/CyclingSensor/Project/BLE.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/CyclingSensor/Project/BLE.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Direct_Test_Mode/APP/buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Direct_Test_Mode/APP/buf.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Direct_Test_Mode/APP/dtm_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Direct_Test_Mode/APP/dtm_main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Direct_Test_Mode/APP/hci_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Direct_Test_Mode/APP/hci_test.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Direct_Test_Mode/APP/include/buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Direct_Test_Mode/APP/include/buf.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Direct_Test_Mode/APP/include/hci_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Direct_Test_Mode/APP/include/hci_test.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Direct_Test_Mode/APP/include/test_dtm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Direct_Test_Mode/APP/include/test_dtm.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Direct_Test_Mode/APP/include/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Direct_Test_Mode/APP/include/uart.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Direct_Test_Mode/APP/test_dtm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Direct_Test_Mode/APP/test_dtm.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Direct_Test_Mode/APP/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Direct_Test_Mode/APP/uart.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Direct_Test_Mode/Profile/battservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Direct_Test_Mode/Profile/battservice.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Direct_Test_Mode/Profile/devinfoservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Direct_Test_Mode/Profile/devinfoservice.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Direct_Test_Mode/Profile/include/battservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Direct_Test_Mode/Profile/include/battservice.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Direct_Test_Mode/Profile/include/devinfoservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Direct_Test_Mode/Profile/include/devinfoservice.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Direct_Test_Mode/Profile/include/hiddev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Direct_Test_Mode/Profile/include/hiddev.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Direct_Test_Mode/Project/BLE.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Direct_Test_Mode/Project/BLE.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HAL/KEY.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HAL/KEY.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HAL/LED.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HAL/LED.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HAL/MCU.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HAL/MCU.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HAL/RTC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HAL/RTC.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HAL/SLEEP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HAL/SLEEP.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HAL/include/HAL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HAL/include/HAL.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HAL/include/KEY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HAL/include/KEY.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HAL/include/LED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HAL/include/LED.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HAL/include/RTC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HAL/include/RTC.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HAL/include/SLEEP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HAL/include/SLEEP.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HAL/include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HAL/include/config.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Consumer/APP/hidconsumer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Consumer/APP/hidconsumer.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Consumer/APP/hidconsumer_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Consumer/APP/hidconsumer_main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Consumer/APP/include/hidconsumer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Consumer/APP/include/hidconsumer.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Consumer/Profile/battservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Consumer/Profile/battservice.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Consumer/Profile/devinfoservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Consumer/Profile/devinfoservice.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Consumer/Profile/hidconsumerservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Consumer/Profile/hidconsumerservice.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Consumer/Profile/hiddev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Consumer/Profile/hiddev.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Consumer/Profile/include/battservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Consumer/Profile/include/battservice.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Consumer/Profile/include/devinfoservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Consumer/Profile/include/devinfoservice.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Consumer/Profile/include/hidconsumerservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Consumer/Profile/include/hidconsumerservice.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Consumer/Profile/include/hiddev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Consumer/Profile/include/hiddev.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Consumer/Profile/include/scanparamservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Consumer/Profile/include/scanparamservice.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Consumer/Profile/scanparamservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Consumer/Profile/scanparamservice.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Consumer/Project/BLE.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Consumer/Project/BLE.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Keyboard/APP/hidkbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Keyboard/APP/hidkbd.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Keyboard/APP/hidkbd_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Keyboard/APP/hidkbd_main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Keyboard/APP/include/hidkbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Keyboard/APP/include/hidkbd.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Keyboard/Profile/battservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Keyboard/Profile/battservice.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Keyboard/Profile/devinfoservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Keyboard/Profile/devinfoservice.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Keyboard/Profile/hiddev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Keyboard/Profile/hiddev.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Keyboard/Profile/hidkbdservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Keyboard/Profile/hidkbdservice.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Keyboard/Profile/include/battservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Keyboard/Profile/include/battservice.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Keyboard/Profile/include/devinfoservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Keyboard/Profile/include/devinfoservice.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Keyboard/Profile/include/hiddev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Keyboard/Profile/include/hiddev.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Keyboard/Profile/include/hidkbdservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Keyboard/Profile/include/hidkbdservice.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Keyboard/Profile/include/scanparamservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Keyboard/Profile/include/scanparamservice.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Keyboard/Profile/scanparamservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Keyboard/Profile/scanparamservice.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Keyboard/Project/BLE.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Keyboard/Project/BLE.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Mouse/APP/hidmouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Mouse/APP/hidmouse.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Mouse/APP/hidmouse_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Mouse/APP/hidmouse_main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Mouse/APP/include/hidmouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Mouse/APP/include/hidmouse.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Mouse/Profile/battservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Mouse/Profile/battservice.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Mouse/Profile/devinfoservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Mouse/Profile/devinfoservice.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Mouse/Profile/hiddev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Mouse/Profile/hiddev.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Mouse/Profile/hidmouseservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Mouse/Profile/hidmouseservice.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Mouse/Profile/include/battservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Mouse/Profile/include/battservice.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Mouse/Profile/include/devinfoservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Mouse/Profile/include/devinfoservice.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Mouse/Profile/include/hiddev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Mouse/Profile/include/hiddev.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Mouse/Profile/include/hidmouseservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Mouse/Profile/include/hidmouseservice.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Mouse/Profile/include/scanparamservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Mouse/Profile/include/scanparamservice.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Mouse/Profile/scanparamservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Mouse/Profile/scanparamservice.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Mouse/Project/BLE.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Mouse/Project/BLE.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Touch/APP/hidtouch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Touch/APP/hidtouch.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Touch/APP/hidtouch_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Touch/APP/hidtouch_main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Touch/APP/include/hidtouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Touch/APP/include/hidtouch.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Touch/Profile/battservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Touch/Profile/battservice.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Touch/Profile/devinfoservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Touch/Profile/devinfoservice.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Touch/Profile/hiddev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Touch/Profile/hiddev.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Touch/Profile/hidtouchservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Touch/Profile/hidtouchservice.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Touch/Profile/include/battservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Touch/Profile/include/battservice.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Touch/Profile/include/devinfoservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Touch/Profile/include/devinfoservice.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Touch/Profile/include/hiddev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Touch/Profile/include/hiddev.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Touch/Profile/include/hidtouchservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Touch/Profile/include/hidtouchservice.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Touch/Profile/include/scanparamservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Touch/Profile/include/scanparamservice.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Touch/Profile/scanparamservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Touch/Profile/scanparamservice.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HID_Touch/Project/BLE.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HID_Touch/Project/BLE.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HeartRate/APP/heartrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HeartRate/APP/heartrate.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HeartRate/APP/heartrate_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HeartRate/APP/heartrate_main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HeartRate/APP/include/heartrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HeartRate/APP/include/heartrate.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HeartRate/Profile/battservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HeartRate/Profile/battservice.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HeartRate/Profile/devinfoservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HeartRate/Profile/devinfoservice.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HeartRate/Profile/heartrateservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HeartRate/Profile/heartrateservice.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HeartRate/Profile/include/battservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HeartRate/Profile/include/battservice.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HeartRate/Profile/include/devinfoservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HeartRate/Profile/include/devinfoservice.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HeartRate/Profile/include/heartrateservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HeartRate/Profile/include/heartrateservice.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HeartRate/Profile/include/hiddev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HeartRate/Profile/include/hiddev.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/HeartRate/Project/BLE.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/HeartRate/Project/BLE.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/LIB/CH577BLE_ROM.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/LIB/CH577BLE_ROM.hex -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/LIB/CH578BLE_ROM.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/LIB/CH578BLE_ROM.hex -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/LIB/CH579BLE_ROM.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/LIB/CH579BLE_ROM.hex -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/LIB/CH57xBLE.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/LIB/CH57xBLE.lib -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/LIB/CH57xBLE_LIB.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/LIB/CH57xBLE_LIB.H -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/LIB/CH57xBLE_ROM.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/LIB/CH57xBLE_ROM.H -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/MESH_LIB/MESH_LIB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/MESH_LIB/MESH_LIB.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/MESH_LIB/MESH_LIB.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/MESH_LIB/MESH_LIB.lib -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light/APP/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light/APP/app.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light/APP/app_generic_onoff_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light/APP/app_generic_onoff_model.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light/APP/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light/APP/app_main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light/APP/app_mesh_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light/APP/app_mesh_config.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light/APP/app_vendor_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light/APP/app_vendor_model.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light/APP/include/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light/APP/include/app.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light/APP/include/app_generic_onoff_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light/APP/include/app_generic_onoff_model.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light/APP/include/app_mesh_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light/APP/include/app_mesh_config.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light/APP/include/app_vendor_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light/APP/include/app_vendor_model.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light/Project/BLE.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light/Project/BLE.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_add_lightness/APP/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_add_lightness/APP/app.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_add_lightness/APP/app_generic_lightness_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_add_lightness/APP/app_generic_lightness_model.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_add_lightness/APP/app_generic_onoff_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_add_lightness/APP/app_generic_onoff_model.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_add_lightness/APP/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_add_lightness/APP/app_main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_add_lightness/APP/app_mesh_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_add_lightness/APP/app_mesh_config.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_add_lightness/APP/app_vendor_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_add_lightness/APP/app_vendor_model.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_add_lightness/APP/include/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_add_lightness/APP/include/app.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_add_lightness/APP/include/app_generic_lightness_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_add_lightness/APP/include/app_generic_lightness_model.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_add_lightness/APP/include/app_generic_onoff_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_add_lightness/APP/include/app_generic_onoff_model.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_add_lightness/APP/include/app_mesh_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_add_lightness/APP/include/app_mesh_config.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_add_lightness/APP/include/app_vendor_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_add_lightness/APP/include/app_vendor_model.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_add_lightness/Project/BLE.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_add_lightness/Project/BLE.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_add_windspeed/APP/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_add_windspeed/APP/app.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_add_windspeed/APP/app_als_windspeed_attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_add_windspeed/APP/app_als_windspeed_attr.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_add_windspeed/APP/app_generic_onoff_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_add_windspeed/APP/app_generic_onoff_model.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_add_windspeed/APP/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_add_windspeed/APP/app_main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_add_windspeed/APP/app_mesh_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_add_windspeed/APP/app_mesh_config.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_add_windspeed/APP/app_vendor_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_add_windspeed/APP/app_vendor_model.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_add_windspeed/APP/include/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_add_windspeed/APP/include/app.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_add_windspeed/APP/include/app_als_windspeed_attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_add_windspeed/APP/include/app_als_windspeed_attr.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_add_windspeed/APP/include/app_generic_onoff_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_add_windspeed/APP/include/app_generic_onoff_model.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_add_windspeed/APP/include/app_mesh_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_add_windspeed/APP/include/app_mesh_config.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_add_windspeed/APP/include/app_vendor_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_add_windspeed/APP/include/app_vendor_model.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_add_windspeed/APP/include/mesh_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_add_windspeed/APP/include/mesh_debug.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_add_windspeed/Project/BLE.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_add_windspeed/Project/BLE.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_with_peripheral/APP/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_with_peripheral/APP/app.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_with_peripheral/APP/app_generic_color_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_with_peripheral/APP/app_generic_color_model.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_with_peripheral/APP/app_generic_lightness_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_with_peripheral/APP/app_generic_lightness_model.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_with_peripheral/APP/app_generic_onoff_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_with_peripheral/APP/app_generic_onoff_model.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_with_peripheral/APP/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_with_peripheral/APP/app_main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_with_peripheral/APP/app_mesh_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_with_peripheral/APP/app_mesh_config.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_with_peripheral/APP/app_vendor_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_with_peripheral/APP/app_vendor_model.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_with_peripheral/APP/include/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_with_peripheral/APP/include/app.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_with_peripheral/APP/include/app_generic_color_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_with_peripheral/APP/include/app_generic_color_model.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_with_peripheral/APP/include/app_generic_lightness_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_with_peripheral/APP/include/app_generic_lightness_model.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_with_peripheral/APP/include/app_generic_onoff_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_with_peripheral/APP/include/app_generic_onoff_model.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_with_peripheral/APP/include/app_mesh_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_with_peripheral/APP/include/app_mesh_config.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_with_peripheral/APP/include/app_vendor_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_with_peripheral/APP/include/app_vendor_model.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_with_peripheral/APP/include/peripheral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_with_peripheral/APP/include/peripheral.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_with_peripheral/APP/peripheral.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_with_peripheral/APP/peripheral.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_with_peripheral/Profile/gattprofile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_with_peripheral/Profile/gattprofile.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_with_peripheral/Profile/include/gattprofile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_with_peripheral/Profile/include/gattprofile.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_ali_light_with_peripheral/Project/BLE.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_ali_light_with_peripheral/Project/BLE.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_proxy/APP/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_proxy/APP/app.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_proxy/APP/app_generic_onoff_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_proxy/APP/app_generic_onoff_model.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_proxy/APP/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_proxy/APP/app_main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_proxy/APP/app_mesh_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_proxy/APP/app_mesh_config.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_proxy/APP/include/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_proxy/APP/include/app.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_proxy/APP/include/app_generic_onoff_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_proxy/APP/include/app_generic_onoff_model.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_proxy/APP/include/app_mesh_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_proxy/APP/include/app_mesh_config.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_proxy/Project/BLE.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_proxy/Project/BLE.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_vendor/APP/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_vendor/APP/app.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_vendor/APP/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_vendor/APP/app_main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_vendor/APP/app_mesh_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_vendor/APP/app_mesh_config.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_vendor/APP/app_vendor_model_srv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_vendor/APP/app_vendor_model_srv.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_vendor/APP/include/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_vendor/APP/include/app.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_vendor/APP/include/app_mesh_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_vendor/APP/include/app_mesh_config.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_vendor/APP/include/app_vendor_model_srv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_vendor/APP/include/app_vendor_model_srv.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_vendor/Project/BLE.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_vendor/Project/BLE.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_vendor_friend/APP/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_vendor_friend/APP/app.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_vendor_friend/APP/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_vendor_friend/APP/app_main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_vendor_friend/APP/app_mesh_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_vendor_friend/APP/app_mesh_config.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_vendor_friend/APP/app_vendor_model_srv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_vendor_friend/APP/app_vendor_model_srv.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_vendor_friend/APP/include/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_vendor_friend/APP/include/app.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_vendor_friend/APP/include/app_mesh_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_vendor_friend/APP/include/app_mesh_config.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_vendor_friend/APP/include/app_vendor_model_srv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_vendor_friend/APP/include/app_vendor_model_srv.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_vendor_friend/Project/BLE.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_vendor_friend/Project/BLE.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_vendor_low_power/APP/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_vendor_low_power/APP/app.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_vendor_low_power/APP/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_vendor_low_power/APP/app_main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_vendor_low_power/APP/app_mesh_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_vendor_low_power/APP/app_mesh_config.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_vendor_low_power/APP/app_vendor_model_srv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_vendor_low_power/APP/app_vendor_model_srv.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_vendor_low_power/APP/include/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_vendor_low_power/APP/include/app.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_vendor_low_power/APP/include/app_mesh_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_vendor_low_power/APP/include/app_mesh_config.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_vendor_low_power/APP/include/app_vendor_model_srv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_vendor_low_power/APP/include/app_vendor_model_srv.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/adv_vendor_low_power/Project/BLE.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/adv_vendor_low_power/Project/BLE.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/self_provisioner_vendor/APP/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/self_provisioner_vendor/APP/app.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/self_provisioner_vendor/APP/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/self_provisioner_vendor/APP/app_main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/self_provisioner_vendor/APP/app_mesh_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/self_provisioner_vendor/APP/app_mesh_config.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/self_provisioner_vendor/APP/app_vendor_model_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/self_provisioner_vendor/APP/app_vendor_model_cli.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/self_provisioner_vendor/APP/include/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/self_provisioner_vendor/APP/include/app.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/self_provisioner_vendor/APP/include/app_mesh_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/self_provisioner_vendor/APP/include/app_mesh_config.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/self_provisioner_vendor/APP/include/app_vendor_model_cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/self_provisioner_vendor/APP/include/app_vendor_model_cli.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/self_provisioner_vendor/APP/include/app_vendor_model_srv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/self_provisioner_vendor/APP/include/app_vendor_model_srv.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/self_provisioner_vendor/Project/BLE.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/self_provisioner_vendor/Project/BLE.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/self_provisioner_vendor_with_peripheral/APP/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/self_provisioner_vendor_with_peripheral/APP/app.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/self_provisioner_vendor_with_peripheral/APP/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/self_provisioner_vendor_with_peripheral/APP/app_main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/self_provisioner_vendor_with_peripheral/APP/app_mesh_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/self_provisioner_vendor_with_peripheral/APP/app_mesh_config.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/self_provisioner_vendor_with_peripheral/APP/app_vendor_model_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/self_provisioner_vendor_with_peripheral/APP/app_vendor_model_cli.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/self_provisioner_vendor_with_peripheral/APP/include/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/self_provisioner_vendor_with_peripheral/APP/include/app.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/self_provisioner_vendor_with_peripheral/APP/include/app_mesh_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/self_provisioner_vendor_with_peripheral/APP/include/app_mesh_config.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/self_provisioner_vendor_with_peripheral/APP/include/app_vendor_model_cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/self_provisioner_vendor_with_peripheral/APP/include/app_vendor_model_cli.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/self_provisioner_vendor_with_peripheral/APP/include/app_vendor_model_srv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/self_provisioner_vendor_with_peripheral/APP/include/app_vendor_model_srv.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/self_provisioner_vendor_with_peripheral/APP/include/peripheral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/self_provisioner_vendor_with_peripheral/APP/include/peripheral.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/self_provisioner_vendor_with_peripheral/APP/peripheral.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/self_provisioner_vendor_with_peripheral/APP/peripheral.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/self_provisioner_vendor_with_peripheral/Profile/gattprofile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/self_provisioner_vendor_with_peripheral/Profile/gattprofile.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/self_provisioner_vendor_with_peripheral/Profile/include/gattprofile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/self_provisioner_vendor_with_peripheral/Profile/include/gattprofile.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MESH/self_provisioner_vendor_with_peripheral/Project/BLE.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MESH/self_provisioner_vendor_with_peripheral/Project/BLE.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MultiCentral/APP/include/multiCentral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MultiCentral/APP/include/multiCentral.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MultiCentral/APP/multiCentral.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MultiCentral/APP/multiCentral.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MultiCentral/APP/multiCentral_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MultiCentral/APP/multiCentral_main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MultiCentral/Profile/include/gattprofile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MultiCentral/Profile/include/gattprofile.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/MultiCentral/Project/BLE.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/MultiCentral/Project/BLE.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Observer/APP/include/observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Observer/APP/include/observer.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Observer/APP/observer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Observer/APP/observer.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Observer/APP/observer_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Observer/APP/observer_main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Observer/Project/BLE.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Observer/Project/BLE.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/OnlyUpdateApp_IAP/APP/OTAnobackup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/OnlyUpdateApp_IAP/APP/OTAnobackup.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/OnlyUpdateApp_IAP/APP/OTAnobackup_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/OnlyUpdateApp_IAP/APP/OTAnobackup_main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/OnlyUpdateApp_IAP/APP/include/OTAnobackup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/OnlyUpdateApp_IAP/APP/include/OTAnobackup.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/OnlyUpdateApp_IAP/APP/include/ota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/OnlyUpdateApp_IAP/APP/include/ota.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/OnlyUpdateApp_IAP/Profile/OTAprofile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/OnlyUpdateApp_IAP/Profile/OTAprofile.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/OnlyUpdateApp_IAP/Profile/devinfoservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/OnlyUpdateApp_IAP/Profile/devinfoservice.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/OnlyUpdateApp_IAP/Profile/gattprofile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/OnlyUpdateApp_IAP/Profile/gattprofile.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/OnlyUpdateApp_IAP/Profile/include/OTAprofile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/OnlyUpdateApp_IAP/Profile/include/OTAprofile.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/OnlyUpdateApp_IAP/Profile/include/devinfoservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/OnlyUpdateApp_IAP/Profile/include/devinfoservice.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/OnlyUpdateApp_IAP/Profile/include/gattprofile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/OnlyUpdateApp_IAP/Profile/include/gattprofile.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/OnlyUpdateApp_IAP/Project/BLE.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/OnlyUpdateApp_IAP/Project/BLE.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/OnlyUpdateApp_Peripheral/APP/include/ota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/OnlyUpdateApp_Peripheral/APP/include/ota.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/OnlyUpdateApp_Peripheral/APP/include/peripheral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/OnlyUpdateApp_Peripheral/APP/include/peripheral.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/OnlyUpdateApp_Peripheral/APP/peripheral.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/OnlyUpdateApp_Peripheral/APP/peripheral.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/OnlyUpdateApp_Peripheral/APP/peripheral_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/OnlyUpdateApp_Peripheral/APP/peripheral_main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/OnlyUpdateApp_Peripheral/Profile/devinfoservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/OnlyUpdateApp_Peripheral/Profile/devinfoservice.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/OnlyUpdateApp_Peripheral/Profile/gattprofile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/OnlyUpdateApp_Peripheral/Profile/gattprofile.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/OnlyUpdateApp_Peripheral/Profile/include/devinfoservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/OnlyUpdateApp_Peripheral/Profile/include/devinfoservice.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/OnlyUpdateApp_Peripheral/Profile/include/gattprofile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/OnlyUpdateApp_Peripheral/Profile/include/gattprofile.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/OnlyUpdateApp_Peripheral/Project/BLE.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/OnlyUpdateApp_Peripheral/Project/BLE.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Peripheral/APP/include/peripheral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Peripheral/APP/include/peripheral.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Peripheral/APP/peripheral.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Peripheral/APP/peripheral.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Peripheral/APP/peripheral_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Peripheral/APP/peripheral_main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Peripheral/Profile/devinfoservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Peripheral/Profile/devinfoservice.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Peripheral/Profile/gattprofile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Peripheral/Profile/gattprofile.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Peripheral/Profile/include/devinfoservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Peripheral/Profile/include/devinfoservice.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Peripheral/Profile/include/gattprofile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Peripheral/Profile/include/gattprofile.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/Peripheral/Project/BLE.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/Peripheral/Project/BLE.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/RF_PHY/APP/RF_PHY.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/RF_PHY/APP/RF_PHY.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/RF_PHY/APP/RF_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/RF_PHY/APP/RF_main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/RF_PHY/APP/include/RF_PHY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/RF_PHY/APP/include/RF_PHY.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/RF_PHY/Project/BLE.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/RF_PHY/Project/BLE.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/RF_PHY_Hop/APP/RF_PHY.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/RF_PHY_Hop/APP/RF_PHY.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/RF_PHY_Hop/APP/RF_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/RF_PHY_Hop/APP/RF_main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/RF_PHY_Hop/APP/include/RF_PHY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/RF_PHY_Hop/APP/include/RF_PHY.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/RF_PHY_Hop/Project/BLE.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/RF_PHY_Hop/Project/BLE.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/RunningSensor/APP/include/runningsensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/RunningSensor/APP/include/runningsensor.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/RunningSensor/APP/runningsensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/RunningSensor/APP/runningsensor.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/RunningSensor/APP/runningsensor_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/RunningSensor/APP/runningsensor_main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/RunningSensor/Profile/battservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/RunningSensor/Profile/battservice.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/RunningSensor/Profile/devinfoservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/RunningSensor/Profile/devinfoservice.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/RunningSensor/Profile/include/battservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/RunningSensor/Profile/include/battservice.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/RunningSensor/Profile/include/devinfoservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/RunningSensor/Profile/include/devinfoservice.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/RunningSensor/Profile/include/hiddev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/RunningSensor/Profile/include/hiddev.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/RunningSensor/Profile/include/runningservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/RunningSensor/Profile/include/runningservice.h -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/RunningSensor/Profile/runningservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/RunningSensor/Profile/runningservice.c -------------------------------------------------------------------------------- /src/EVT/EXAM/BLE/RunningSensor/Project/BLE.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/BLE/RunningSensor/Project/BLE.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/FLASH/CH57x.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/FLASH/CH57x.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/FLASH/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/FLASH/Main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/LCD/CH57x.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/LCD/CH57x.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/LCD/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/LCD/Main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/DHCP/CH57x.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/DHCP/CH57x.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/DHCP/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/DHCP/Main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/DHCP/net_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/DHCP/net_config.h -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/DNS/CH57x.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/DNS/CH57x.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/DNS/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/DNS/Main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/DNS/net_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/DNS/net_config.h -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/FTP_Client/CH57x.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/FTP_Client/CH57x.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/FTP_Client/FTP/FTPCMD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/FTP_Client/FTP/FTPCMD.c -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/FTP_Client/FTP/FTPINC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/FTP_Client/FTP/FTPINC.h -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/FTP_Client/FTP/FTP_Client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/FTP_Client/FTP/FTP_Client.c -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/FTP_Client/FTP/FTPfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/FTP_Client/FTP/FTPfile.c -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/FTP_Client/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/FTP_Client/Main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/FTP_Client/net_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/FTP_Client/net_config.h -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/FTP_Server/CH57x.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/FTP_Server/CH57x.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/FTP_Server/FTP/FTPCMD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/FTP_Server/FTP/FTPCMD.c -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/FTP_Server/FTP/FTPINC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/FTP_Server/FTP/FTPINC.h -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/FTP_Server/FTP/FTP_Server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/FTP_Server/FTP/FTP_Server.c -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/FTP_Server/FTP/FTPfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/FTP_Server/FTP/FTPfile.c -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/FTP_Server/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/FTP_Server/Main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/FTP_Server/net_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/FTP_Server/net_config.h -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/IPRaw_PING/CH57x.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/IPRaw_PING/CH57x.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/IPRaw_PING/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/IPRaw_PING/Main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/IPRaw_PING/PING/PING.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/IPRaw_PING/PING/PING.c -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/IPRaw_PING/PING/PING.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/IPRaw_PING/PING/PING.h -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/IPRaw_PING/net_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/IPRaw_PING/net_config.h -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/MQTT/CH57x.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/MQTT/CH57x.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/MQTT/MQTT/MQTTConnectClient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/MQTT/MQTT/MQTTConnectClient.c -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/MQTT/MQTT/MQTTDeserializePublish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/MQTT/MQTT/MQTTDeserializePublish.c -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/MQTT/MQTT/MQTTFormat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/MQTT/MQTT/MQTTFormat.c -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/MQTT/MQTT/MQTTPacket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/MQTT/MQTT/MQTTPacket.c -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/MQTT/MQTT/MQTTSerializePublish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/MQTT/MQTT/MQTTSerializePublish.c -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/MQTT/MQTT/MQTTSubscribeClient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/MQTT/MQTT/MQTTSubscribeClient.c -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/MQTT/MQTT/MQTTUnsubscribeClient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/MQTT/MQTT/MQTTUnsubscribeClient.c -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/MQTT/MQTT/inc/MQTTConnect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/MQTT/MQTT/inc/MQTTConnect.h -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/MQTT/MQTT/inc/MQTTFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/MQTT/MQTT/inc/MQTTFormat.h -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/MQTT/MQTT/inc/MQTTPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/MQTT/MQTT/inc/MQTTPacket.h -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/MQTT/MQTT/inc/MQTTPublish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/MQTT/MQTT/inc/MQTTPublish.h -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/MQTT/MQTT/inc/MQTTSubscribe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/MQTT/MQTT/inc/MQTTSubscribe.h -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/MQTT/MQTT/inc/MQTTUnsubscribe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/MQTT/MQTT/inc/MQTTUnsubscribe.h -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/MQTT/MQTT/inc/StackTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/MQTT/MQTT/inc/StackTrace.h -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/MQTT/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/MQTT/Main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/MQTT/net_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/MQTT/net_config.h -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/NetLib/CH57xNET.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/NetLib/CH57xNET.lib -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/NetLib/eth_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/NetLib/eth_driver.c -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/NetLib/eth_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/NetLib/eth_driver.h -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/NetLib/wchnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/NetLib/wchnet.h -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/TcpClient/CH57x.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/TcpClient/CH57x.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/TcpClient/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/TcpClient/Main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/TcpClient/net_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/TcpClient/net_config.h -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/TcpServer/CH57x.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/TcpServer/CH57x.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/TcpServer/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/TcpServer/Main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/TcpServer/net_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/TcpServer/net_config.h -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/UdpClient/CH57x.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/UdpClient/CH57x.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/UdpClient/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/UdpClient/Main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/UdpClient/net_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/UdpClient/net_config.h -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/UdpServer/CH57x.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/UdpServer/CH57x.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/UdpServer/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/UdpServer/Main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/UdpServer/net_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/UdpServer/net_config.h -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/WCHNET Protocol Stack Library Application Note.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/WCHNET Protocol Stack Library Application Note.PDF -------------------------------------------------------------------------------- /src/EVT/EXAM/NET/WCHNET使用文档.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/NET/WCHNET使用文档.PDF -------------------------------------------------------------------------------- /src/EVT/EXAM/PM/CH57x.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/PM/CH57x.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/PM/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/PM/Main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/PWMX/CH57x.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/PWMX/CH57x.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/PWMX/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/PWMX/Main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/SPI0/SPI0_MASTER&SLAVE/CH57x.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SPI0/SPI0_MASTER&SLAVE/CH57x.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/SPI0/SPI0_MASTER&SLAVE/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SPI0/SPI0_MASTER&SLAVE/Main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/SPI1/SPI1_FLASH/CH57x.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SPI1/SPI1_FLASH/CH57x.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/SPI1/SPI1_FLASH/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SPI1/SPI1_FLASH/Main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/SPI1/SPI1_FLASH/SPIFlash.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SPI1/SPI1_FLASH/SPIFlash.C -------------------------------------------------------------------------------- /src/EVT/EXAM/SPI1/SPI1_FLASH/SPIFlash.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SPI1/SPI1_FLASH/SPIFlash.H -------------------------------------------------------------------------------- /src/EVT/EXAM/SPI1/SPI1_MASTER/CH57x.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SPI1/SPI1_MASTER/CH57x.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/SPI1/SPI1_MASTER/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SPI1/SPI1_MASTER/Main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/CMSIS/Include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/CMSIS/Include/core_cmFunc.h -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/CMSIS/Include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/CMSIS/Include/core_cmInstr.h -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/Startup/startup_ARMCM0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/Startup/startup_ARMCM0.s -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_adc.c -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_clk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_clk.c -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_flash.c -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_gpio.c -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_int.c -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_lcd.c -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_pwm.c -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_pwr.c -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_spi0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_spi0.c -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_spi1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_spi1.c -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_sys.c -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_timer0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_timer0.c -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_timer1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_timer1.c -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_timer2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_timer2.c -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_timer3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_timer3.c -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_uart0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_uart0.c -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_uart1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_uart1.c -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_uart2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_uart2.c -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_uart3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_uart3.c -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_usbdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_usbdev.c -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_usbhostBase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_usbhostBase.c -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_usbhostClass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/StdPeriphDriver/CH57x_usbhostClass.c -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/StdPeriphDriver/inc/CH579SFR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/StdPeriphDriver/inc/CH579SFR.h -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/StdPeriphDriver/inc/CH57x_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/StdPeriphDriver/inc/CH57x_adc.h -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/StdPeriphDriver/inc/CH57x_clk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/StdPeriphDriver/inc/CH57x_clk.h -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/StdPeriphDriver/inc/CH57x_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/StdPeriphDriver/inc/CH57x_common.h -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/StdPeriphDriver/inc/CH57x_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/StdPeriphDriver/inc/CH57x_flash.h -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/StdPeriphDriver/inc/CH57x_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/StdPeriphDriver/inc/CH57x_gpio.h -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/StdPeriphDriver/inc/CH57x_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/StdPeriphDriver/inc/CH57x_lcd.h -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/StdPeriphDriver/inc/CH57x_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/StdPeriphDriver/inc/CH57x_pwm.h -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/StdPeriphDriver/inc/CH57x_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/StdPeriphDriver/inc/CH57x_pwr.h -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/StdPeriphDriver/inc/CH57x_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/StdPeriphDriver/inc/CH57x_spi.h -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/StdPeriphDriver/inc/CH57x_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/StdPeriphDriver/inc/CH57x_sys.h -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/StdPeriphDriver/inc/CH57x_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/StdPeriphDriver/inc/CH57x_timer.h -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/StdPeriphDriver/inc/CH57x_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/StdPeriphDriver/inc/CH57x_uart.h -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/StdPeriphDriver/inc/CH57x_usbdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/StdPeriphDriver/inc/CH57x_usbdev.h -------------------------------------------------------------------------------- /src/EVT/EXAM/SRC/StdPeriphDriver/inc/CH57x_usbhost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/SRC/StdPeriphDriver/inc/CH57x_usbhost.h -------------------------------------------------------------------------------- /src/EVT/EXAM/TMR/CH57x.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/TMR/CH57x.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/TMR/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/TMR/Main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/UART1/CH57x.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/UART1/CH57x.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/UART1/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/UART1/Main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/USB/Device/CompoundDev/CH57x.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/USB/Device/CompoundDev/CH57x.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/USB/Device/CompoundDev/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/USB/Device/CompoundDev/Main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/USB/Device/VendorDefinedDev/CH57x.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/USB/Device/VendorDefinedDev/CH57x.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/USB/Device/VendorDefinedDev/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/USB/Device/VendorDefinedDev/Main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/USB/Host/HostAOA/CH57x.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/USB/Host/HostAOA/CH57x.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/USB/Host/HostAOA/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/USB/Host/HostAOA/Main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/USB/Host/HostEnum/CH57x.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/USB/Host/HostEnum/CH57x.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/USB/Host/HostEnum/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/USB/Host/HostEnum/Main.c -------------------------------------------------------------------------------- /src/EVT/EXAM/USB/Host/USB_LIB/CH579UFI.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/USB/Host/USB_LIB/CH579UFI.C -------------------------------------------------------------------------------- /src/EVT/EXAM/USB/Host/USB_LIB/CH579UFI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/USB/Host/USB_LIB/CH579UFI.H -------------------------------------------------------------------------------- /src/EVT/EXAM/USB/Host/USB_LIB/CH579UFI.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/USB/Host/USB_LIB/CH579UFI.lib -------------------------------------------------------------------------------- /src/EVT/EXAM/USB/Host/USB_LIB/CH579UF_README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/USB/Host/USB_LIB/CH579UF_README.TXT -------------------------------------------------------------------------------- /src/EVT/EXAM/USB/Host/U_DISK/EXAM1/CH57x.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/USB/Host/U_DISK/EXAM1/CH57x.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/USB/Host/U_DISK/EXAM1/EXAM1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/USB/Host/U_DISK/EXAM1/EXAM1.C -------------------------------------------------------------------------------- /src/EVT/EXAM/USB/Host/U_DISK/EXAM10/CH57x.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/USB/Host/U_DISK/EXAM10/CH57x.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/USB/Host/U_DISK/EXAM10/EXAM10.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/USB/Host/U_DISK/EXAM10/EXAM10.C -------------------------------------------------------------------------------- /src/EVT/EXAM/USB/Host/U_DISK/EXAM11/CH57x.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/USB/Host/U_DISK/EXAM11/CH57x.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/USB/Host/U_DISK/EXAM11/EXAM11.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/USB/Host/U_DISK/EXAM11/EXAM11.C -------------------------------------------------------------------------------- /src/EVT/EXAM/USB/Host/U_DISK/EXAM13/CH57x.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/USB/Host/U_DISK/EXAM13/CH57x.uvprojx -------------------------------------------------------------------------------- /src/EVT/EXAM/USB/Host/U_DISK/EXAM13/EXAM13.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/EXAM/USB/Host/U_DISK/EXAM13/EXAM13.C -------------------------------------------------------------------------------- /src/EVT/PUB/CH579SCH.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/PUB/CH579SCH.PDF -------------------------------------------------------------------------------- /src/EVT/PUB/CH579评估版说明书.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/PUB/CH579评估版说明书.PDF -------------------------------------------------------------------------------- /src/EVT/PUB/Keil.WCH57x_DFP.1.1.0.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/PUB/Keil.WCH57x_DFP.1.1.0.pack -------------------------------------------------------------------------------- /src/EVT/PUB/蓝牙芯片的电路及PCB设计的重要注意事项.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/EVT/PUB/蓝牙芯片的电路及PCB设计的重要注意事项.pdf -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/README.md -------------------------------------------------------------------------------- /src/kicad/QFN-28-1EP_4x4mm_Pitch0.4mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCXin/CH579/HEAD/src/kicad/QFN-28-1EP_4x4mm_Pitch0.4mm.kicad_mod --------------------------------------------------------------------------------