├── .gitignore ├── 1.Hardware ├── Gerber_PCB_EasyGPS_V1.4_2024-06-16.zip └── README.md ├── 2.Firmware ├── .gitignore ├── README.md ├── include │ └── README ├── lib │ ├── ESP32-BLE-Combo │ │ ├── BleCombo.cpp │ │ ├── BleCombo.h │ │ ├── BleGamepad.h │ │ ├── BleKeyboard.h │ │ ├── BleMouse.h │ │ ├── Gamepad.cpp │ │ ├── Keyboard.cpp │ │ ├── Mouse.cpp │ │ ├── README.md │ │ ├── examples │ │ │ ├── MouseButtons │ │ │ │ └── MouseButtons.ino │ │ │ ├── SendButtons │ │ │ │ └── SendButtons.ino │ │ │ └── SendKeyStrokes │ │ │ │ └── SendKeyStrokes.ino │ │ ├── keywords.txt │ │ └── library.properties │ ├── FastLED │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── PORTING.md │ │ ├── README.md │ │ ├── ci │ │ │ ├── ci-compile │ │ │ └── ci-flags.py │ │ ├── code_of_conduct.md │ │ ├── component.mk │ │ ├── docs │ │ │ ├── Doxyfile │ │ │ ├── DoxygenLayout.xml │ │ │ └── include │ │ │ │ ├── fastled-docs.css │ │ │ │ ├── fastled_logo.png │ │ │ │ ├── footer.html │ │ │ │ └── header.html │ │ ├── examples │ │ │ ├── AnalogOutput │ │ │ │ └── AnalogOutput.ino │ │ │ ├── Blink │ │ │ │ └── Blink.ino │ │ │ ├── ColorPalette │ │ │ │ └── ColorPalette.ino │ │ │ ├── ColorTemperature │ │ │ │ └── ColorTemperature.ino │ │ │ ├── Cylon │ │ │ │ └── Cylon.ino │ │ │ ├── DemoReel100 │ │ │ │ └── DemoReel100.ino │ │ │ ├── Fire2012 │ │ │ │ └── Fire2012.ino │ │ │ ├── Fire2012WithPalette │ │ │ │ └── Fire2012WithPalette.ino │ │ │ ├── FirstLight │ │ │ │ └── FirstLight.ino │ │ │ ├── Multiple │ │ │ │ ├── ArrayOfLedArrays │ │ │ │ │ └── ArrayOfLedArrays.ino │ │ │ │ ├── MirroringSample │ │ │ │ │ └── MirroringSample.ino │ │ │ │ ├── MultiArrays │ │ │ │ │ └── MultiArrays.ino │ │ │ │ ├── MultipleStripsInOneArray │ │ │ │ │ └── MultipleStripsInOneArray.ino │ │ │ │ ├── OctoWS2811Demo │ │ │ │ │ └── OctoWS2811Demo.ino │ │ │ │ └── ParallelOutputDemo │ │ │ │ │ └── ParallelOutputDemo.ino │ │ │ ├── Noise │ │ │ │ └── Noise.ino │ │ │ ├── NoisePlayground │ │ │ │ └── NoisePlayground.ino │ │ │ ├── NoisePlusPalette │ │ │ │ └── NoisePlusPalette.ino │ │ │ ├── Pacifica │ │ │ │ └── Pacifica.ino │ │ │ ├── Pintest │ │ │ │ └── Pintest.ino │ │ │ ├── Ports │ │ │ │ └── PJRCSpectrumAnalyzer │ │ │ │ │ └── PJRCSpectrumAnalyzer.ino │ │ │ ├── Pride2015 │ │ │ │ └── Pride2015.ino │ │ │ ├── RGBCalibrate │ │ │ │ └── RGBCalibrate.ino │ │ │ ├── RGBSetDemo │ │ │ │ └── RGBSetDemo.ino │ │ │ ├── SmartMatrix │ │ │ │ └── SmartMatrix.ino │ │ │ ├── TwinkleFox │ │ │ │ └── TwinkleFox.ino │ │ │ └── XYMatrix │ │ │ │ └── XYMatrix.ino │ │ ├── extras │ │ │ ├── AppleII.s65 │ │ │ ├── FastLED6502.s65 │ │ │ ├── RainbowDemo.bin.zip │ │ │ └── RainbowDemo.s65 │ │ ├── keywords.txt │ │ ├── library.json │ │ ├── release_notes.md │ │ ├── src │ │ │ ├── FastLED.cpp │ │ │ ├── FastLED.h │ │ │ ├── bitswap.cpp │ │ │ ├── bitswap.h │ │ │ ├── chipsets.h │ │ │ ├── color.h │ │ │ ├── colorpalettes.cpp │ │ │ ├── colorpalettes.h │ │ │ ├── colorutils.cpp │ │ │ ├── colorutils.h │ │ │ ├── controller.h │ │ │ ├── cpp_compat.h │ │ │ ├── dmx.h │ │ │ ├── fastled_config.h │ │ │ ├── fastled_delay.h │ │ │ ├── fastled_progmem.h │ │ │ ├── fastpin.h │ │ │ ├── fastspi.h │ │ │ ├── fastspi_bitbang.h │ │ │ ├── fastspi_dma.h │ │ │ ├── fastspi_nop.h │ │ │ ├── fastspi_ref.h │ │ │ ├── fastspi_types.h │ │ │ ├── hsv2rgb.cpp │ │ │ ├── hsv2rgb.h │ │ │ ├── led_sysdefs.h │ │ │ ├── lib8tion.cpp │ │ │ ├── lib8tion.h │ │ │ ├── lib8tion │ │ │ │ ├── math8.h │ │ │ │ ├── random8.h │ │ │ │ ├── scale8.h │ │ │ │ └── trig8.h │ │ │ ├── noise.cpp │ │ │ ├── noise.h │ │ │ ├── pixelset.h │ │ │ ├── pixeltypes.h │ │ │ ├── platforms.cpp │ │ │ ├── platforms.h │ │ │ ├── platforms │ │ │ │ ├── apollo3 │ │ │ │ │ ├── clockless_apollo3.h │ │ │ │ │ ├── fastled_apollo3.h │ │ │ │ │ ├── fastpin_apollo3.h │ │ │ │ │ ├── fastspi_apollo3.h │ │ │ │ │ └── led_sysdefs_apollo3.h │ │ │ │ ├── arm │ │ │ │ │ ├── common │ │ │ │ │ │ └── m0clockless.h │ │ │ │ │ ├── d21 │ │ │ │ │ │ ├── clockless_arm_d21.h │ │ │ │ │ │ ├── fastled_arm_d21.h │ │ │ │ │ │ ├── fastpin_arm_d21.h │ │ │ │ │ │ └── led_sysdefs_arm_d21.h │ │ │ │ │ ├── d51 │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ ├── clockless_arm_d51.h │ │ │ │ │ │ ├── fastled_arm_d51.h │ │ │ │ │ │ ├── fastpin_arm_d51.h │ │ │ │ │ │ └── led_sysdefs_arm_d51.h │ │ │ │ │ ├── k20 │ │ │ │ │ │ ├── clockless_arm_k20.h │ │ │ │ │ │ ├── clockless_block_arm_k20.h │ │ │ │ │ │ ├── fastled_arm_k20.h │ │ │ │ │ │ ├── fastpin_arm_k20.h │ │ │ │ │ │ ├── fastspi_arm_k20.h │ │ │ │ │ │ ├── led_sysdefs_arm_k20.h │ │ │ │ │ │ ├── octows2811_controller.h │ │ │ │ │ │ ├── smartmatrix_t3.h │ │ │ │ │ │ └── ws2812serial_controller.h │ │ │ │ │ ├── k66 │ │ │ │ │ │ ├── clockless_arm_k66.h │ │ │ │ │ │ ├── clockless_block_arm_k66.h │ │ │ │ │ │ ├── fastled_arm_k66.h │ │ │ │ │ │ ├── fastpin_arm_k66.h │ │ │ │ │ │ ├── fastspi_arm_k66.h │ │ │ │ │ │ └── led_sysdefs_arm_k66.h │ │ │ │ │ ├── kl26 │ │ │ │ │ │ ├── clockless_arm_kl26.h │ │ │ │ │ │ ├── fastled_arm_kl26.h │ │ │ │ │ │ ├── fastpin_arm_kl26.h │ │ │ │ │ │ ├── fastspi_arm_kl26.h │ │ │ │ │ │ └── led_sysdefs_arm_kl26.h │ │ │ │ │ ├── mxrt1062 │ │ │ │ │ │ ├── block_clockless_arm_mxrt1062.h │ │ │ │ │ │ ├── clockless_arm_mxrt1062.h │ │ │ │ │ │ ├── fastled_arm_mxrt1062.h │ │ │ │ │ │ ├── fastpin_arm_mxrt1062.h │ │ │ │ │ │ ├── fastspi_arm_mxrt1062.h │ │ │ │ │ │ ├── led_sysdefs_arm_mxrt1062.h │ │ │ │ │ │ └── octows2811_controller.h │ │ │ │ │ ├── nrf51 │ │ │ │ │ │ ├── clockless_arm_nrf51.h │ │ │ │ │ │ ├── fastled_arm_nrf51.h │ │ │ │ │ │ ├── fastpin_arm_nrf51.h │ │ │ │ │ │ ├── fastspi_arm_nrf51.h │ │ │ │ │ │ └── led_sysdefs_arm_nrf51.h │ │ │ │ │ ├── nrf52 │ │ │ │ │ │ ├── arbiter_nrf52.h │ │ │ │ │ │ ├── clockless_arm_nrf52.h │ │ │ │ │ │ ├── fastled_arm_nrf52.h │ │ │ │ │ │ ├── fastpin_arm_nrf52.h │ │ │ │ │ │ ├── fastpin_arm_nrf52_variants.h │ │ │ │ │ │ ├── fastspi_arm_nrf52.h │ │ │ │ │ │ └── led_sysdefs_arm_nrf52.h │ │ │ │ │ ├── rp2040 │ │ │ │ │ │ ├── clockless_arm_rp2040.h │ │ │ │ │ │ ├── fastled_arm_rp2040.h │ │ │ │ │ │ ├── fastpin_arm_rp2040.h │ │ │ │ │ │ ├── led_sysdefs_arm_rp2040.h │ │ │ │ │ │ ├── pio_asm.h │ │ │ │ │ │ └── pio_gen.h │ │ │ │ │ ├── sam │ │ │ │ │ │ ├── clockless_arm_sam.h │ │ │ │ │ │ ├── clockless_block_arm_sam.h │ │ │ │ │ │ ├── fastled_arm_sam.h │ │ │ │ │ │ ├── fastpin_arm_sam.h │ │ │ │ │ │ ├── fastspi_arm_sam.h │ │ │ │ │ │ └── led_sysdefs_arm_sam.h │ │ │ │ │ └── stm32 │ │ │ │ │ │ ├── clockless_arm_stm32.h │ │ │ │ │ │ ├── cm3_regs.h │ │ │ │ │ │ ├── fastled_arm_stm32.h │ │ │ │ │ │ ├── fastpin_arm_stm32.h │ │ │ │ │ │ └── led_sysdefs_arm_stm32.h │ │ │ │ ├── avr │ │ │ │ │ ├── clockless_trinket.h │ │ │ │ │ ├── fastled_avr.h │ │ │ │ │ ├── fastpin_avr.h │ │ │ │ │ ├── fastspi_avr.h │ │ │ │ │ └── led_sysdefs_avr.h │ │ │ │ ├── esp │ │ │ │ │ ├── 32 │ │ │ │ │ │ ├── clockless_block_esp32.h │ │ │ │ │ │ ├── clockless_i2s_esp32.h │ │ │ │ │ │ ├── clockless_rmt_esp32.cpp │ │ │ │ │ │ ├── clockless_rmt_esp32.h │ │ │ │ │ │ ├── fastled_esp32.h │ │ │ │ │ │ ├── fastpin_esp32.h │ │ │ │ │ │ ├── fastspi_esp32.h │ │ │ │ │ │ └── led_sysdefs_esp32.h │ │ │ │ │ └── 8266 │ │ │ │ │ │ ├── clockless_block_esp8266.h │ │ │ │ │ │ ├── clockless_esp8266.h │ │ │ │ │ │ ├── fastled_esp8266.h │ │ │ │ │ │ ├── fastpin_esp8266.h │ │ │ │ │ │ ├── fastspi_esp8266.h │ │ │ │ │ │ └── led_sysdefs_esp8266.h │ │ │ │ └── fastspi_ardunio_core.h │ │ │ ├── power_mgt.cpp │ │ │ ├── power_mgt.h │ │ │ └── wiring.cpp │ │ └── workspace.code-workspace │ ├── NimBLE-Arduino │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── docs │ │ │ ├── Bluetooth 5 features.md │ │ │ ├── Command_line_config.md │ │ │ ├── Doxyfile │ │ │ ├── Improvements_and_updates.md │ │ │ ├── Migration_guide.md │ │ │ ├── New_user_guide.md │ │ │ ├── Usage_tips.md │ │ │ └── index.md │ │ ├── examples │ │ │ ├── BLE_Beacon_Scanner │ │ │ │ ├── BLE_Beacon_Scanner.ino │ │ │ │ └── BLE_Beacon_Scanner.md │ │ │ ├── BLE_EddystoneTLM_Beacon │ │ │ │ ├── BLE_EddystoneTLM_Beacon.ino │ │ │ │ └── BLE_EddystoneTLM_Beacon.md │ │ │ ├── BLE_EddystoneURL_Beacon │ │ │ │ ├── BLE_EddystoneURL_Beacon.ino │ │ │ │ └── BLE_EddystoneURL_Beacon.md │ │ │ ├── Bluetooth_5 │ │ │ │ ├── NimBLE_extended_client │ │ │ │ │ └── NimBLE_extended_client.ino │ │ │ │ ├── NimBLE_extended_server │ │ │ │ │ └── NimBLE_extended_server.ino │ │ │ │ └── NimBLE_multi_advertiser │ │ │ │ │ └── NimBLE_multi_advertiser.ino │ │ │ ├── NimBLE_Client │ │ │ │ └── NimBLE_Client.ino │ │ │ ├── NimBLE_Scan_Continuous │ │ │ │ └── NimBLE_Scan_Continuous.ino │ │ │ ├── NimBLE_Scan_Whitelist │ │ │ │ └── NimBLE_Scan_whitelist.ino │ │ │ ├── NimBLE_Secure_Client │ │ │ │ └── NimBLE_Secure_Client.ino │ │ │ ├── NimBLE_Secure_Server │ │ │ │ └── NimBLE_Secure_Server.ino │ │ │ ├── NimBLE_Server │ │ │ │ └── NimBLE_Server.ino │ │ │ ├── NimBLE_Server_Whitelist │ │ │ │ └── NimBLE_Server_Whitelist.ino │ │ │ ├── NimBLE_Service_Data_Advertiser │ │ │ │ └── NimBLE_Service_Data_Advertiser.ino │ │ │ └── Refactored_original_examples │ │ │ │ ├── BLE_client │ │ │ │ └── BLE_client.ino │ │ │ │ ├── BLE_iBeacon │ │ │ │ └── BLE_iBeacon.ino │ │ │ │ ├── BLE_notify │ │ │ │ └── BLE_notify.ino │ │ │ │ ├── BLE_scan │ │ │ │ └── BLE_scan.ino │ │ │ │ ├── BLE_server │ │ │ │ └── BLE_server.ino │ │ │ │ ├── BLE_server_multiconnect │ │ │ │ └── BLE_server_multiconnect.ino │ │ │ │ ├── BLE_uart │ │ │ │ └── BLE_uart.ino │ │ │ │ └── BLE_write │ │ │ │ └── BLE_write.ino │ │ ├── library.properties │ │ └── src │ │ │ ├── HIDKeyboardTypes.h │ │ │ ├── HIDTypes.h │ │ │ ├── NimBLE2904.cpp │ │ │ ├── NimBLE2904.h │ │ │ ├── NimBLEAddress.cpp │ │ │ ├── NimBLEAddress.h │ │ │ ├── NimBLEAdvertisedDevice.cpp │ │ │ ├── NimBLEAdvertisedDevice.h │ │ │ ├── NimBLEAdvertising.cpp │ │ │ ├── NimBLEAdvertising.h │ │ │ ├── NimBLEAttValue.h │ │ │ ├── NimBLEBeacon.cpp │ │ │ ├── NimBLEBeacon.h │ │ │ ├── NimBLECharacteristic.cpp │ │ │ ├── NimBLECharacteristic.h │ │ │ ├── NimBLEClient.cpp │ │ │ ├── NimBLEClient.h │ │ │ ├── NimBLEConnInfo.h │ │ │ ├── NimBLEDescriptor.cpp │ │ │ ├── NimBLEDescriptor.h │ │ │ ├── NimBLEDevice.cpp │ │ │ ├── NimBLEDevice.h │ │ │ ├── NimBLEEddystoneTLM.cpp │ │ │ ├── NimBLEEddystoneTLM.h │ │ │ ├── NimBLEEddystoneURL.cpp │ │ │ ├── NimBLEEddystoneURL.h │ │ │ ├── NimBLEExtAdvertising.cpp │ │ │ ├── NimBLEExtAdvertising.h │ │ │ ├── NimBLEHIDDevice.cpp │ │ │ ├── NimBLEHIDDevice.h │ │ │ ├── NimBLELog.h │ │ │ ├── NimBLERemoteCharacteristic.cpp │ │ │ ├── NimBLERemoteCharacteristic.h │ │ │ ├── NimBLERemoteDescriptor.cpp │ │ │ ├── NimBLERemoteDescriptor.h │ │ │ ├── NimBLERemoteService.cpp │ │ │ ├── NimBLERemoteService.h │ │ │ ├── NimBLEScan.cpp │ │ │ ├── NimBLEScan.h │ │ │ ├── NimBLESecurity.cpp │ │ │ ├── NimBLESecurity.h │ │ │ ├── NimBLEServer.cpp │ │ │ ├── NimBLEServer.h │ │ │ ├── NimBLEService.cpp │ │ │ ├── NimBLEService.h │ │ │ ├── NimBLEUUID.cpp │ │ │ ├── NimBLEUUID.h │ │ │ ├── NimBLEUtils.cpp │ │ │ ├── NimBLEUtils.h │ │ │ ├── nimble │ │ │ ├── CODING_STANDARDS.md │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── RELEASE_NOTES.md │ │ │ ├── console │ │ │ │ └── console.h │ │ │ ├── esp_port │ │ │ │ ├── esp-hci │ │ │ │ │ ├── include │ │ │ │ │ │ ├── esp_compiler.h │ │ │ │ │ │ └── esp_nimble_hci.h │ │ │ │ │ └── src │ │ │ │ │ │ └── esp_nimble_hci.c │ │ │ │ └── port │ │ │ │ │ ├── include │ │ │ │ │ ├── esp_nimble_cfg.h │ │ │ │ │ └── esp_nimble_mem.h │ │ │ │ │ └── src │ │ │ │ │ └── esp_nimble_mem.c │ │ │ ├── ext │ │ │ │ └── tinycrypt │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README │ │ │ │ │ ├── VERSION │ │ │ │ │ ├── documentation │ │ │ │ │ └── tinycrypt.rst │ │ │ │ │ ├── include │ │ │ │ │ └── tinycrypt │ │ │ │ │ │ ├── aes.h │ │ │ │ │ │ ├── cbc_mode.h │ │ │ │ │ │ ├── ccm_mode.h │ │ │ │ │ │ ├── cmac_mode.h │ │ │ │ │ │ ├── constants.h │ │ │ │ │ │ ├── ctr_mode.h │ │ │ │ │ │ ├── ctr_prng.h │ │ │ │ │ │ ├── ecc.h │ │ │ │ │ │ ├── ecc_dh.h │ │ │ │ │ │ ├── ecc_dsa.h │ │ │ │ │ │ ├── ecc_platform_specific.h │ │ │ │ │ │ ├── hmac.h │ │ │ │ │ │ ├── hmac_prng.h │ │ │ │ │ │ ├── sha256.h │ │ │ │ │ │ └── utils.h │ │ │ │ │ └── src │ │ │ │ │ ├── aes_decrypt.c │ │ │ │ │ ├── aes_encrypt.c │ │ │ │ │ ├── cbc_mode.c │ │ │ │ │ ├── ccm_mode.c │ │ │ │ │ ├── cmac_mode.c │ │ │ │ │ ├── ctr_mode.c │ │ │ │ │ ├── ctr_prng.c │ │ │ │ │ ├── ecc.c │ │ │ │ │ ├── ecc_dh.c │ │ │ │ │ ├── ecc_dsa.c │ │ │ │ │ ├── ecc_platform_specific.c │ │ │ │ │ ├── hmac.c │ │ │ │ │ ├── hmac_prng.c │ │ │ │ │ ├── sha256.c │ │ │ │ │ └── utils.c │ │ │ ├── nimble │ │ │ │ ├── controller │ │ │ │ │ ├── include │ │ │ │ │ │ └── controller │ │ │ │ │ │ │ ├── ble_hw.h │ │ │ │ │ │ │ ├── ble_ll.h │ │ │ │ │ │ │ ├── ble_ll_adv.h │ │ │ │ │ │ │ ├── ble_ll_conn.h │ │ │ │ │ │ │ ├── ble_ll_ctrl.h │ │ │ │ │ │ │ ├── ble_ll_hci.h │ │ │ │ │ │ │ ├── ble_ll_iso.h │ │ │ │ │ │ │ ├── ble_ll_resolv.h │ │ │ │ │ │ │ ├── ble_ll_rfmgmt.h │ │ │ │ │ │ │ ├── ble_ll_scan.h │ │ │ │ │ │ │ ├── ble_ll_sched.h │ │ │ │ │ │ │ ├── ble_ll_sync.h │ │ │ │ │ │ │ ├── ble_ll_test.h │ │ │ │ │ │ │ ├── ble_ll_trace.h │ │ │ │ │ │ │ ├── ble_ll_utils.h │ │ │ │ │ │ │ ├── ble_ll_whitelist.h │ │ │ │ │ │ │ ├── ble_phy.h │ │ │ │ │ │ │ └── ble_phy_trace.h │ │ │ │ │ └── src │ │ │ │ │ │ ├── ble_ll.c │ │ │ │ │ │ ├── ble_ll_adv.c │ │ │ │ │ │ ├── ble_ll_conn.c │ │ │ │ │ │ ├── ble_ll_conn_hci.c │ │ │ │ │ │ ├── ble_ll_conn_priv.h │ │ │ │ │ │ ├── ble_ll_ctrl.c │ │ │ │ │ │ ├── ble_ll_dtm.c │ │ │ │ │ │ ├── ble_ll_dtm_priv.h │ │ │ │ │ │ ├── ble_ll_hci.c │ │ │ │ │ │ ├── ble_ll_hci_ev.c │ │ │ │ │ │ ├── ble_ll_iso.c │ │ │ │ │ │ ├── ble_ll_priv.h │ │ │ │ │ │ ├── ble_ll_rand.c │ │ │ │ │ │ ├── ble_ll_resolv.c │ │ │ │ │ │ ├── ble_ll_rfmgmt.c │ │ │ │ │ │ ├── ble_ll_scan.c │ │ │ │ │ │ ├── ble_ll_sched.c │ │ │ │ │ │ ├── ble_ll_supp_cmd.c │ │ │ │ │ │ ├── ble_ll_sync.c │ │ │ │ │ │ ├── ble_ll_trace.c │ │ │ │ │ │ ├── ble_ll_utils.c │ │ │ │ │ │ └── ble_ll_whitelist.c │ │ │ │ ├── drivers │ │ │ │ │ ├── nrf51 │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ └── ble │ │ │ │ │ │ │ │ └── xcvr.h │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── ble_hw.c │ │ │ │ │ │ │ └── ble_phy.c │ │ │ │ │ └── nrf52 │ │ │ │ │ │ ├── include │ │ │ │ │ │ └── ble │ │ │ │ │ │ │ └── xcvr.h │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── ble_hw.c │ │ │ │ │ │ ├── ble_phy.c │ │ │ │ │ │ └── ble_phy_trace.c │ │ │ │ ├── host │ │ │ │ │ ├── include │ │ │ │ │ │ └── host │ │ │ │ │ │ │ ├── ble_att.h │ │ │ │ │ │ │ ├── ble_eddystone.h │ │ │ │ │ │ │ ├── ble_gap.h │ │ │ │ │ │ │ ├── ble_gatt.h │ │ │ │ │ │ │ ├── ble_hs.h │ │ │ │ │ │ │ ├── ble_hs_adv.h │ │ │ │ │ │ │ ├── ble_hs_hci.h │ │ │ │ │ │ │ ├── ble_hs_id.h │ │ │ │ │ │ │ ├── ble_hs_log.h │ │ │ │ │ │ │ ├── ble_hs_mbuf.h │ │ │ │ │ │ │ ├── ble_hs_pvcy.h │ │ │ │ │ │ │ ├── ble_hs_stop.h │ │ │ │ │ │ │ ├── ble_ibeacon.h │ │ │ │ │ │ │ ├── ble_l2cap.h │ │ │ │ │ │ │ ├── ble_monitor.h │ │ │ │ │ │ │ ├── ble_sm.h │ │ │ │ │ │ │ ├── ble_store.h │ │ │ │ │ │ │ └── ble_uuid.h │ │ │ │ │ ├── mesh │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ └── mesh │ │ │ │ │ │ │ │ ├── access.h │ │ │ │ │ │ │ │ ├── atomic.h │ │ │ │ │ │ │ │ ├── cdb.h │ │ │ │ │ │ │ │ ├── cfg.h │ │ │ │ │ │ │ │ ├── cfg_cli.h │ │ │ │ │ │ │ │ ├── cfg_srv.h │ │ │ │ │ │ │ │ ├── glue.h │ │ │ │ │ │ │ │ ├── health_cli.h │ │ │ │ │ │ │ │ ├── health_srv.h │ │ │ │ │ │ │ │ ├── heartbeat.h │ │ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ │ │ ├── mesh.h │ │ │ │ │ │ │ │ ├── model_cli.h │ │ │ │ │ │ │ │ ├── model_srv.h │ │ │ │ │ │ │ │ ├── porting.h │ │ │ │ │ │ │ │ ├── proxy.h │ │ │ │ │ │ │ │ ├── slist.h │ │ │ │ │ │ │ │ └── testing.h │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── access.c │ │ │ │ │ │ │ ├── access.h │ │ │ │ │ │ │ ├── adv.c │ │ │ │ │ │ │ ├── adv.h │ │ │ │ │ │ │ ├── aes-ccm.c │ │ │ │ │ │ │ ├── app_keys.c │ │ │ │ │ │ │ ├── app_keys.h │ │ │ │ │ │ │ ├── atomic.h │ │ │ │ │ │ │ ├── beacon.c │ │ │ │ │ │ │ ├── beacon.h │ │ │ │ │ │ │ ├── cdb.c │ │ │ │ │ │ │ ├── cfg.c │ │ │ │ │ │ │ ├── cfg.h │ │ │ │ │ │ │ ├── cfg_cli.c │ │ │ │ │ │ │ ├── cfg_srv.c │ │ │ │ │ │ │ ├── crypto.c │ │ │ │ │ │ │ ├── crypto.h │ │ │ │ │ │ │ ├── foundation.h │ │ │ │ │ │ │ ├── friend.c │ │ │ │ │ │ │ ├── friend.h │ │ │ │ │ │ │ ├── glue.c │ │ │ │ │ │ │ ├── health_cli.c │ │ │ │ │ │ │ ├── health_srv.c │ │ │ │ │ │ │ ├── heartbeat.c │ │ │ │ │ │ │ ├── heartbeat.h │ │ │ │ │ │ │ ├── light_model.c │ │ │ │ │ │ │ ├── light_model.h │ │ │ │ │ │ │ ├── lpn.c │ │ │ │ │ │ │ ├── lpn.h │ │ │ │ │ │ │ ├── mesh.c │ │ │ │ │ │ │ ├── mesh_priv.h │ │ │ │ │ │ │ ├── model_cli.c │ │ │ │ │ │ │ ├── model_srv.c │ │ │ │ │ │ │ ├── net.c │ │ │ │ │ │ │ ├── net.h │ │ │ │ │ │ │ ├── nodes.c │ │ │ │ │ │ │ ├── nodes.h │ │ │ │ │ │ │ ├── pb_adv.c │ │ │ │ │ │ │ ├── pb_gatt.c │ │ │ │ │ │ │ ├── prov.c │ │ │ │ │ │ │ ├── prov.h │ │ │ │ │ │ │ ├── prov_bearer.h │ │ │ │ │ │ │ ├── prov_device.c │ │ │ │ │ │ │ ├── provisioner.c │ │ │ │ │ │ │ ├── provisioner.h │ │ │ │ │ │ │ ├── proxy.c │ │ │ │ │ │ │ ├── proxy.h │ │ │ │ │ │ │ ├── rpl.c │ │ │ │ │ │ │ ├── rpl.h │ │ │ │ │ │ │ ├── settings.c │ │ │ │ │ │ │ ├── settings.h │ │ │ │ │ │ │ ├── shell.c │ │ │ │ │ │ │ ├── shell.h │ │ │ │ │ │ │ ├── subnet.c │ │ │ │ │ │ │ ├── subnet.h │ │ │ │ │ │ │ ├── transport.c │ │ │ │ │ │ │ └── transport.h │ │ │ │ │ ├── services │ │ │ │ │ │ ├── ans │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ │ └── services │ │ │ │ │ │ │ │ │ └── ans │ │ │ │ │ │ │ │ │ └── ble_svc_ans.h │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ └── ble_svc_ans.c │ │ │ │ │ │ ├── bas │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ │ └── services │ │ │ │ │ │ │ │ │ └── bas │ │ │ │ │ │ │ │ │ └── ble_svc_bas.h │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ └── ble_svc_bas.c │ │ │ │ │ │ ├── dis │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ │ └── services │ │ │ │ │ │ │ │ │ └── dis │ │ │ │ │ │ │ │ │ └── ble_svc_dis.h │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ └── ble_svc_dis.c │ │ │ │ │ │ ├── gap │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ │ └── services │ │ │ │ │ │ │ │ │ └── gap │ │ │ │ │ │ │ │ │ └── ble_svc_gap.h │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ └── ble_svc_gap.c │ │ │ │ │ │ ├── gatt │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ │ └── services │ │ │ │ │ │ │ │ │ └── gatt │ │ │ │ │ │ │ │ │ └── ble_svc_gatt.h │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ └── ble_svc_gatt.c │ │ │ │ │ │ ├── ias │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ │ └── services │ │ │ │ │ │ │ │ │ └── ias │ │ │ │ │ │ │ │ │ └── ble_svc_ias.h │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ └── ble_svc_ias.c │ │ │ │ │ │ ├── ipss │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ │ └── services │ │ │ │ │ │ │ │ │ └── ipss │ │ │ │ │ │ │ │ │ └── ble_svc_ipss.h │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ └── ble_svc_ipss.c │ │ │ │ │ │ └── lls │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ └── services │ │ │ │ │ │ │ │ └── lls │ │ │ │ │ │ │ │ └── ble_svc_lls.h │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── ble_svc_lls.c │ │ │ │ │ ├── src │ │ │ │ │ │ ├── ble_att.c │ │ │ │ │ │ ├── ble_att_clt.c │ │ │ │ │ │ ├── ble_att_cmd.c │ │ │ │ │ │ ├── ble_att_cmd_priv.h │ │ │ │ │ │ ├── ble_att_priv.h │ │ │ │ │ │ ├── ble_att_svr.c │ │ │ │ │ │ ├── ble_eddystone.c │ │ │ │ │ │ ├── ble_gap.c │ │ │ │ │ │ ├── ble_gap_priv.h │ │ │ │ │ │ ├── ble_gatt_priv.h │ │ │ │ │ │ ├── ble_gattc.c │ │ │ │ │ │ ├── ble_gatts.c │ │ │ │ │ │ ├── ble_gatts_lcl.c │ │ │ │ │ │ ├── ble_hs.c │ │ │ │ │ │ ├── ble_hs_adv.c │ │ │ │ │ │ ├── ble_hs_adv_priv.h │ │ │ │ │ │ ├── ble_hs_atomic.c │ │ │ │ │ │ ├── ble_hs_atomic_priv.h │ │ │ │ │ │ ├── ble_hs_cfg.c │ │ │ │ │ │ ├── ble_hs_conn.c │ │ │ │ │ │ ├── ble_hs_conn_priv.h │ │ │ │ │ │ ├── ble_hs_flow.c │ │ │ │ │ │ ├── ble_hs_flow_priv.h │ │ │ │ │ │ ├── ble_hs_hci.c │ │ │ │ │ │ ├── ble_hs_hci_cmd.c │ │ │ │ │ │ ├── ble_hs_hci_evt.c │ │ │ │ │ │ ├── ble_hs_hci_priv.h │ │ │ │ │ │ ├── ble_hs_hci_util.c │ │ │ │ │ │ ├── ble_hs_id.c │ │ │ │ │ │ ├── ble_hs_id_priv.h │ │ │ │ │ │ ├── ble_hs_log.c │ │ │ │ │ │ ├── ble_hs_mbuf.c │ │ │ │ │ │ ├── ble_hs_mbuf_priv.h │ │ │ │ │ │ ├── ble_hs_misc.c │ │ │ │ │ │ ├── ble_hs_mqueue.c │ │ │ │ │ │ ├── ble_hs_periodic_sync.c │ │ │ │ │ │ ├── ble_hs_periodic_sync_priv.h │ │ │ │ │ │ ├── ble_hs_priv.h │ │ │ │ │ │ ├── ble_hs_pvcy.c │ │ │ │ │ │ ├── ble_hs_pvcy_priv.h │ │ │ │ │ │ ├── ble_hs_resolv.c │ │ │ │ │ │ ├── ble_hs_resolv_priv.h │ │ │ │ │ │ ├── ble_hs_shutdown.c │ │ │ │ │ │ ├── ble_hs_startup.c │ │ │ │ │ │ ├── ble_hs_startup_priv.h │ │ │ │ │ │ ├── ble_hs_stop.c │ │ │ │ │ │ ├── ble_ibeacon.c │ │ │ │ │ │ ├── ble_l2cap.c │ │ │ │ │ │ ├── ble_l2cap_coc.c │ │ │ │ │ │ ├── ble_l2cap_coc_priv.h │ │ │ │ │ │ ├── ble_l2cap_priv.h │ │ │ │ │ │ ├── ble_l2cap_sig.c │ │ │ │ │ │ ├── ble_l2cap_sig_cmd.c │ │ │ │ │ │ ├── ble_l2cap_sig_priv.h │ │ │ │ │ │ ├── ble_monitor.c │ │ │ │ │ │ ├── ble_monitor_priv.h │ │ │ │ │ │ ├── ble_sm.c │ │ │ │ │ │ ├── ble_sm_alg.c │ │ │ │ │ │ ├── ble_sm_cmd.c │ │ │ │ │ │ ├── ble_sm_lgcy.c │ │ │ │ │ │ ├── ble_sm_priv.h │ │ │ │ │ │ ├── ble_sm_sc.c │ │ │ │ │ │ ├── ble_store.c │ │ │ │ │ │ ├── ble_store_util.c │ │ │ │ │ │ ├── ble_uuid.c │ │ │ │ │ │ └── ble_uuid_priv.h │ │ │ │ │ ├── store │ │ │ │ │ │ └── config │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ └── store │ │ │ │ │ │ │ │ └── config │ │ │ │ │ │ │ │ └── ble_store_config.h │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── ble_store_config.c │ │ │ │ │ │ │ ├── ble_store_config_conf.c │ │ │ │ │ │ │ ├── ble_store_config_priv.h │ │ │ │ │ │ │ └── ble_store_nvs.c │ │ │ │ │ └── util │ │ │ │ │ │ ├── include │ │ │ │ │ │ └── host │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── util.h │ │ │ │ │ │ └── src │ │ │ │ │ │ └── addr.c │ │ │ │ ├── include │ │ │ │ │ └── nimble │ │ │ │ │ │ ├── ble.h │ │ │ │ │ │ ├── ble_hci_trans.h │ │ │ │ │ │ ├── hci_common.h │ │ │ │ │ │ ├── nimble_npl.h │ │ │ │ │ │ ├── nimble_opt.h │ │ │ │ │ │ └── nimble_opt_auto.h │ │ │ │ └── transport │ │ │ │ │ └── ram │ │ │ │ │ ├── include │ │ │ │ │ └── transport │ │ │ │ │ │ └── ram │ │ │ │ │ │ └── ble_hci_ram.h │ │ │ │ │ └── src │ │ │ │ │ └── ble_hci_ram.c │ │ │ └── porting │ │ │ │ ├── nimble │ │ │ │ ├── include │ │ │ │ │ ├── hal │ │ │ │ │ │ └── hal_timer.h │ │ │ │ │ ├── log │ │ │ │ │ │ └── log.h │ │ │ │ │ ├── log_common │ │ │ │ │ │ ├── ignore.h │ │ │ │ │ │ └── log_common.h │ │ │ │ │ ├── logcfg │ │ │ │ │ │ └── logcfg.h │ │ │ │ │ ├── mem │ │ │ │ │ │ └── mem.h │ │ │ │ │ ├── modlog │ │ │ │ │ │ └── modlog.h │ │ │ │ │ ├── nimble │ │ │ │ │ │ └── nimble_port.h │ │ │ │ │ ├── os │ │ │ │ │ │ ├── endian.h │ │ │ │ │ │ ├── os.h │ │ │ │ │ │ ├── os_cputime.h │ │ │ │ │ │ ├── os_error.h │ │ │ │ │ │ ├── os_mbuf.h │ │ │ │ │ │ ├── os_mempool.h │ │ │ │ │ │ ├── os_trace_api.h │ │ │ │ │ │ ├── queue.h │ │ │ │ │ │ └── util.h │ │ │ │ │ ├── stats │ │ │ │ │ │ └── stats.h │ │ │ │ │ ├── syscfg │ │ │ │ │ │ └── syscfg.h │ │ │ │ │ ├── sysflash │ │ │ │ │ │ └── sysflash.h │ │ │ │ │ └── sysinit │ │ │ │ │ │ └── sysinit.h │ │ │ │ └── src │ │ │ │ │ ├── endian.c │ │ │ │ │ ├── hal_timer.c │ │ │ │ │ ├── hal_uart.c │ │ │ │ │ ├── mem.c │ │ │ │ │ ├── nimble_port.c │ │ │ │ │ ├── os_cputime.c │ │ │ │ │ ├── os_cputime_pwr2.c │ │ │ │ │ ├── os_mbuf.c │ │ │ │ │ ├── os_mempool.c │ │ │ │ │ └── os_msys_init.c │ │ │ │ └── npl │ │ │ │ └── freertos │ │ │ │ ├── include │ │ │ │ └── nimble │ │ │ │ │ ├── nimble_npl_os.h │ │ │ │ │ ├── nimble_port_freertos.h │ │ │ │ │ └── npl_freertos.h │ │ │ │ └── src │ │ │ │ ├── nimble_port_freertos.c │ │ │ │ └── npl_os_freertos.c │ │ │ ├── nimconfig.h │ │ │ └── nimconfig_rename.h │ ├── QMC5883LCompass │ │ ├── LICENSE │ │ ├── changelog.md │ │ ├── examples │ │ │ ├── azimuth │ │ │ │ └── azimuth.ino │ │ │ ├── bearing │ │ │ │ └── bearing.ino │ │ │ ├── calibration │ │ │ │ └── calibration.ino │ │ │ ├── direction │ │ │ │ └── direction.ino │ │ │ ├── smoothing │ │ │ │ └── smoothing.ino │ │ │ └── xyz │ │ │ │ └── xyz.ino │ │ ├── keywords.txt │ │ ├── library.properties │ │ ├── readme.md │ │ └── src │ │ │ ├── QMC5883LCompass.cpp │ │ │ └── QMC5883LCompass.h │ ├── README │ ├── TinyGPSPlus │ │ ├── README.md │ │ ├── examples │ │ │ ├── BasicExample │ │ │ │ └── BasicExample.ino │ │ │ ├── DeviceExample │ │ │ │ └── DeviceExample.ino │ │ │ ├── FullExample │ │ │ │ └── FullExample.ino │ │ │ ├── KitchenSink │ │ │ │ └── KitchenSink.ino │ │ │ ├── SatElevTracker │ │ │ │ ├── SatElevTracker.ino │ │ │ │ └── sample_satellite_elevation_log.txt │ │ │ ├── SatelliteTracker │ │ │ │ └── SatelliteTracker.ino │ │ │ └── UsingCustomFields │ │ │ │ └── UsingCustomFields.ino │ │ ├── keywords.txt │ │ ├── library.json │ │ ├── library.properties │ │ └── src │ │ │ ├── TinyGPS++.cpp │ │ │ ├── TinyGPS++.h │ │ │ └── TinyGPSPlus.h │ └── lv_conf.h ├── platformio.ini ├── src │ ├── App │ │ ├── App.cpp │ │ ├── App.h │ │ ├── Common │ │ │ ├── DataProc │ │ │ │ ├── DP_BLE.cpp │ │ │ │ ├── DP_Backlight.cpp │ │ │ │ ├── DP_Clock.cpp │ │ │ │ ├── DP_GPS.cpp │ │ │ │ ├── DP_IMU.cpp │ │ │ │ ├── DP_LIST.inc │ │ │ │ ├── DP_MAG.cpp │ │ │ │ ├── DP_MusicPlayer.cpp │ │ │ │ ├── DP_Power.cpp │ │ │ │ ├── DP_Recorder.cpp │ │ │ │ ├── DP_SmartAssistant.cpp │ │ │ │ ├── DP_SportStatus.cpp │ │ │ │ ├── DP_Storage.cpp │ │ │ │ ├── DP_SysConfig.cpp │ │ │ │ ├── DP_TrackFilter.cpp │ │ │ │ ├── DP_TzConv.cpp │ │ │ │ ├── DP_WiFi.cpp │ │ │ │ ├── DataProc.cpp │ │ │ │ ├── DataProc.h │ │ │ │ └── DataProc_Def.h │ │ │ ├── HAL │ │ │ │ ├── CommonMacro.h │ │ │ │ ├── HAL.cpp │ │ │ │ ├── HAL.h │ │ │ │ ├── HAL_Audio.cpp │ │ │ │ ├── HAL_BLE.cpp │ │ │ │ ├── HAL_Backlight.cpp │ │ │ │ ├── HAL_Buzz.cpp │ │ │ │ ├── HAL_Clock.cpp │ │ │ │ ├── HAL_Def.h │ │ │ │ ├── HAL_ENV.cpp │ │ │ │ ├── HAL_GPS.cpp │ │ │ │ ├── HAL_IMU.cpp │ │ │ │ ├── HAL_MAG.cpp │ │ │ │ ├── HAL_Power.cpp │ │ │ │ ├── HAL_SD.cpp │ │ │ │ ├── HAL_SmartAssistant.cpp │ │ │ │ └── HAL_WiFi.cpp │ │ │ └── Music │ │ │ │ ├── MusicCode.h │ │ │ │ └── ToneMap.h │ │ ├── Config │ │ │ └── Config.h │ │ ├── Pages │ │ │ ├── AppFactory.cpp │ │ │ ├── AppFactory.h │ │ │ ├── BLEKeyboard │ │ │ │ ├── BLEKeyboard.cpp │ │ │ │ ├── BLEKeyboard.h │ │ │ │ ├── BLEKeyboardModel.cpp │ │ │ │ ├── BLEKeyboardModel.h │ │ │ │ ├── BLEKeyboardView.cpp │ │ │ │ └── BLEKeyboardView.h │ │ │ ├── Compass │ │ │ │ ├── Compass.cpp │ │ │ │ ├── Compass.h │ │ │ │ ├── CompassModel.cpp │ │ │ │ ├── CompassModel.h │ │ │ │ ├── CompassView.cpp │ │ │ │ └── CompassView.h │ │ │ ├── Dialplate │ │ │ │ ├── Dialplate.cpp │ │ │ │ ├── Dialplate.h │ │ │ │ ├── DialplateModel.cpp │ │ │ │ ├── DialplateModel.h │ │ │ │ ├── DialplateView.cpp │ │ │ │ └── DialplateView.h │ │ │ ├── LaunchOut │ │ │ │ ├── LaunchOut.cpp │ │ │ │ ├── LaunchOut.h │ │ │ │ ├── LaunchOutModel.cpp │ │ │ │ ├── LaunchOutModel.h │ │ │ │ ├── LaunchOutView.cpp │ │ │ │ └── LaunchOutView.h │ │ │ ├── LiveMap │ │ │ │ ├── LiveMap.cpp │ │ │ │ ├── LiveMap.h │ │ │ │ ├── LiveMapModel.cpp │ │ │ │ ├── LiveMapModel.h │ │ │ │ ├── LiveMapView.cpp │ │ │ │ └── LiveMapView.h │ │ │ ├── Page.h │ │ │ ├── Popcat │ │ │ │ ├── Popcat.cpp │ │ │ │ ├── Popcat.h │ │ │ │ ├── PopcatModel.cpp │ │ │ │ ├── PopcatModel.h │ │ │ │ ├── PopcatView.cpp │ │ │ │ └── PopcatView.h │ │ │ ├── Settings │ │ │ │ ├── Settings.cpp │ │ │ │ ├── Settings.h │ │ │ │ ├── SettingsModel.cpp │ │ │ │ ├── SettingsModel.h │ │ │ │ ├── SettingsView.cpp │ │ │ │ └── SettingsView.h │ │ │ ├── SmartAssistant │ │ │ │ ├── SmartAssistant.cpp │ │ │ │ ├── SmartAssistant.h │ │ │ │ ├── SmartAssistantModel.cpp │ │ │ │ ├── SmartAssistantModel.h │ │ │ │ ├── SmartAssistantView.cpp │ │ │ │ └── SmartAssistantView.h │ │ │ ├── StartUp │ │ │ │ ├── StartUp.cpp │ │ │ │ ├── StartUp.h │ │ │ │ ├── StartUpModel.cpp │ │ │ │ ├── StartUpModel.h │ │ │ │ ├── StartUpView.cpp │ │ │ │ └── StartUpView.h │ │ │ ├── StatusBar │ │ │ │ ├── StatusBar.cpp │ │ │ │ └── StatusBar.h │ │ │ ├── SystemInfos │ │ │ │ ├── SystemInfos.cpp │ │ │ │ ├── SystemInfos.h │ │ │ │ ├── SystemInfosModel.cpp │ │ │ │ ├── SystemInfosModel.h │ │ │ │ ├── SystemInfosView.cpp │ │ │ │ └── SystemInfosView.h │ │ │ ├── WaveTable │ │ │ │ ├── WaveTable.cpp │ │ │ │ ├── WaveTable.h │ │ │ │ ├── WaveTableModel.cpp │ │ │ │ ├── WaveTableModel.h │ │ │ │ ├── WaveTableView.cpp │ │ │ │ └── WaveTableView.h │ │ │ └── _Template │ │ │ │ ├── Template.cpp │ │ │ │ ├── Template.h │ │ │ │ ├── TemplateModel.cpp │ │ │ │ ├── TemplateModel.h │ │ │ │ ├── TemplateView.cpp │ │ │ │ └── TemplateView.h │ │ ├── Resource │ │ │ ├── Font │ │ │ │ ├── font_agencyb_36.c │ │ │ │ ├── font_bahnschrift_13.c │ │ │ │ ├── font_bahnschrift_17.c │ │ │ │ ├── font_bahnschrift_32.c │ │ │ │ ├── font_bahnschrift_65.c │ │ │ │ ├── font_compass_24.c │ │ │ │ ├── font_smiley_36.c │ │ │ │ └── font_smileysd_16.c │ │ │ ├── Image │ │ │ │ ├── img_src_alarm.c │ │ │ │ ├── img_src_battery.c │ │ │ │ ├── img_src_battery_info.c │ │ │ │ ├── img_src_bicycle.c │ │ │ │ ├── img_src_compass.c │ │ │ │ ├── img_src_compass_bg.c │ │ │ │ ├── img_src_gps_arrow_dark.c │ │ │ │ ├── img_src_gps_arrow_default.c │ │ │ │ ├── img_src_gps_arrow_light.c │ │ │ │ ├── img_src_gps_pin.c │ │ │ │ ├── img_src_gyroscope.c │ │ │ │ ├── img_src_locate.c │ │ │ │ ├── img_src_map_location.c │ │ │ │ ├── img_src_menu.c │ │ │ │ ├── img_src_origin_point.c │ │ │ │ ├── img_src_pause.c │ │ │ │ ├── img_src_popcat_close.c │ │ │ │ ├── img_src_popcat_open.c │ │ │ │ ├── img_src_satellite.c │ │ │ │ ├── img_src_sd_card.c │ │ │ │ ├── img_src_start.c │ │ │ │ ├── img_src_stop.c │ │ │ │ ├── img_src_storage.c │ │ │ │ ├── img_src_system_info.c │ │ │ │ ├── img_src_time_info.c │ │ │ │ └── img_src_trip.c │ │ │ ├── ResourcePool.cpp │ │ │ └── ResourcePool.h │ │ ├── Utils │ │ │ ├── DataCenter │ │ │ │ ├── Account.cpp │ │ │ │ ├── Account.h │ │ │ │ ├── DataCenter.cpp │ │ │ │ ├── DataCenter.h │ │ │ │ ├── DataCenterLog.h │ │ │ │ └── PingPongBuffer │ │ │ │ │ ├── PingPongBuffer.c │ │ │ │ │ └── PingPongBuffer.h │ │ │ ├── Filters │ │ │ │ ├── FilterBase.h │ │ │ │ ├── Filters.h │ │ │ │ ├── HysteresisFilter.h │ │ │ │ ├── LowpassFilter.h │ │ │ │ ├── MedianFilter.h │ │ │ │ ├── MedianQueueFilter.h │ │ │ │ └── SlidingFilter.h │ │ │ ├── GPX │ │ │ │ ├── Examples │ │ │ │ │ └── Static_Track │ │ │ │ │ │ └── Static_Track.pde │ │ │ │ ├── GPX.cpp │ │ │ │ └── GPX.h │ │ │ ├── GPX_Parser │ │ │ │ ├── GPX_Parser.cpp │ │ │ │ └── GPX_Parser.h │ │ │ ├── MapConv │ │ │ │ ├── GPS_Transform │ │ │ │ │ ├── GPS_Transform.c │ │ │ │ │ └── GPS_Transform.h │ │ │ │ ├── MapConv.cpp │ │ │ │ ├── MapConv.h │ │ │ │ └── TileSystem │ │ │ │ │ ├── TileSystem.cpp │ │ │ │ │ └── TileSystem.h │ │ │ ├── PageManager │ │ │ │ ├── PM_Anim.cpp │ │ │ │ ├── PM_Base.cpp │ │ │ │ ├── PM_Drag.cpp │ │ │ │ ├── PM_Log.h │ │ │ │ ├── PM_Router.cpp │ │ │ │ ├── PM_State.cpp │ │ │ │ ├── PageBase.cpp │ │ │ │ ├── PageBase.h │ │ │ │ ├── PageFactory.h │ │ │ │ └── PageManager.h │ │ │ ├── PointContainer │ │ │ │ ├── PointContainer.cpp │ │ │ │ └── PointContainer.h │ │ │ ├── ResourceManager │ │ │ │ ├── ResourceManager.cpp │ │ │ │ └── ResourceManager.h │ │ │ ├── StorageService │ │ │ │ ├── StorageService.cpp │ │ │ │ └── StorageService.h │ │ │ ├── TileConv │ │ │ │ ├── TileConv.cpp │ │ │ │ └── TileConv.h │ │ │ ├── Time │ │ │ │ ├── DateStrings.cpp │ │ │ │ ├── Readme.txt │ │ │ │ ├── Time.cpp │ │ │ │ ├── Time.h │ │ │ │ ├── TimeLib.h │ │ │ │ ├── examples │ │ │ │ │ ├── Processing │ │ │ │ │ │ └── SyncArduinoClock │ │ │ │ │ │ │ ├── SyncArduinoClock.pde │ │ │ │ │ │ │ └── readme.txt │ │ │ │ │ ├── TimeArduinoDue │ │ │ │ │ │ └── TimeArduinoDue.ino │ │ │ │ │ ├── TimeGPS │ │ │ │ │ │ └── TimeGPS.ino │ │ │ │ │ ├── TimeNTP │ │ │ │ │ │ └── TimeNTP.ino │ │ │ │ │ ├── TimeNTP_ESP8266WiFi │ │ │ │ │ │ └── TimeNTP_ESP8266WiFi.ino │ │ │ │ │ ├── TimeRTC │ │ │ │ │ │ └── TimeRTC.ino │ │ │ │ │ ├── TimeRTCLog │ │ │ │ │ │ └── TimeRTCLog.ino │ │ │ │ │ ├── TimeRTCSet │ │ │ │ │ │ └── TimeRTCSet.ino │ │ │ │ │ ├── TimeSerial │ │ │ │ │ │ └── TimeSerial.ino │ │ │ │ │ ├── TimeSerialDateStrings │ │ │ │ │ │ └── TimeSerialDateStrings.ino │ │ │ │ │ └── TimeTeensy3 │ │ │ │ │ │ └── TimeTeensy3.ino │ │ │ │ ├── keywords.txt │ │ │ │ ├── library.json │ │ │ │ └── library.properties │ │ │ ├── TonePlayer │ │ │ │ ├── TonePlayer.cpp │ │ │ │ └── TonePlayer.h │ │ │ ├── TrackFilter │ │ │ │ ├── TrackFilter.h │ │ │ │ ├── TrackLineFilter.cpp │ │ │ │ ├── TrackLineFilter.h │ │ │ │ ├── TrackPointFilter.cpp │ │ │ │ └── TrackPointFilter.h │ │ │ ├── lv_allocator │ │ │ │ └── lv_allocator.h │ │ │ ├── lv_anim_label │ │ │ │ ├── lv_anim_label.c │ │ │ │ └── lv_anim_label.h │ │ │ ├── lv_ext │ │ │ │ ├── lv_anim_timeline_wrapper.c │ │ │ │ ├── lv_anim_timeline_wrapper.h │ │ │ │ ├── lv_obj_ext_func.cpp │ │ │ │ └── lv_obj_ext_func.h │ │ │ └── lv_poly_line │ │ │ │ ├── lv_poly_line.cpp │ │ │ │ └── lv_poly_line.h │ │ └── Version.h │ ├── ChappieCore │ │ ├── BLE │ │ │ └── ChappieBLE.hpp │ │ ├── Button │ │ │ ├── Button │ │ │ │ ├── Button.cpp │ │ │ │ ├── Button.h │ │ │ │ └── README.md │ │ │ └── EmmaButton.hpp │ │ ├── Buzzer │ │ │ ├── EmmaBuzzer.hpp │ │ │ ├── Melody.cpp │ │ │ └── Melody.h │ │ ├── CTP │ │ │ └── ChappieCTP.hpp │ │ ├── ChappieCore.cpp │ │ ├── ChappieCore.h │ │ ├── ChappieCore_config.h │ │ ├── ENV │ │ │ └── ChappieENV.hpp │ │ ├── GPS │ │ │ └── ChappieGPS.hpp │ │ ├── IMU │ │ │ └── ChappieIMU.hpp │ │ ├── Lvgl │ │ │ ├── ChappieLvgl.hpp │ │ │ ├── LGFX_ChappieCore.hpp │ │ │ ├── demos │ │ │ │ ├── README.md │ │ │ │ ├── benchmark │ │ │ │ │ ├── README.md │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── img_benchmark_cogwheel_alpha16.c │ │ │ │ │ │ ├── img_benchmark_cogwheel_argb.c │ │ │ │ │ │ ├── img_benchmark_cogwheel_chroma_keyed.c │ │ │ │ │ │ ├── img_benchmark_cogwheel_indexed16.c │ │ │ │ │ │ ├── img_benchmark_cogwheel_rgb.c │ │ │ │ │ │ ├── img_benchmark_cogwheel_rgb565a8.c │ │ │ │ │ │ ├── lv_font_bechmark_montserrat_12_compr_az.c.c │ │ │ │ │ │ ├── lv_font_bechmark_montserrat_16_compr_az.c.c │ │ │ │ │ │ └── lv_font_bechmark_montserrat_28_compr_az.c.c │ │ │ │ │ ├── lv_demo_benchmark.c │ │ │ │ │ └── lv_demo_benchmark.h │ │ │ │ ├── keypad_encoder │ │ │ │ │ ├── README.md │ │ │ │ │ ├── lv_demo_keypad_encoder.c │ │ │ │ │ └── lv_demo_keypad_encoder.h │ │ │ │ ├── lv_demos.h │ │ │ │ ├── lv_demos.mk │ │ │ │ ├── stress │ │ │ │ │ ├── README.md │ │ │ │ │ ├── lv_demo_stress.c │ │ │ │ │ └── lv_demo_stress.h │ │ │ │ └── widgets │ │ │ │ │ ├── assets │ │ │ │ │ ├── img_clothes.c │ │ │ │ │ ├── img_demo_widgets_avatar.c │ │ │ │ │ └── img_lvgl_logo.c │ │ │ │ │ ├── lv_demo_widgets.c │ │ │ │ │ ├── lv_demo_widgets.h │ │ │ │ │ └── lv_demo_widgets.py │ │ │ ├── lv_conf_template.h │ │ │ ├── lvgl.h │ │ │ └── porting │ │ │ │ ├── lv_port_disp.cpp │ │ │ │ ├── lv_port_disp.h │ │ │ │ ├── lv_port_fs.cpp │ │ │ │ ├── lv_port_fs.h │ │ │ │ ├── lv_port_indev.cpp │ │ │ │ └── lv_port_indev.h │ │ ├── MAG │ │ │ └── ChappieMAG.hpp │ │ ├── Mic │ │ │ ├── EmmaMicPDM.hpp │ │ │ └── Mic │ │ │ │ ├── Mic_Class.cpp │ │ │ │ └── Mic_Class.hpp │ │ ├── Power │ │ │ └── ChappiePower.hpp │ │ ├── RGBLED │ │ │ └── EmmaRGBLED.hpp │ │ ├── SD │ │ │ └── ChappieSD.hpp │ │ ├── SmartAssistantAPI │ │ │ ├── BaiduASR │ │ │ │ ├── BaiduASR.cpp │ │ │ │ └── BaiduASR.h │ │ │ ├── BaiduErnieBot │ │ │ │ ├── BaiduErnieBot.cpp │ │ │ │ └── BaiduErnieBot.h │ │ │ ├── BaiduTTS │ │ │ │ ├── BaiduTTS.cpp │ │ │ │ └── BaiduTTS.h │ │ │ ├── MiniMaxLlm │ │ │ │ ├── MiniMaxLlm.cpp │ │ │ │ └── MiniMaxLlm.h │ │ │ └── SmartAssistantAPI.hpp │ │ ├── Speaker │ │ │ ├── EmmaSpeaker.hpp │ │ │ └── Speaker │ │ │ │ ├── Speaker_Class.cpp │ │ │ │ └── Speaker_Class.hpp │ │ ├── Utility │ │ │ ├── Adafruit_BMP280 │ │ │ │ ├── Adafruit_BMP280.cpp │ │ │ │ ├── Adafruit_BMP280.h │ │ │ │ └── README.md │ │ │ ├── Adafruit_BusIO │ │ │ │ ├── Adafruit_BusIO_Register.cpp │ │ │ │ ├── Adafruit_BusIO_Register.h │ │ │ │ ├── Adafruit_I2CDevice.cpp │ │ │ │ ├── Adafruit_I2CDevice.h │ │ │ │ ├── Adafruit_I2CRegister.h │ │ │ │ ├── Adafruit_SPIDevice.cpp │ │ │ │ ├── Adafruit_SPIDevice.h │ │ │ │ ├── LICENSE │ │ │ │ └── README.md │ │ │ ├── BM8563 │ │ │ │ ├── I2C_BM8563.cpp │ │ │ │ ├── I2C_BM8563.h │ │ │ │ └── README.md │ │ │ ├── I2Cdev │ │ │ │ ├── I2Cdev.cpp │ │ │ │ └── I2Cdev.h │ │ │ └── MPU6050 │ │ │ │ ├── MPU6050.cpp │ │ │ │ ├── MPU6050.h │ │ │ │ ├── MPU6050_6Axis_MotionApps20.h │ │ │ │ ├── MPU6050_6Axis_MotionApps_V6_12.h │ │ │ │ ├── MPU6050_9Axis_MotionApps41.h │ │ │ │ ├── README.md │ │ │ │ └── helper_3dmath.h │ │ └── WiFi │ │ │ ├── ConfigWiFi.cpp │ │ │ └── ConfigWiFi.h │ └── main.cpp └── test │ └── README ├── 3.Models ├── README.md ├── button.stl └── shell.stl ├── 4.Pics ├── XMind.png ├── frontCover.jpg ├── map.png ├── pic1.jpg ├── pic2.jpg └── ssa.png ├── 5.Resource ├── MicroSDcard │ ├── .SystemSaveBackup.json │ ├── FONT │ │ └── font_smileysd_16.bin │ ├── MAP │ │ ├── README.md │ │ └── image.png │ ├── README.md │ ├── SystemSave.json │ └── TilesConverterForLVGL.exe └── SmartAssistant │ └── README.md ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/.gitignore -------------------------------------------------------------------------------- /1.Hardware/Gerber_PCB_EasyGPS_V1.4_2024-06-16.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/1.Hardware/Gerber_PCB_EasyGPS_V1.4_2024-06-16.zip -------------------------------------------------------------------------------- /1.Hardware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/1.Hardware/README.md -------------------------------------------------------------------------------- /2.Firmware/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/.gitignore -------------------------------------------------------------------------------- /2.Firmware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/README.md -------------------------------------------------------------------------------- /2.Firmware/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/include/README -------------------------------------------------------------------------------- /2.Firmware/lib/ESP32-BLE-Combo/BleCombo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/ESP32-BLE-Combo/BleCombo.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/ESP32-BLE-Combo/BleCombo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/ESP32-BLE-Combo/BleCombo.h -------------------------------------------------------------------------------- /2.Firmware/lib/ESP32-BLE-Combo/BleGamepad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/ESP32-BLE-Combo/BleGamepad.h -------------------------------------------------------------------------------- /2.Firmware/lib/ESP32-BLE-Combo/BleKeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/ESP32-BLE-Combo/BleKeyboard.h -------------------------------------------------------------------------------- /2.Firmware/lib/ESP32-BLE-Combo/BleMouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/ESP32-BLE-Combo/BleMouse.h -------------------------------------------------------------------------------- /2.Firmware/lib/ESP32-BLE-Combo/Gamepad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/ESP32-BLE-Combo/Gamepad.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/ESP32-BLE-Combo/Keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/ESP32-BLE-Combo/Keyboard.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/ESP32-BLE-Combo/Mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/ESP32-BLE-Combo/Mouse.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/ESP32-BLE-Combo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/ESP32-BLE-Combo/README.md -------------------------------------------------------------------------------- /2.Firmware/lib/ESP32-BLE-Combo/examples/MouseButtons/MouseButtons.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/ESP32-BLE-Combo/examples/MouseButtons/MouseButtons.ino -------------------------------------------------------------------------------- /2.Firmware/lib/ESP32-BLE-Combo/examples/SendButtons/SendButtons.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/ESP32-BLE-Combo/examples/SendButtons/SendButtons.ino -------------------------------------------------------------------------------- /2.Firmware/lib/ESP32-BLE-Combo/examples/SendKeyStrokes/SendKeyStrokes.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/ESP32-BLE-Combo/examples/SendKeyStrokes/SendKeyStrokes.ino -------------------------------------------------------------------------------- /2.Firmware/lib/ESP32-BLE-Combo/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/ESP32-BLE-Combo/keywords.txt -------------------------------------------------------------------------------- /2.Firmware/lib/ESP32-BLE-Combo/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/ESP32-BLE-Combo/library.properties -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/.gitignore -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/LICENSE -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/PORTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/PORTING.md -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/README.md -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/ci/ci-compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/ci/ci-compile -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/ci/ci-flags.py: -------------------------------------------------------------------------------- 1 | Import("env") 2 | 3 | env.Append(CXXFLAGS=["-Wno-register"]) 4 | -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/code_of_conduct.md -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/component.mk -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/docs/Doxyfile -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/docs/DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/docs/DoxygenLayout.xml -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/docs/include/fastled-docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/docs/include/fastled-docs.css -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/docs/include/fastled_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/docs/include/fastled_logo.png -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/docs/include/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/docs/include/footer.html -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/docs/include/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/docs/include/header.html -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/examples/AnalogOutput/AnalogOutput.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/examples/AnalogOutput/AnalogOutput.ino -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/examples/Blink/Blink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/examples/Blink/Blink.ino -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/examples/ColorPalette/ColorPalette.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/examples/ColorPalette/ColorPalette.ino -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/examples/ColorTemperature/ColorTemperature.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/examples/ColorTemperature/ColorTemperature.ino -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/examples/Cylon/Cylon.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/examples/Cylon/Cylon.ino -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/examples/DemoReel100/DemoReel100.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/examples/DemoReel100/DemoReel100.ino -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/examples/Fire2012/Fire2012.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/examples/Fire2012/Fire2012.ino -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/examples/FirstLight/FirstLight.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/examples/FirstLight/FirstLight.ino -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/examples/Multiple/MultiArrays/MultiArrays.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/examples/Multiple/MultiArrays/MultiArrays.ino -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/examples/Multiple/OctoWS2811Demo/OctoWS2811Demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/examples/Multiple/OctoWS2811Demo/OctoWS2811Demo.ino -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/examples/Noise/Noise.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/examples/Noise/Noise.ino -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/examples/NoisePlayground/NoisePlayground.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/examples/NoisePlayground/NoisePlayground.ino -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/examples/NoisePlusPalette/NoisePlusPalette.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/examples/NoisePlusPalette/NoisePlusPalette.ino -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/examples/Pacifica/Pacifica.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/examples/Pacifica/Pacifica.ino -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/examples/Pintest/Pintest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/examples/Pintest/Pintest.ino -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/examples/Pride2015/Pride2015.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/examples/Pride2015/Pride2015.ino -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/examples/RGBCalibrate/RGBCalibrate.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/examples/RGBCalibrate/RGBCalibrate.ino -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/examples/RGBSetDemo/RGBSetDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/examples/RGBSetDemo/RGBSetDemo.ino -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/examples/SmartMatrix/SmartMatrix.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/examples/SmartMatrix/SmartMatrix.ino -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/examples/TwinkleFox/TwinkleFox.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/examples/TwinkleFox/TwinkleFox.ino -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/examples/XYMatrix/XYMatrix.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/examples/XYMatrix/XYMatrix.ino -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/extras/AppleII.s65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/extras/AppleII.s65 -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/extras/FastLED6502.s65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/extras/FastLED6502.s65 -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/extras/RainbowDemo.bin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/extras/RainbowDemo.bin.zip -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/extras/RainbowDemo.s65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/extras/RainbowDemo.s65 -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/keywords.txt -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/library.json -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/release_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/release_notes.md -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/FastLED.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/FastLED.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/FastLED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/FastLED.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/bitswap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/bitswap.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/bitswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/bitswap.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/chipsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/chipsets.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/color.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/colorpalettes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/colorpalettes.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/colorpalettes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/colorpalettes.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/colorutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/colorutils.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/colorutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/colorutils.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/controller.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/cpp_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/cpp_compat.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/dmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/dmx.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/fastled_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/fastled_config.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/fastled_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/fastled_delay.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/fastled_progmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/fastled_progmem.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/fastpin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/fastpin.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/fastspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/fastspi.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/fastspi_bitbang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/fastspi_bitbang.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/fastspi_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/fastspi_dma.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/fastspi_nop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/fastspi_nop.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/fastspi_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/fastspi_ref.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/fastspi_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/fastspi_types.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/hsv2rgb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/hsv2rgb.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/hsv2rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/hsv2rgb.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/led_sysdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/led_sysdefs.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/lib8tion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/lib8tion.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/lib8tion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/lib8tion.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/lib8tion/math8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/lib8tion/math8.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/lib8tion/random8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/lib8tion/random8.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/lib8tion/scale8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/lib8tion/scale8.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/lib8tion/trig8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/lib8tion/trig8.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/noise.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/noise.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/pixelset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/pixelset.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/pixeltypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/pixeltypes.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/apollo3/clockless_apollo3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/apollo3/clockless_apollo3.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/apollo3/fastled_apollo3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/apollo3/fastled_apollo3.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/apollo3/fastpin_apollo3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/apollo3/fastpin_apollo3.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/apollo3/fastspi_apollo3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/apollo3/fastspi_apollo3.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/apollo3/led_sysdefs_apollo3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/apollo3/led_sysdefs_apollo3.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/common/m0clockless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/common/m0clockless.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/d21/clockless_arm_d21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/d21/clockless_arm_d21.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/d21/fastled_arm_d21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/d21/fastled_arm_d21.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/d21/fastpin_arm_d21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/d21/fastpin_arm_d21.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/d21/led_sysdefs_arm_d21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/d21/led_sysdefs_arm_d21.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/d51/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/d51/README.txt -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/d51/clockless_arm_d51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/d51/clockless_arm_d51.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/d51/fastled_arm_d51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/d51/fastled_arm_d51.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/d51/fastpin_arm_d51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/d51/fastpin_arm_d51.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/d51/led_sysdefs_arm_d51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/d51/led_sysdefs_arm_d51.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/k20/clockless_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/k20/clockless_arm_k20.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/k20/clockless_block_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/k20/clockless_block_arm_k20.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/k20/fastled_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/k20/fastled_arm_k20.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/k20/fastpin_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/k20/fastpin_arm_k20.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/k20/fastspi_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/k20/fastspi_arm_k20.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/k20/led_sysdefs_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/k20/led_sysdefs_arm_k20.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/k20/octows2811_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/k20/octows2811_controller.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/k20/smartmatrix_t3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/k20/smartmatrix_t3.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/k20/ws2812serial_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/k20/ws2812serial_controller.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/k66/clockless_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/k66/clockless_arm_k66.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/k66/clockless_block_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/k66/clockless_block_arm_k66.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/k66/fastled_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/k66/fastled_arm_k66.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/k66/fastpin_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/k66/fastpin_arm_k66.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/k66/fastspi_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/k66/fastspi_arm_k66.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/k66/led_sysdefs_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/k66/led_sysdefs_arm_k66.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/kl26/clockless_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/kl26/clockless_arm_kl26.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/kl26/fastled_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/kl26/fastled_arm_kl26.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/kl26/fastpin_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/kl26/fastpin_arm_kl26.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/kl26/fastspi_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/kl26/fastspi_arm_kl26.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/kl26/led_sysdefs_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/kl26/led_sysdefs_arm_kl26.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/mxrt1062/clockless_arm_mxrt1062.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/mxrt1062/clockless_arm_mxrt1062.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/mxrt1062/fastled_arm_mxrt1062.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/mxrt1062/fastled_arm_mxrt1062.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/mxrt1062/fastpin_arm_mxrt1062.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/mxrt1062/fastpin_arm_mxrt1062.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/mxrt1062/fastspi_arm_mxrt1062.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/mxrt1062/fastspi_arm_mxrt1062.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/mxrt1062/octows2811_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/mxrt1062/octows2811_controller.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/nrf51/clockless_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/nrf51/clockless_arm_nrf51.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/nrf51/fastled_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/nrf51/fastled_arm_nrf51.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/nrf51/fastpin_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/nrf51/fastpin_arm_nrf51.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/nrf51/fastspi_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/nrf51/fastspi_arm_nrf51.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/nrf51/led_sysdefs_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/nrf51/led_sysdefs_arm_nrf51.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/nrf52/arbiter_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/nrf52/arbiter_nrf52.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/nrf52/clockless_arm_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/nrf52/clockless_arm_nrf52.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/nrf52/fastled_arm_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/nrf52/fastled_arm_nrf52.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/nrf52/fastpin_arm_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/nrf52/fastpin_arm_nrf52.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/nrf52/fastspi_arm_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/nrf52/fastspi_arm_nrf52.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/nrf52/led_sysdefs_arm_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/nrf52/led_sysdefs_arm_nrf52.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/rp2040/clockless_arm_rp2040.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/rp2040/clockless_arm_rp2040.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/rp2040/fastled_arm_rp2040.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/rp2040/fastled_arm_rp2040.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/rp2040/fastpin_arm_rp2040.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/rp2040/fastpin_arm_rp2040.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/rp2040/led_sysdefs_arm_rp2040.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/rp2040/led_sysdefs_arm_rp2040.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/rp2040/pio_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/rp2040/pio_asm.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/rp2040/pio_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/rp2040/pio_gen.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/sam/clockless_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/sam/clockless_arm_sam.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/sam/clockless_block_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/sam/clockless_block_arm_sam.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/sam/fastled_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/sam/fastled_arm_sam.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/sam/fastpin_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/sam/fastpin_arm_sam.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/sam/fastspi_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/sam/fastspi_arm_sam.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/sam/led_sysdefs_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/sam/led_sysdefs_arm_sam.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/stm32/clockless_arm_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/stm32/clockless_arm_stm32.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/stm32/cm3_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/stm32/cm3_regs.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/stm32/fastled_arm_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/stm32/fastled_arm_stm32.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/stm32/fastpin_arm_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/stm32/fastpin_arm_stm32.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/arm/stm32/led_sysdefs_arm_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/arm/stm32/led_sysdefs_arm_stm32.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/avr/clockless_trinket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/avr/clockless_trinket.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/avr/fastled_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/avr/fastled_avr.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/avr/fastpin_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/avr/fastpin_avr.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/avr/fastspi_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/avr/fastspi_avr.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/avr/led_sysdefs_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/avr/led_sysdefs_avr.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/esp/32/clockless_block_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/esp/32/clockless_block_esp32.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/esp/32/clockless_i2s_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/esp/32/clockless_i2s_esp32.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/esp/32/clockless_rmt_esp32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/esp/32/clockless_rmt_esp32.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/esp/32/clockless_rmt_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/esp/32/clockless_rmt_esp32.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/esp/32/fastled_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/esp/32/fastled_esp32.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/esp/32/fastpin_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/esp/32/fastpin_esp32.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/esp/32/fastspi_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/esp/32/fastspi_esp32.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/esp/32/led_sysdefs_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/esp/32/led_sysdefs_esp32.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/esp/8266/clockless_block_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/esp/8266/clockless_block_esp8266.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/esp/8266/clockless_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/esp/8266/clockless_esp8266.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/esp/8266/fastled_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/esp/8266/fastled_esp8266.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/esp/8266/fastpin_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/esp/8266/fastpin_esp8266.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/esp/8266/fastspi_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/esp/8266/fastspi_esp8266.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/esp/8266/led_sysdefs_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/esp/8266/led_sysdefs_esp8266.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/platforms/fastspi_ardunio_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/platforms/fastspi_ardunio_core.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/power_mgt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/power_mgt.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/power_mgt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/power_mgt.h -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/src/wiring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/src/wiring.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/FastLED/workspace.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/FastLED/workspace.code-workspace -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/.gitignore: -------------------------------------------------------------------------------- 1 | docs/doxydocs 2 | -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/CHANGELOG.md -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/LICENSE -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/README.md -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/docs/Bluetooth 5 features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/docs/Bluetooth 5 features.md -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/docs/Command_line_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/docs/Command_line_config.md -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/docs/Doxyfile -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/docs/Improvements_and_updates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/docs/Improvements_and_updates.md -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/docs/Migration_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/docs/Migration_guide.md -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/docs/New_user_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/docs/New_user_guide.md -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/docs/Usage_tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/docs/Usage_tips.md -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/docs/index.md -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/examples/NimBLE_Client/NimBLE_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/examples/NimBLE_Client/NimBLE_Client.ino -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/examples/NimBLE_Server/NimBLE_Server.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/examples/NimBLE_Server/NimBLE_Server.ino -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/library.properties -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/HIDKeyboardTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/HIDKeyboardTypes.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/HIDTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/HIDTypes.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLE2904.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLE2904.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLE2904.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLE2904.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLEAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLEAddress.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLEAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLEAddress.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLEAdvertisedDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLEAdvertisedDevice.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLEAdvertisedDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLEAdvertisedDevice.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLEAdvertising.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLEAdvertising.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLEAdvertising.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLEAdvertising.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLEAttValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLEAttValue.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLEBeacon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLEBeacon.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLEBeacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLEBeacon.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLECharacteristic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLECharacteristic.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLECharacteristic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLECharacteristic.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLEClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLEClient.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLEClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLEClient.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLEConnInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLEConnInfo.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLEDescriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLEDescriptor.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLEDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLEDescriptor.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLEDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLEDevice.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLEDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLEDevice.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLEEddystoneTLM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLEEddystoneTLM.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLEEddystoneTLM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLEEddystoneTLM.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLEEddystoneURL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLEEddystoneURL.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLEEddystoneURL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLEEddystoneURL.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLEExtAdvertising.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLEExtAdvertising.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLEExtAdvertising.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLEExtAdvertising.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLEHIDDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLEHIDDevice.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLEHIDDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLEHIDDevice.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLELog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLELog.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLERemoteCharacteristic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLERemoteCharacteristic.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLERemoteCharacteristic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLERemoteCharacteristic.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLERemoteDescriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLERemoteDescriptor.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLERemoteDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLERemoteDescriptor.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLERemoteService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLERemoteService.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLERemoteService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLERemoteService.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLEScan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLEScan.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLEScan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLEScan.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLESecurity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLESecurity.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLESecurity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLESecurity.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLEServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLEServer.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLEServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLEServer.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLEService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLEService.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLEService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLEService.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLEUUID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLEUUID.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLEUUID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLEUUID.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLEUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLEUtils.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/NimBLEUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/NimBLEUtils.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/CODING_STANDARDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/CODING_STANDARDS.md -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/LICENSE -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/NOTICE -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/README.md -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/RELEASE_NOTES.md -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/console/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/console/console.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/AUTHORS -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/LICENSE -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/README -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/VERSION: -------------------------------------------------------------------------------- 1 | 0.2.8 2 | -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/aes_decrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/aes_decrypt.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/aes_encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/aes_encrypt.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/cbc_mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/cbc_mode.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/ccm_mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/ccm_mode.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/cmac_mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/cmac_mode.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/ctr_mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/ctr_mode.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/ctr_prng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/ctr_prng.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/ecc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/ecc.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/ecc_dh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/ecc_dh.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/ecc_dsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/ecc_dsa.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/hmac.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/hmac_prng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/hmac_prng.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/sha256.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/utils.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/controller/src/ble_ll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/controller/src/ble_ll.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/drivers/nrf51/src/ble_hw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/drivers/nrf51/src/ble_hw.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/drivers/nrf52/src/ble_hw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/drivers/nrf52/src/ble_hw.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/include/host/ble_hs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/include/host/ble_hs.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/include/host/ble_sm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/include/host/ble_sm.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/access.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/access.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/adv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/adv.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/adv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/adv.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/aes-ccm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/aes-ccm.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/app_keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/app_keys.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/app_keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/app_keys.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/atomic.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/beacon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/beacon.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/beacon.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/cdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/cdb.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/cfg.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/cfg.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/cfg_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/cfg_cli.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/cfg_srv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/cfg_srv.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/crypto.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/crypto.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/foundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/foundation.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/friend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/friend.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/friend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/friend.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/glue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/glue.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/health_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/health_cli.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/health_srv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/health_srv.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/heartbeat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/heartbeat.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/heartbeat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/heartbeat.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/lpn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/lpn.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/lpn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/lpn.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/mesh.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/mesh_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/mesh_priv.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/model_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/model_cli.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/model_srv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/model_srv.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/net.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/net.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/nodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/nodes.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/nodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/nodes.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/pb_adv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/pb_adv.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/pb_gatt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/pb_gatt.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/prov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/prov.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/prov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/prov.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/proxy.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/proxy.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/rpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/rpl.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/rpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/rpl.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/settings.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/settings.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/shell.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/shell.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/subnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/subnet.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/subnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/subnet.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_att.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_att.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_att_clt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_att_clt.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_att_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_att_cmd.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_att_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_att_priv.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_att_svr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_att_svr.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_gap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_gap.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_gap_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_gap_priv.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_gattc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_gattc.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_gatts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_gatts.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_adv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_adv.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_cfg.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_conn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_conn.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_flow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_flow.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_hci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_hci.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_id.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_log.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_mbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_mbuf.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_misc.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_priv.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_pvcy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_pvcy.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_stop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_stop.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_ibeacon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_ibeacon.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_l2cap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_l2cap.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_monitor.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_sm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_sm.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_sm_alg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_sm_alg.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_sm_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_sm_cmd.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_sm_lgcy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_sm_lgcy.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_sm_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_sm_priv.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_sm_sc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_sm_sc.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_store.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_store.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_uuid.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/util/src/addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/host/util/src/addr.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/include/nimble/ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/nimble/include/nimble/ble.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/porting/nimble/include/os/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/porting/nimble/include/os/os.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/porting/nimble/src/endian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/porting/nimble/src/endian.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/porting/nimble/src/hal_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/porting/nimble/src/hal_timer.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/porting/nimble/src/hal_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/porting/nimble/src/hal_uart.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/porting/nimble/src/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/porting/nimble/src/mem.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimble/porting/nimble/src/os_mbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimble/porting/nimble/src/os_mbuf.c -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimconfig.h -------------------------------------------------------------------------------- /2.Firmware/lib/NimBLE-Arduino/src/nimconfig_rename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/NimBLE-Arduino/src/nimconfig_rename.h -------------------------------------------------------------------------------- /2.Firmware/lib/QMC5883LCompass/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/QMC5883LCompass/LICENSE -------------------------------------------------------------------------------- /2.Firmware/lib/QMC5883LCompass/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/QMC5883LCompass/changelog.md -------------------------------------------------------------------------------- /2.Firmware/lib/QMC5883LCompass/examples/azimuth/azimuth.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/QMC5883LCompass/examples/azimuth/azimuth.ino -------------------------------------------------------------------------------- /2.Firmware/lib/QMC5883LCompass/examples/bearing/bearing.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/QMC5883LCompass/examples/bearing/bearing.ino -------------------------------------------------------------------------------- /2.Firmware/lib/QMC5883LCompass/examples/calibration/calibration.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/QMC5883LCompass/examples/calibration/calibration.ino -------------------------------------------------------------------------------- /2.Firmware/lib/QMC5883LCompass/examples/direction/direction.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/QMC5883LCompass/examples/direction/direction.ino -------------------------------------------------------------------------------- /2.Firmware/lib/QMC5883LCompass/examples/smoothing/smoothing.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/QMC5883LCompass/examples/smoothing/smoothing.ino -------------------------------------------------------------------------------- /2.Firmware/lib/QMC5883LCompass/examples/xyz/xyz.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/QMC5883LCompass/examples/xyz/xyz.ino -------------------------------------------------------------------------------- /2.Firmware/lib/QMC5883LCompass/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/QMC5883LCompass/keywords.txt -------------------------------------------------------------------------------- /2.Firmware/lib/QMC5883LCompass/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/QMC5883LCompass/library.properties -------------------------------------------------------------------------------- /2.Firmware/lib/QMC5883LCompass/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/QMC5883LCompass/readme.md -------------------------------------------------------------------------------- /2.Firmware/lib/QMC5883LCompass/src/QMC5883LCompass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/QMC5883LCompass/src/QMC5883LCompass.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/QMC5883LCompass/src/QMC5883LCompass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/QMC5883LCompass/src/QMC5883LCompass.h -------------------------------------------------------------------------------- /2.Firmware/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/README -------------------------------------------------------------------------------- /2.Firmware/lib/TinyGPSPlus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/TinyGPSPlus/README.md -------------------------------------------------------------------------------- /2.Firmware/lib/TinyGPSPlus/examples/BasicExample/BasicExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/TinyGPSPlus/examples/BasicExample/BasicExample.ino -------------------------------------------------------------------------------- /2.Firmware/lib/TinyGPSPlus/examples/DeviceExample/DeviceExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/TinyGPSPlus/examples/DeviceExample/DeviceExample.ino -------------------------------------------------------------------------------- /2.Firmware/lib/TinyGPSPlus/examples/FullExample/FullExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/TinyGPSPlus/examples/FullExample/FullExample.ino -------------------------------------------------------------------------------- /2.Firmware/lib/TinyGPSPlus/examples/KitchenSink/KitchenSink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/TinyGPSPlus/examples/KitchenSink/KitchenSink.ino -------------------------------------------------------------------------------- /2.Firmware/lib/TinyGPSPlus/examples/SatElevTracker/SatElevTracker.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/TinyGPSPlus/examples/SatElevTracker/SatElevTracker.ino -------------------------------------------------------------------------------- /2.Firmware/lib/TinyGPSPlus/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/TinyGPSPlus/keywords.txt -------------------------------------------------------------------------------- /2.Firmware/lib/TinyGPSPlus/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/TinyGPSPlus/library.json -------------------------------------------------------------------------------- /2.Firmware/lib/TinyGPSPlus/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/TinyGPSPlus/library.properties -------------------------------------------------------------------------------- /2.Firmware/lib/TinyGPSPlus/src/TinyGPS++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/TinyGPSPlus/src/TinyGPS++.cpp -------------------------------------------------------------------------------- /2.Firmware/lib/TinyGPSPlus/src/TinyGPS++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/TinyGPSPlus/src/TinyGPS++.h -------------------------------------------------------------------------------- /2.Firmware/lib/TinyGPSPlus/src/TinyGPSPlus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/TinyGPSPlus/src/TinyGPSPlus.h -------------------------------------------------------------------------------- /2.Firmware/lib/lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/lib/lv_conf.h -------------------------------------------------------------------------------- /2.Firmware/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/platformio.ini -------------------------------------------------------------------------------- /2.Firmware/src/App/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/App.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/App.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/DataProc/DP_BLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/DataProc/DP_BLE.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/DataProc/DP_Backlight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/DataProc/DP_Backlight.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/DataProc/DP_Clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/DataProc/DP_Clock.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/DataProc/DP_GPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/DataProc/DP_GPS.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/DataProc/DP_IMU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/DataProc/DP_IMU.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/DataProc/DP_LIST.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/DataProc/DP_LIST.inc -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/DataProc/DP_MAG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/DataProc/DP_MAG.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/DataProc/DP_MusicPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/DataProc/DP_MusicPlayer.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/DataProc/DP_Power.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/DataProc/DP_Power.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/DataProc/DP_Recorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/DataProc/DP_Recorder.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/DataProc/DP_SmartAssistant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/DataProc/DP_SmartAssistant.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/DataProc/DP_SportStatus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/DataProc/DP_SportStatus.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/DataProc/DP_Storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/DataProc/DP_Storage.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/DataProc/DP_SysConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/DataProc/DP_SysConfig.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/DataProc/DP_TrackFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/DataProc/DP_TrackFilter.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/DataProc/DP_TzConv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/DataProc/DP_TzConv.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/DataProc/DP_WiFi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/DataProc/DP_WiFi.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/DataProc/DataProc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/DataProc/DataProc.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/DataProc/DataProc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/DataProc/DataProc.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/DataProc/DataProc_Def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/DataProc/DataProc_Def.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/HAL/CommonMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/HAL/CommonMacro.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/HAL/HAL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/HAL/HAL.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/HAL/HAL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/HAL/HAL.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/HAL/HAL_Audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/HAL/HAL_Audio.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/HAL/HAL_BLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/HAL/HAL_BLE.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/HAL/HAL_Backlight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/HAL/HAL_Backlight.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/HAL/HAL_Buzz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/HAL/HAL_Buzz.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/HAL/HAL_Clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/HAL/HAL_Clock.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/HAL/HAL_Def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/HAL/HAL_Def.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/HAL/HAL_ENV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/HAL/HAL_ENV.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/HAL/HAL_GPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/HAL/HAL_GPS.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/HAL/HAL_IMU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/HAL/HAL_IMU.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/HAL/HAL_MAG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/HAL/HAL_MAG.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/HAL/HAL_Power.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/HAL/HAL_Power.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/HAL/HAL_SD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/HAL/HAL_SD.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/HAL/HAL_SmartAssistant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/HAL/HAL_SmartAssistant.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/HAL/HAL_WiFi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/HAL/HAL_WiFi.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/Music/MusicCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/Music/MusicCode.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Common/Music/ToneMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Common/Music/ToneMap.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Config/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Config/Config.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/AppFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/AppFactory.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/AppFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/AppFactory.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/BLEKeyboard/BLEKeyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/BLEKeyboard/BLEKeyboard.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/BLEKeyboard/BLEKeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/BLEKeyboard/BLEKeyboard.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/BLEKeyboard/BLEKeyboardModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/BLEKeyboard/BLEKeyboardModel.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/BLEKeyboard/BLEKeyboardModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/BLEKeyboard/BLEKeyboardModel.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/BLEKeyboard/BLEKeyboardView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/BLEKeyboard/BLEKeyboardView.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/BLEKeyboard/BLEKeyboardView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/BLEKeyboard/BLEKeyboardView.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/Compass/Compass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/Compass/Compass.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/Compass/Compass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/Compass/Compass.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/Compass/CompassModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/Compass/CompassModel.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/Compass/CompassModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/Compass/CompassModel.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/Compass/CompassView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/Compass/CompassView.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/Compass/CompassView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/Compass/CompassView.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/Dialplate/Dialplate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/Dialplate/Dialplate.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/Dialplate/Dialplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/Dialplate/Dialplate.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/Dialplate/DialplateModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/Dialplate/DialplateModel.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/Dialplate/DialplateModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/Dialplate/DialplateModel.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/Dialplate/DialplateView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/Dialplate/DialplateView.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/Dialplate/DialplateView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/Dialplate/DialplateView.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/LaunchOut/LaunchOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/LaunchOut/LaunchOut.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/LaunchOut/LaunchOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/LaunchOut/LaunchOut.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/LaunchOut/LaunchOutModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/LaunchOut/LaunchOutModel.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/LaunchOut/LaunchOutModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/LaunchOut/LaunchOutModel.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/LaunchOut/LaunchOutView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/LaunchOut/LaunchOutView.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/LaunchOut/LaunchOutView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/LaunchOut/LaunchOutView.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/LiveMap/LiveMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/LiveMap/LiveMap.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/LiveMap/LiveMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/LiveMap/LiveMap.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/LiveMap/LiveMapModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/LiveMap/LiveMapModel.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/LiveMap/LiveMapModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/LiveMap/LiveMapModel.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/LiveMap/LiveMapView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/LiveMap/LiveMapView.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/LiveMap/LiveMapView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/LiveMap/LiveMapView.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/Page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/Page.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/Popcat/Popcat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/Popcat/Popcat.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/Popcat/Popcat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/Popcat/Popcat.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/Popcat/PopcatModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/Popcat/PopcatModel.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/Popcat/PopcatModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/Popcat/PopcatModel.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/Popcat/PopcatView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/Popcat/PopcatView.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/Popcat/PopcatView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/Popcat/PopcatView.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/Settings/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/Settings/Settings.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/Settings/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/Settings/Settings.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/Settings/SettingsModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/Settings/SettingsModel.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/Settings/SettingsModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/Settings/SettingsModel.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/Settings/SettingsView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/Settings/SettingsView.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/Settings/SettingsView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/Settings/SettingsView.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/SmartAssistant/SmartAssistant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/SmartAssistant/SmartAssistant.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/SmartAssistant/SmartAssistant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/SmartAssistant/SmartAssistant.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/SmartAssistant/SmartAssistantModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/SmartAssistant/SmartAssistantModel.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/SmartAssistant/SmartAssistantModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/SmartAssistant/SmartAssistantModel.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/SmartAssistant/SmartAssistantView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/SmartAssistant/SmartAssistantView.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/SmartAssistant/SmartAssistantView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/SmartAssistant/SmartAssistantView.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/StartUp/StartUp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/StartUp/StartUp.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/StartUp/StartUp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/StartUp/StartUp.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/StartUp/StartUpModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/StartUp/StartUpModel.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/StartUp/StartUpModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/StartUp/StartUpModel.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/StartUp/StartUpView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/StartUp/StartUpView.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/StartUp/StartUpView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/StartUp/StartUpView.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/StatusBar/StatusBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/StatusBar/StatusBar.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/StatusBar/StatusBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/StatusBar/StatusBar.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/SystemInfos/SystemInfos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/SystemInfos/SystemInfos.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/SystemInfos/SystemInfos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/SystemInfos/SystemInfos.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/SystemInfos/SystemInfosModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/SystemInfos/SystemInfosModel.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/SystemInfos/SystemInfosModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/SystemInfos/SystemInfosModel.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/SystemInfos/SystemInfosView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/SystemInfos/SystemInfosView.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/SystemInfos/SystemInfosView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/SystemInfos/SystemInfosView.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/WaveTable/WaveTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/WaveTable/WaveTable.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/WaveTable/WaveTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/WaveTable/WaveTable.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/WaveTable/WaveTableModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/WaveTable/WaveTableModel.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/WaveTable/WaveTableModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/WaveTable/WaveTableModel.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/WaveTable/WaveTableView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/WaveTable/WaveTableView.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/WaveTable/WaveTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/WaveTable/WaveTableView.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/_Template/Template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/_Template/Template.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/_Template/Template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/_Template/Template.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/_Template/TemplateModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/_Template/TemplateModel.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/_Template/TemplateModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/_Template/TemplateModel.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/_Template/TemplateView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/_Template/TemplateView.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Pages/_Template/TemplateView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Pages/_Template/TemplateView.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Resource/Font/font_agencyb_36.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Resource/Font/font_agencyb_36.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Resource/Font/font_bahnschrift_13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Resource/Font/font_bahnschrift_13.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Resource/Font/font_bahnschrift_17.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Resource/Font/font_bahnschrift_17.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Resource/Font/font_bahnschrift_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Resource/Font/font_bahnschrift_32.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Resource/Font/font_bahnschrift_65.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Resource/Font/font_bahnschrift_65.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Resource/Font/font_compass_24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Resource/Font/font_compass_24.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Resource/Font/font_smiley_36.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Resource/Font/font_smiley_36.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Resource/Font/font_smileysd_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Resource/Font/font_smileysd_16.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Resource/Image/img_src_alarm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Resource/Image/img_src_alarm.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Resource/Image/img_src_battery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Resource/Image/img_src_battery.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Resource/Image/img_src_battery_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Resource/Image/img_src_battery_info.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Resource/Image/img_src_bicycle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Resource/Image/img_src_bicycle.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Resource/Image/img_src_compass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Resource/Image/img_src_compass.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Resource/Image/img_src_compass_bg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Resource/Image/img_src_compass_bg.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Resource/Image/img_src_gps_arrow_dark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Resource/Image/img_src_gps_arrow_dark.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Resource/Image/img_src_gps_arrow_default.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Resource/Image/img_src_gps_arrow_default.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Resource/Image/img_src_gps_arrow_light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Resource/Image/img_src_gps_arrow_light.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Resource/Image/img_src_gps_pin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Resource/Image/img_src_gps_pin.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Resource/Image/img_src_gyroscope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Resource/Image/img_src_gyroscope.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Resource/Image/img_src_locate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Resource/Image/img_src_locate.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Resource/Image/img_src_map_location.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Resource/Image/img_src_map_location.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Resource/Image/img_src_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Resource/Image/img_src_menu.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Resource/Image/img_src_origin_point.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Resource/Image/img_src_origin_point.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Resource/Image/img_src_pause.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Resource/Image/img_src_pause.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Resource/Image/img_src_popcat_close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Resource/Image/img_src_popcat_close.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Resource/Image/img_src_popcat_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Resource/Image/img_src_popcat_open.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Resource/Image/img_src_satellite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Resource/Image/img_src_satellite.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Resource/Image/img_src_sd_card.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Resource/Image/img_src_sd_card.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Resource/Image/img_src_start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Resource/Image/img_src_start.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Resource/Image/img_src_stop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Resource/Image/img_src_stop.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Resource/Image/img_src_storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Resource/Image/img_src_storage.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Resource/Image/img_src_system_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Resource/Image/img_src_system_info.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Resource/Image/img_src_time_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Resource/Image/img_src_time_info.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Resource/Image/img_src_trip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Resource/Image/img_src_trip.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Resource/ResourcePool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Resource/ResourcePool.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Resource/ResourcePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Resource/ResourcePool.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/DataCenter/Account.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/DataCenter/Account.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/DataCenter/Account.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/DataCenter/Account.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/DataCenter/DataCenter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/DataCenter/DataCenter.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/DataCenter/DataCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/DataCenter/DataCenter.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/DataCenter/DataCenterLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/DataCenter/DataCenterLog.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/DataCenter/PingPongBuffer/PingPongBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/DataCenter/PingPongBuffer/PingPongBuffer.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/DataCenter/PingPongBuffer/PingPongBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/DataCenter/PingPongBuffer/PingPongBuffer.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/Filters/FilterBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/Filters/FilterBase.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/Filters/Filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/Filters/Filters.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/Filters/HysteresisFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/Filters/HysteresisFilter.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/Filters/LowpassFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/Filters/LowpassFilter.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/Filters/MedianFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/Filters/MedianFilter.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/Filters/MedianQueueFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/Filters/MedianQueueFilter.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/Filters/SlidingFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/Filters/SlidingFilter.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/GPX/Examples/Static_Track/Static_Track.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/GPX/Examples/Static_Track/Static_Track.pde -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/GPX/GPX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/GPX/GPX.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/GPX/GPX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/GPX/GPX.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/GPX_Parser/GPX_Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/GPX_Parser/GPX_Parser.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/GPX_Parser/GPX_Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/GPX_Parser/GPX_Parser.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/MapConv/GPS_Transform/GPS_Transform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/MapConv/GPS_Transform/GPS_Transform.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/MapConv/GPS_Transform/GPS_Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/MapConv/GPS_Transform/GPS_Transform.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/MapConv/MapConv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/MapConv/MapConv.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/MapConv/MapConv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/MapConv/MapConv.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/MapConv/TileSystem/TileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/MapConv/TileSystem/TileSystem.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/MapConv/TileSystem/TileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/MapConv/TileSystem/TileSystem.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/PageManager/PM_Anim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/PageManager/PM_Anim.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/PageManager/PM_Base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/PageManager/PM_Base.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/PageManager/PM_Drag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/PageManager/PM_Drag.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/PageManager/PM_Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/PageManager/PM_Log.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/PageManager/PM_Router.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/PageManager/PM_Router.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/PageManager/PM_State.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/PageManager/PM_State.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/PageManager/PageBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/PageManager/PageBase.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/PageManager/PageBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/PageManager/PageBase.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/PageManager/PageFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/PageManager/PageFactory.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/PageManager/PageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/PageManager/PageManager.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/PointContainer/PointContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/PointContainer/PointContainer.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/PointContainer/PointContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/PointContainer/PointContainer.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/ResourceManager/ResourceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/ResourceManager/ResourceManager.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/ResourceManager/ResourceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/ResourceManager/ResourceManager.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/StorageService/StorageService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/StorageService/StorageService.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/StorageService/StorageService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/StorageService/StorageService.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/TileConv/TileConv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/TileConv/TileConv.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/TileConv/TileConv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/TileConv/TileConv.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/Time/DateStrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/Time/DateStrings.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/Time/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/Time/Readme.txt -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/Time/Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/Time/Time.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/Time/Time.h: -------------------------------------------------------------------------------- 1 | #include "TimeLib.h" 2 | -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/Time/TimeLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/Time/TimeLib.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/Time/examples/TimeGPS/TimeGPS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/Time/examples/TimeGPS/TimeGPS.ino -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/Time/examples/TimeNTP/TimeNTP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/Time/examples/TimeNTP/TimeNTP.ino -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/Time/examples/TimeRTC/TimeRTC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/Time/examples/TimeRTC/TimeRTC.ino -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/Time/examples/TimeRTCLog/TimeRTCLog.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/Time/examples/TimeRTCLog/TimeRTCLog.ino -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/Time/examples/TimeRTCSet/TimeRTCSet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/Time/examples/TimeRTCSet/TimeRTCSet.ino -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/Time/examples/TimeSerial/TimeSerial.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/Time/examples/TimeSerial/TimeSerial.ino -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/Time/examples/TimeTeensy3/TimeTeensy3.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/Time/examples/TimeTeensy3/TimeTeensy3.ino -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/Time/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/Time/keywords.txt -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/Time/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/Time/library.json -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/Time/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/Time/library.properties -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/TonePlayer/TonePlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/TonePlayer/TonePlayer.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/TonePlayer/TonePlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/TonePlayer/TonePlayer.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/TrackFilter/TrackFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/TrackFilter/TrackFilter.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/TrackFilter/TrackLineFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/TrackFilter/TrackLineFilter.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/TrackFilter/TrackLineFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/TrackFilter/TrackLineFilter.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/TrackFilter/TrackPointFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/TrackFilter/TrackPointFilter.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/TrackFilter/TrackPointFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/TrackFilter/TrackPointFilter.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/lv_allocator/lv_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/lv_allocator/lv_allocator.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/lv_anim_label/lv_anim_label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/lv_anim_label/lv_anim_label.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/lv_anim_label/lv_anim_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/lv_anim_label/lv_anim_label.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/lv_ext/lv_anim_timeline_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/lv_ext/lv_anim_timeline_wrapper.c -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/lv_ext/lv_anim_timeline_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/lv_ext/lv_anim_timeline_wrapper.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/lv_ext/lv_obj_ext_func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/lv_ext/lv_obj_ext_func.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/lv_ext/lv_obj_ext_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/lv_ext/lv_obj_ext_func.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/lv_poly_line/lv_poly_line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/lv_poly_line/lv_poly_line.cpp -------------------------------------------------------------------------------- /2.Firmware/src/App/Utils/lv_poly_line/lv_poly_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Utils/lv_poly_line/lv_poly_line.h -------------------------------------------------------------------------------- /2.Firmware/src/App/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/App/Version.h -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/BLE/ChappieBLE.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/BLE/ChappieBLE.hpp -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Button/Button/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Button/Button/Button.cpp -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Button/Button/Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Button/Button/Button.h -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Button/Button/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Button/Button/README.md -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Button/EmmaButton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Button/EmmaButton.hpp -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Buzzer/EmmaBuzzer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Buzzer/EmmaBuzzer.hpp -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Buzzer/Melody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Buzzer/Melody.cpp -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Buzzer/Melody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Buzzer/Melody.h -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/CTP/ChappieCTP.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/CTP/ChappieCTP.hpp -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/ChappieCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/ChappieCore.cpp -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/ChappieCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/ChappieCore.h -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/ChappieCore_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/ChappieCore_config.h -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/ENV/ChappieENV.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/ENV/ChappieENV.hpp -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/GPS/ChappieGPS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/GPS/ChappieGPS.hpp -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/IMU/ChappieIMU.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/IMU/ChappieIMU.hpp -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Lvgl/ChappieLvgl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Lvgl/ChappieLvgl.hpp -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Lvgl/LGFX_ChappieCore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Lvgl/LGFX_ChappieCore.hpp -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Lvgl/demos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Lvgl/demos/README.md -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Lvgl/demos/benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Lvgl/demos/benchmark/README.md -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Lvgl/demos/benchmark/lv_demo_benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Lvgl/demos/benchmark/lv_demo_benchmark.c -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Lvgl/demos/benchmark/lv_demo_benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Lvgl/demos/benchmark/lv_demo_benchmark.h -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Lvgl/demos/keypad_encoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Lvgl/demos/keypad_encoder/README.md -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Lvgl/demos/lv_demos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Lvgl/demos/lv_demos.h -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Lvgl/demos/lv_demos.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Lvgl/demos/lv_demos.mk -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Lvgl/demos/stress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Lvgl/demos/stress/README.md -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Lvgl/demos/stress/lv_demo_stress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Lvgl/demos/stress/lv_demo_stress.c -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Lvgl/demos/stress/lv_demo_stress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Lvgl/demos/stress/lv_demo_stress.h -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Lvgl/demos/widgets/assets/img_clothes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Lvgl/demos/widgets/assets/img_clothes.c -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Lvgl/demos/widgets/assets/img_lvgl_logo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Lvgl/demos/widgets/assets/img_lvgl_logo.c -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Lvgl/demos/widgets/lv_demo_widgets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Lvgl/demos/widgets/lv_demo_widgets.c -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Lvgl/demos/widgets/lv_demo_widgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Lvgl/demos/widgets/lv_demo_widgets.h -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Lvgl/demos/widgets/lv_demo_widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Lvgl/demos/widgets/lv_demo_widgets.py -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Lvgl/lv_conf_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Lvgl/lv_conf_template.h -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Lvgl/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Lvgl/lvgl.h -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Lvgl/porting/lv_port_disp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Lvgl/porting/lv_port_disp.cpp -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Lvgl/porting/lv_port_disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Lvgl/porting/lv_port_disp.h -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Lvgl/porting/lv_port_fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Lvgl/porting/lv_port_fs.cpp -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Lvgl/porting/lv_port_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Lvgl/porting/lv_port_fs.h -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Lvgl/porting/lv_port_indev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Lvgl/porting/lv_port_indev.cpp -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Lvgl/porting/lv_port_indev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Lvgl/porting/lv_port_indev.h -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/MAG/ChappieMAG.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/MAG/ChappieMAG.hpp -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Mic/EmmaMicPDM.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Mic/EmmaMicPDM.hpp -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Mic/Mic/Mic_Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Mic/Mic/Mic_Class.cpp -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Mic/Mic/Mic_Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Mic/Mic/Mic_Class.hpp -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Power/ChappiePower.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Power/ChappiePower.hpp -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/RGBLED/EmmaRGBLED.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/RGBLED/EmmaRGBLED.hpp -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/SD/ChappieSD.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/SD/ChappieSD.hpp -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/SmartAssistantAPI/BaiduASR/BaiduASR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/SmartAssistantAPI/BaiduASR/BaiduASR.cpp -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/SmartAssistantAPI/BaiduASR/BaiduASR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/SmartAssistantAPI/BaiduASR/BaiduASR.h -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/SmartAssistantAPI/BaiduTTS/BaiduTTS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/SmartAssistantAPI/BaiduTTS/BaiduTTS.cpp -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/SmartAssistantAPI/BaiduTTS/BaiduTTS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/SmartAssistantAPI/BaiduTTS/BaiduTTS.h -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/SmartAssistantAPI/MiniMaxLlm/MiniMaxLlm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/SmartAssistantAPI/MiniMaxLlm/MiniMaxLlm.cpp -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/SmartAssistantAPI/MiniMaxLlm/MiniMaxLlm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/SmartAssistantAPI/MiniMaxLlm/MiniMaxLlm.h -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/SmartAssistantAPI/SmartAssistantAPI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/SmartAssistantAPI/SmartAssistantAPI.hpp -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Speaker/EmmaSpeaker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Speaker/EmmaSpeaker.hpp -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Speaker/Speaker/Speaker_Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Speaker/Speaker/Speaker_Class.cpp -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Speaker/Speaker/Speaker_Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Speaker/Speaker/Speaker_Class.hpp -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Utility/Adafruit_BMP280/Adafruit_BMP280.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Utility/Adafruit_BMP280/Adafruit_BMP280.cpp -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Utility/Adafruit_BMP280/Adafruit_BMP280.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Utility/Adafruit_BMP280/Adafruit_BMP280.h -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Utility/Adafruit_BMP280/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Utility/Adafruit_BMP280/README.md -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Utility/Adafruit_BusIO/Adafruit_I2CDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Utility/Adafruit_BusIO/Adafruit_I2CDevice.h -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Utility/Adafruit_BusIO/Adafruit_SPIDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Utility/Adafruit_BusIO/Adafruit_SPIDevice.h -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Utility/Adafruit_BusIO/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Utility/Adafruit_BusIO/LICENSE -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Utility/Adafruit_BusIO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Utility/Adafruit_BusIO/README.md -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Utility/BM8563/I2C_BM8563.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Utility/BM8563/I2C_BM8563.cpp -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Utility/BM8563/I2C_BM8563.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Utility/BM8563/I2C_BM8563.h -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Utility/BM8563/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Utility/BM8563/README.md -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Utility/I2Cdev/I2Cdev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Utility/I2Cdev/I2Cdev.cpp -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Utility/I2Cdev/I2Cdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Utility/I2Cdev/I2Cdev.h -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Utility/MPU6050/MPU6050.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Utility/MPU6050/MPU6050.cpp -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Utility/MPU6050/MPU6050.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Utility/MPU6050/MPU6050.h -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Utility/MPU6050/MPU6050_6Axis_MotionApps20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Utility/MPU6050/MPU6050_6Axis_MotionApps20.h -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Utility/MPU6050/MPU6050_9Axis_MotionApps41.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Utility/MPU6050/MPU6050_9Axis_MotionApps41.h -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Utility/MPU6050/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Utility/MPU6050/README.md -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/Utility/MPU6050/helper_3dmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/Utility/MPU6050/helper_3dmath.h -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/WiFi/ConfigWiFi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/WiFi/ConfigWiFi.cpp -------------------------------------------------------------------------------- /2.Firmware/src/ChappieCore/WiFi/ConfigWiFi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/ChappieCore/WiFi/ConfigWiFi.h -------------------------------------------------------------------------------- /2.Firmware/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/src/main.cpp -------------------------------------------------------------------------------- /2.Firmware/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/2.Firmware/test/README -------------------------------------------------------------------------------- /3.Models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/3.Models/README.md -------------------------------------------------------------------------------- /3.Models/button.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/3.Models/button.stl -------------------------------------------------------------------------------- /3.Models/shell.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/3.Models/shell.stl -------------------------------------------------------------------------------- /4.Pics/XMind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/4.Pics/XMind.png -------------------------------------------------------------------------------- /4.Pics/frontCover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/4.Pics/frontCover.jpg -------------------------------------------------------------------------------- /4.Pics/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/4.Pics/map.png -------------------------------------------------------------------------------- /4.Pics/pic1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/4.Pics/pic1.jpg -------------------------------------------------------------------------------- /4.Pics/pic2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/4.Pics/pic2.jpg -------------------------------------------------------------------------------- /4.Pics/ssa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/4.Pics/ssa.png -------------------------------------------------------------------------------- /5.Resource/MicroSDcard/.SystemSaveBackup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/5.Resource/MicroSDcard/.SystemSaveBackup.json -------------------------------------------------------------------------------- /5.Resource/MicroSDcard/FONT/font_smileysd_16.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/5.Resource/MicroSDcard/FONT/font_smileysd_16.bin -------------------------------------------------------------------------------- /5.Resource/MicroSDcard/MAP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/5.Resource/MicroSDcard/MAP/README.md -------------------------------------------------------------------------------- /5.Resource/MicroSDcard/MAP/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/5.Resource/MicroSDcard/MAP/image.png -------------------------------------------------------------------------------- /5.Resource/MicroSDcard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/5.Resource/MicroSDcard/README.md -------------------------------------------------------------------------------- /5.Resource/MicroSDcard/SystemSave.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/5.Resource/MicroSDcard/SystemSave.json -------------------------------------------------------------------------------- /5.Resource/MicroSDcard/TilesConverterForLVGL.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/5.Resource/MicroSDcard/TilesConverterForLVGL.exe -------------------------------------------------------------------------------- /5.Resource/SmartAssistant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/5.Resource/SmartAssistant/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangKeLiang0627/EasyGPS/HEAD/README.md --------------------------------------------------------------------------------