├── ArduinoRTL00.gif ├── RAK476.gif ├── README.md ├── RTL8195AM.gif ├── SD_card.gif └── development └── rtl87xx ├── boards.txt ├── cores └── arduino │ ├── Arduino.h │ ├── Client.h │ ├── CountingStream.h │ ├── FunctionPointer.h │ ├── HardwareSerial.h │ ├── IPAddress.cpp │ ├── IPAddress.h │ ├── LOGUARTClass.cpp │ ├── LOGUARTClass.h │ ├── PowerManagement.cpp │ ├── PowerManagement.h │ ├── Print.cpp │ ├── Print.h │ ├── Printable.h │ ├── Reset.h │ ├── RingBuffer.cpp │ ├── RingBuffer.h │ ├── Server.h │ ├── Stream.cpp │ ├── Stream.h │ ├── Tone.cpp │ ├── Udp.h │ ├── WCharacter.h │ ├── WInterrupts.c │ ├── WInterrupts.h │ ├── WMath.cpp │ ├── WMath.h │ ├── WString.cpp │ ├── WString.h │ ├── WebSocketClient.cpp │ ├── WebSocketClient.h │ ├── ard_socket.c │ ├── ard_socket.h │ ├── ard_ssl.h │ ├── avr │ ├── dtostrf.c │ ├── dtostrf.h │ ├── interrupt.h │ └── pgmspace.h │ ├── b64.cpp │ ├── b64.h │ ├── binary.h │ ├── bitband_io.c │ ├── bitband_io.h │ ├── cxxabi-compat.cpp │ ├── debug.h │ ├── hooks.c │ ├── itoa.c │ ├── itoa.h │ ├── libwsclient.h │ ├── lwip_info.c │ ├── main.cpp │ ├── netbios.h │ ├── rtl8195a │ └── rtl_libc.h │ ├── rtl_sys.cpp │ ├── server_drv.cpp │ ├── server_drv.h │ ├── spiffs │ ├── LICENSE │ ├── README.md │ ├── TECH_SPEC │ ├── TODO │ ├── spiffs.h │ ├── spiffs_cache.c │ ├── spiffs_check.c │ ├── spiffs_config.h │ ├── spiffs_gc.c │ ├── spiffs_hydrogen.c │ ├── spiffs_nucleus.c │ └── spiffs_nucleus.h │ ├── ssl_drv.cpp │ ├── ssl_drv.h │ ├── syscalls.h │ ├── uvc │ ├── uvc_drv.c │ └── uvc_drv.h │ ├── wifi_drv.cpp │ ├── wifi_drv.h │ ├── wiring.c │ ├── wiring.h │ ├── wiring_analog.c │ ├── wiring_analog.h │ ├── wiring_constants.h │ ├── wiring_digital.c │ ├── wiring_digital.h │ ├── wiring_os.c │ ├── wiring_os.h │ ├── wiring_private.h │ ├── wiring_pulse.cpp │ ├── wiring_pulse.h │ ├── wiring_shift.c │ ├── wiring_shift.h │ ├── wiring_watchdog.c │ ├── wiring_watchdog.h │ ├── wl_definitions.h │ ├── wl_types.h │ └── wsclient_api.h ├── libraries ├── Analog │ ├── AmebaServo.cpp │ ├── AmebaServo.h │ ├── examples │ │ ├── DACSinWave │ │ │ └── DACSinWave.ino │ │ ├── ServoSweep │ │ │ └── ServoSweep.ino │ │ └── TonePlayMelody │ │ │ └── TonePlayMelody.ino │ ├── keywords.txt │ └── library.properties ├── Fatfs │ ├── SdFatFile.cpp │ ├── SdFatFile.h │ ├── SdFatFs.cpp │ ├── SdFatFs.h │ ├── examples │ │ ├── create_folder │ │ │ └── create_folder.ino │ │ ├── file_read_write │ │ │ └── file_read_write.ino │ │ ├── get_file_attribute │ │ │ └── get_file_attribute.ino │ │ ├── last_modified_time │ │ │ └── last_modified_time.ino │ │ ├── list_root_files │ │ │ └── list_root_files.ino │ │ ├── speed_file_read │ │ │ └── speed_file_read.ino │ │ └── time_lapse_photography │ │ │ └── time_lapse_photography.ino │ └── library.properties ├── FlashMemory │ ├── FlashEEP.cpp │ ├── FlashEEP.h │ ├── FlashMemory.cpp │ ├── FlashMemory.h │ ├── examples │ │ ├── FlashEEPBasic │ │ │ └── FlashEEPBasic.ino │ │ ├── FlashMemoryBasic │ │ │ └── FlashMemoryBasic.ino │ │ └── ReadWriteOneWord │ │ │ └── ReadWriteOneWord.ino │ ├── keywords.txt │ └── library.properties ├── GPIO │ ├── DHT.cpp │ ├── DHT.h │ ├── examples │ │ ├── DHTtester │ │ │ └── DHTtester.ino │ │ ├── HCSR04Ultrasonic │ │ │ └── HCSR04Ultrasonic.ino │ │ ├── InterruptCtrlLed │ │ │ └── InterruptCtrlLed.ino │ │ └── Test_GPIO_out │ │ │ └── Test_GPIO_out.ino │ ├── keywords.txt │ └── library.properties ├── GTimer │ ├── GTimer.cpp │ ├── GTimer.h │ ├── examples │ │ ├── gtimer_api │ │ │ └── gtimer_api.ino │ │ ├── timer_oneshot │ │ │ └── timer_oneshot.ino │ │ ├── timer_periodical │ │ │ └── timer_periodical.ino │ │ └── us_ticker │ │ │ └── us_ticker.ino │ ├── keywords.txt │ └── library.properties ├── Http │ ├── HttpClient.cpp │ ├── HttpClient.h │ ├── b64.cpp │ ├── b64.h │ ├── examples │ │ └── SimpleHttpExample │ │ │ └── SimpleHttpExample.ino │ ├── keywords.txt │ └── library.properties ├── IRSendRecv │ ├── IRSendRev.cpp │ ├── IRSendRev.h │ ├── examples │ │ ├── recv │ │ │ └── recv.ino │ │ └── send │ │ │ └── send.ino │ ├── keywords.txt │ └── library.properties ├── JPEGDecoder │ ├── JPEGDecoder.cpp │ ├── JPEGDecoder.h │ ├── README.md │ ├── examples │ │ └── TFT_jpg │ │ │ ├── TFT_jpg.ino │ │ │ ├── test.jpg │ │ │ ├── testjpg1.jpg │ │ │ ├── testjpg2.jpg │ │ │ ├── tstjpg.h │ │ │ ├── tstjpg1.h │ │ │ └── tstjpg2.h │ ├── keywords.txt │ ├── library.properties │ ├── picojpeg.c │ └── picojpeg.h ├── MDNS │ ├── AmebaMDNS.cpp │ ├── AmebaMDNS.h │ ├── examples │ │ └── mdns_on_arduino_ide │ │ │ └── mdns_on_arduino_ide.ino │ ├── keywords.txt │ └── library.properties ├── MQTTClient │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGES.txt │ ├── LICENSE.txt │ ├── README.md │ ├── examples │ │ ├── amazon_awsiot_basic │ │ │ └── amazon_awsiot_basic.ino │ │ ├── amazon_awsiot_with_ack │ │ │ └── amazon_awsiot_with_ack.ino │ │ ├── azure_iot_hub_basic │ │ │ └── azure_iot_hub_basic.ino │ │ ├── ibm_watson_iot_quickstart │ │ │ └── ibm_watson_iot_quickstart.ino │ │ ├── lass_basic │ │ │ └── lass_basic.ino │ │ ├── lass_for_dht_plus_ps_nfc │ │ │ └── lass_for_dht_plus_ps_nfc.ino │ │ ├── mqtt_auth │ │ │ └── mqtt_auth.ino │ │ ├── mqtt_basic │ │ │ └── mqtt_basic.ino │ │ ├── mqtt_publish_in_callback │ │ │ └── mqtt_publish_in_callback.ino │ │ └── mqtt_reconnect_nonblocking │ │ │ └── mqtt_reconnect_nonblocking.ino │ ├── keywords.txt │ ├── library.properties │ ├── src │ │ ├── PubSubClient.cpp │ │ └── PubSubClient.h │ └── tests │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README.md │ │ ├── src │ │ ├── connect_spec.cpp │ │ ├── keepalive_spec.cpp │ │ ├── lib │ │ │ ├── Arduino.h │ │ │ ├── BDDTest.cpp │ │ │ ├── BDDTest.h │ │ │ ├── Buffer.cpp │ │ │ ├── Buffer.h │ │ │ ├── Client.h │ │ │ ├── IPAddress.cpp │ │ │ ├── IPAddress.h │ │ │ ├── ShimClient.cpp │ │ │ ├── ShimClient.h │ │ │ ├── Stream.cpp │ │ │ ├── Stream.h │ │ │ └── trace.h │ │ ├── publish_spec.cpp │ │ ├── receive_spec.cpp │ │ └── subscribe_spec.cpp │ │ ├── testcases │ │ ├── __init__.py │ │ ├── mqtt_basic.py │ │ ├── mqtt_publish_in_callback.py │ │ └── settings.py │ │ └── testsuite.py ├── NFC │ ├── NfcTag.cpp │ ├── NfcTag.h │ ├── examples │ │ ├── GetTagContent │ │ │ └── GetTagContent.ino │ │ ├── GooglePlayApp │ │ │ └── GooglePlayApp.ino │ │ ├── NFC_Web_Led │ │ │ └── NFC_Web_Led.ino │ │ ├── StoreTagContent │ │ │ └── StoreTagContent.ino │ │ ├── UpdateTagContent │ │ │ └── UpdateTagContent.ino │ │ ├── UriWebPage │ │ │ └── UriWebPage.ino │ │ └── VCardContact │ │ │ └── VCardContact.ino │ ├── keywords.txt │ └── library.properties ├── OTA │ ├── OTA.cpp │ ├── OTA.h │ ├── examples │ │ ├── ota_ap │ │ │ └── ota_ap.ino │ │ ├── ota_basic │ │ │ └── ota_basic.ino │ │ └── ota_non_block │ │ │ └── ota_non_block.ino │ ├── keywords.txt │ └── library.properties ├── PowerSave │ ├── PowerSave.h │ ├── examples │ │ ├── DeepSleepBasic │ │ │ └── DeepSleepBasic.ino │ │ ├── DeepSleepWithDHT │ │ │ └── DeepSleepWithDHT.ino │ │ ├── DeepSleepWithDHTLass │ │ │ └── DeepSleepWithDHTLass.ino │ │ ├── DeepSleepWithDHTUdp │ │ │ └── DeepSleepWithDHTUdp.ino │ │ ├── SleepBasic │ │ │ └── SleepBasic.ino │ │ ├── SleepWithDHTUdpServ │ │ │ └── SleepWithDHTUdpServ.ino │ │ └── SleepWithWifiIdle │ │ │ └── SleepWithWifiIdle.ino │ ├── keywords.txt │ └── library.properties ├── RTL00MP3 │ ├── D.dat │ ├── LICENSES │ ├── RTL00MP3.cpp │ ├── RTL00MP3.h │ ├── align.c │ ├── align.h │ ├── bit.c │ ├── bit.h │ ├── c_types.h │ ├── config.h │ ├── decoder.c │ ├── decoder.h │ ├── examples │ │ └── WiFiMP3 │ │ │ └── WiFiMP3.ino │ ├── fixed.c │ ├── fixed.h │ ├── frame.c │ ├── frame.h │ ├── global.h │ ├── hal_gdma.h │ ├── huffman.c │ ├── huffman.h │ ├── i2s_freertos.c │ ├── i2s_freertos.h │ ├── imdct_s.dat │ ├── keywords.txt │ ├── layer3.c │ ├── layer3.h │ ├── library.properties │ ├── mad.h │ ├── mad_version.c │ ├── mad_version.h │ ├── playerconfig.h │ ├── qc_table.dat │ ├── rq_table.dat │ ├── rtl_common.h │ ├── rtlmp3main.c │ ├── sf_table.dat │ ├── spiram_fifo.c │ ├── spiram_fifo.h │ ├── stream.c │ ├── stream.h │ ├── synth.c │ ├── synth.h │ ├── synth_mono.c.none │ ├── timer.c │ └── timer.h ├── SHTxx │ ├── README.txt │ ├── SHTxx.cpp │ ├── SHTxx.h │ ├── examples │ │ ├── NonBlocking │ │ │ └── NonBlocking.ino │ │ ├── PollingReady │ │ │ └── PollingReady.ino │ │ └── SimpleSensirion │ │ │ └── SimpleSensirion.ino │ └── keywords.txt ├── SPI │ ├── AmebaILI9341.cpp │ ├── AmebaILI9341.h │ ├── Raw_ST7735.cpp │ ├── Raw_ST7735.h │ ├── SPI.cpp │ ├── SPI.h │ ├── examples │ │ ├── ADNS3080 │ │ │ ├── ADNS3080 │ │ │ │ └── ADNS3080.ino │ │ │ └── gpl3.txt │ │ ├── ILI9341_TFT_LCD_basic │ │ │ └── ILI9341_TFT_LCD_basic.ino │ │ └── PM25_on_ILI9341_TFT_LCD │ │ │ └── PM25_on_ILI9341_TFT_LCD.ino │ ├── font5x7.h │ ├── keywords.txt │ └── library.properties ├── SdSimplyFtp │ ├── examples │ │ └── SdFtp │ │ │ └── SdFtp.ino │ ├── ftps.c │ ├── ftps.h │ ├── ftpsser.c │ └── library.properties ├── SoftwareSerial │ ├── Adafruit_GPS.cpp │ ├── Adafruit_GPS.h │ ├── Adafruit_GPS_README.txt │ ├── PMS3003.cpp │ ├── PMS3003.h │ ├── SoftwareSerial.cpp │ ├── SoftwareSerial.h │ ├── examples │ │ ├── Adafruit_GPS_parsing │ │ │ └── Adafruit_GPS_parsing.ino │ │ ├── PMS3003AirQuality │ │ │ └── PMS3003AirQuality.ino │ │ ├── SoftwareSerialDetailSetting │ │ │ └── SoftwareSerialDetailSetting.ino │ │ ├── SoftwareSerialExample │ │ │ └── SoftwareSerialExample.ino │ │ └── SoftwareSerialIrqCallback │ │ │ └── SoftwareSerialIrqCallback.ino │ ├── keywords.txt │ └── library.properties ├── Spiffs │ ├── Spiffs.cpp │ ├── Spiffs.h │ ├── SpiffsImpl.h │ ├── examples │ │ └── SPIFFStest │ │ │ └── SPIFFStest.ino │ ├── library.properties │ ├── spiffs_api.cpp │ ├── spiffs_api.h │ └── spiffs_hal.cpp ├── UVC │ ├── UVC.cpp │ ├── UVC.h │ ├── keywords.txt │ ├── library.properties │ ├── uvc_basic │ │ └── uvc_basic.ino │ ├── uvc_jpeg_capture │ │ ├── uvc_jpeg_capture.ino │ │ └── windows │ │ │ ├── jpeg_tcp_server.c │ │ │ └── jpeg_tcp_server.exe │ ├── uvc_send_video_frames │ │ ├── uvc_send_video_frames.ino │ │ └── windows │ │ │ ├── yuvplayer.exe │ │ │ ├── yuyv_tcp_server.c │ │ │ └── yuyv_tcp_server.exe │ └── uvc_with_ap_mode │ │ └── uvc_with_ap_mode.ino ├── WiFi │ ├── examples │ │ ├── ConnectNoEncryption │ │ │ └── ConnectNoEncryption.ino │ │ ├── ConnectWithWEP │ │ │ └── ConnectWithWEP.ino │ │ ├── ConnectWithWPA │ │ │ └── ConnectWithWPA.ino │ │ ├── Facebook │ │ │ ├── facebook_feed_publish │ │ │ │ └── facebook_feed_publish.ino │ │ │ └── facebook_pm25_notifier │ │ │ │ └── facebook_pm25_notifier.ino │ │ ├── ScanNetworks │ │ │ └── ScanNetworks.ino │ │ ├── SimpleServerWiFi │ │ │ └── SimpleServerWiFi.ino │ │ ├── SimpleWebServerWiFi │ │ │ └── SimpleWebServerWiFi.ino │ │ ├── WebSocketClient │ │ │ └── WebSocketClient.ino │ │ ├── WiFiAPMode │ │ │ └── WiFiAPMode.ino │ │ ├── WiFiSSLClient │ │ │ └── WiFiSSLClient.ino │ │ ├── WiFiUdpNtpClient │ │ │ └── WiFiUdpNtpClient.ino │ │ ├── WiFiUdpSendReceiveString │ │ │ └── WiFiUdpSendReceiveString.ino │ │ ├── WiFiWebClient │ │ │ └── WiFiWebClient.ino │ │ ├── WiFiWebServer │ │ │ └── WiFiWebServer.ino │ │ └── misc │ │ │ ├── CalculateUdpReceiveDelay │ │ │ └── CalculateUdpReceiveDelay.ino │ │ │ ├── CalculateUdpReceiveTimeout │ │ │ └── CalculateUdpReceiveTimeout.ino │ │ │ └── CalculateUdpSendDelay │ │ │ └── CalculateUdpSendDelay.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── WiFi.cpp │ │ ├── WiFi.h │ │ ├── WiFiClient.cpp │ │ ├── WiFiClient.h │ │ ├── WiFiSSLClient.cpp │ │ ├── WiFiSSLClient.h │ │ ├── WiFiServer.cpp │ │ ├── WiFiServer.h │ │ ├── WiFiUdp.cpp │ │ └── WiFiUdp.h ├── Wire │ ├── I2CIO.cpp │ ├── I2CIO.h │ ├── LCD.cpp │ ├── LCD.h │ ├── LICENCE_LCD.txt │ ├── LiquidCrystal_I2C.cpp │ ├── LiquidCrystal_I2C.h │ ├── Wire.cpp │ ├── Wire.h │ ├── examples │ │ ├── LcdHelloWorld │ │ │ └── LcdHelloWorld.ino │ │ ├── MLX90614 │ │ │ └── MLX90614.ino │ │ ├── master_reader │ │ │ └── master_reader.ino │ │ └── master_writer │ │ │ └── master_writer.ino │ ├── keywords.txt │ └── library.properties ├── Xively │ ├── CountingStream.h │ ├── Xively.h │ ├── XivelyClient.cpp │ ├── XivelyClient.h │ ├── XivelyDatastream.cpp │ ├── XivelyDatastream.h │ ├── XivelyFeed.cpp │ ├── XivelyFeed.h │ ├── examples │ │ ├── WiFiDatastreamDownload │ │ │ └── WiFiDatastreamDownload.ino │ │ ├── WiFiDatastreamUpload │ │ │ └── WiFiDatastreamUpload.ino │ │ ├── WiFiMultipleDatastreamUpload │ │ │ └── WiFiMultipleDatastreamUpload.ino │ │ └── WiFiUploadPM2.5Data │ │ │ └── WiFiUploadPM2.5Data.ino │ ├── keywords.txt │ └── library.properties └── ysPNG │ ├── HttpsPngWeatherInformer │ └── HttpsPngWeatherInformer.ino │ ├── PNG2TFT │ └── PNG2TFT.ino │ ├── damp_c.py │ ├── library.properties │ ├── test.png │ ├── yspng.cpp │ └── yspng.h ├── platform.txt ├── programmers.txt ├── system ├── libs │ ├── lib_lwip.a │ ├── lib_mdns.a │ ├── lib_mmf.a │ ├── lib_p2p.a │ ├── lib_rtl8195.a │ ├── lib_rtl8710.a │ ├── lib_rtl8711am.a │ ├── lib_rtlstd.a │ ├── lib_rtsp.a │ ├── lib_sdcard_v2.a │ ├── lib_ssl.a │ ├── lib_usbd.a │ ├── lib_usbh.a │ ├── lib_uvc.a │ ├── lib_websocket.a │ ├── lib_wlan.a │ ├── lib_wps.a │ └── lib_xmodem.a └── sdk │ ├── component │ ├── common │ │ ├── api │ │ │ ├── at_cmd │ │ │ │ ├── atcmd_lwip.h │ │ │ │ ├── atcmd_sys.h │ │ │ │ ├── atcmd_wifi.h │ │ │ │ └── log_service.h │ │ │ ├── lwip_netconf.h │ │ │ ├── network │ │ │ │ └── include │ │ │ │ │ ├── main.h │ │ │ │ │ ├── main_test.h │ │ │ │ │ ├── netconf.h │ │ │ │ │ ├── rtl8195a_it.h │ │ │ │ │ └── util.h │ │ │ ├── platform │ │ │ │ ├── dlist.h │ │ │ │ └── platform_stdlib.h │ │ │ ├── wifi │ │ │ │ ├── rtw_wowlan │ │ │ │ │ └── wifi_wowlan.h │ │ │ │ ├── rtw_wpa_supplicant │ │ │ │ │ └── src │ │ │ │ │ │ ├── utils │ │ │ │ │ │ ├── os.h │ │ │ │ │ │ └── rom │ │ │ │ │ │ │ └── rom_wps_os.h │ │ │ │ │ │ └── wps │ │ │ │ │ │ └── wps_defs.h │ │ │ │ ├── wifi_conf.h │ │ │ │ ├── wifi_conf.h.1 │ │ │ │ ├── wifi_ind.h │ │ │ │ ├── wifi_simple_config.h │ │ │ │ ├── wifi_simple_config_parser.h │ │ │ │ └── wifi_util.h │ │ │ └── wifi_interactive_ext.h │ │ ├── application │ │ │ ├── google │ │ │ │ └── google_nest.h │ │ │ ├── uart_adapter │ │ │ │ └── uart_adapter.h │ │ │ ├── wigadget │ │ │ │ ├── cloud_link.h │ │ │ │ ├── shtc1.h │ │ │ │ └── wigadget.h │ │ │ └── xmodem │ │ │ │ ├── xmodem.h │ │ │ │ ├── xmport_loguart.h │ │ │ │ └── xmport_uart.h │ │ ├── audio │ │ │ └── g711_codec.h │ │ ├── drivers │ │ │ ├── ethernet_mii │ │ │ │ └── ethernet_mii.h │ │ │ ├── i2s │ │ │ │ └── sgtl5000.h │ │ │ ├── sdio │ │ │ │ └── realtek │ │ │ │ │ └── sdio_host │ │ │ │ │ └── inc │ │ │ │ │ ├── sd.h │ │ │ │ │ └── sdio_host.h │ │ │ ├── usb_class │ │ │ │ ├── device │ │ │ │ │ ├── class │ │ │ │ │ │ ├── ethernet │ │ │ │ │ │ │ └── inc │ │ │ │ │ │ │ │ ├── eth_debug.h │ │ │ │ │ │ │ │ └── usb_ethernet.h │ │ │ │ │ │ └── msc │ │ │ │ │ │ │ └── inc │ │ │ │ │ │ │ ├── usbd_msc.h │ │ │ │ │ │ │ ├── usbd_msc_config.h │ │ │ │ │ │ │ ├── usbd_msc_desc.h │ │ │ │ │ │ │ └── usbd_scsi.h │ │ │ │ │ └── core │ │ │ │ │ │ └── inc │ │ │ │ │ │ ├── gadget_debug.h │ │ │ │ │ │ ├── os_wrapper.h │ │ │ │ │ │ ├── usb_composite.h │ │ │ │ │ │ ├── usb_config.h │ │ │ │ │ │ └── usb_transport.h │ │ │ │ └── host │ │ │ │ │ ├── storage │ │ │ │ │ └── inc │ │ │ │ │ │ ├── quirks │ │ │ │ │ │ └── quirks.h │ │ │ │ │ │ ├── scatterlist │ │ │ │ │ │ └── scatterlist.h │ │ │ │ │ │ ├── scsi │ │ │ │ │ │ ├── dma_direction.h │ │ │ │ │ │ ├── scsi.h │ │ │ │ │ │ ├── scsi_cmnd.h │ │ │ │ │ │ └── scsi_eh.h │ │ │ │ │ │ ├── storage.h │ │ │ │ │ │ ├── transport.h │ │ │ │ │ │ ├── unusual_devs.h │ │ │ │ │ │ ├── unusual_usbat.h │ │ │ │ │ │ ├── us_debug.h │ │ │ │ │ │ ├── us_initializers.h │ │ │ │ │ │ ├── us_intf.h │ │ │ │ │ │ ├── us_os_wrap_via_osdep_api.h │ │ │ │ │ │ ├── us_scsi.h │ │ │ │ │ │ ├── us_strings.h │ │ │ │ │ │ ├── us_transport.h │ │ │ │ │ │ ├── us_usb.h │ │ │ │ │ │ └── us_usual.h │ │ │ │ │ └── uvc │ │ │ │ │ └── inc │ │ │ │ │ ├── mjpeg │ │ │ │ │ └── mjpeg_api.h │ │ │ │ │ ├── uapi_uvcvideo.h │ │ │ │ │ ├── uvc_intf.h │ │ │ │ │ ├── uvc_os_wrap_via_osdep_api.h │ │ │ │ │ ├── uvcvideo.h │ │ │ │ │ └── video.h │ │ │ └── wlan │ │ │ │ └── realtek │ │ │ │ ├── include │ │ │ │ ├── autoconf.h │ │ │ │ ├── drv_conf.h │ │ │ │ ├── rom_aes.h │ │ │ │ ├── rtw_debug.h │ │ │ │ ├── wifi_constants.h │ │ │ │ └── wifi_structures.h │ │ │ │ └── src │ │ │ │ └── osdep │ │ │ │ ├── freertos │ │ │ │ └── wrapper.h │ │ │ │ ├── lwip_intf.h │ │ │ │ ├── skbuff.h │ │ │ │ ├── wireless.h │ │ │ │ └── wlan_intf.h │ │ ├── example │ │ │ ├── example_entry.h │ │ │ ├── uvc │ │ │ │ ├── example_mjpeg.h │ │ │ │ ├── example_uvc.h │ │ │ │ └── readme.txt │ │ │ ├── wlan_fast_connect │ │ │ │ └── example_wlan_fast_connect.h │ │ │ └── xml │ │ │ │ ├── example_xml.h │ │ │ │ └── readme.txt │ │ ├── file_system │ │ │ └── fatfs │ │ │ │ ├── disk_if │ │ │ │ └── inc │ │ │ │ │ ├── atadrive.h │ │ │ │ │ ├── sdcard.h │ │ │ │ │ └── usbdisk.h │ │ │ │ ├── fatfs_ext │ │ │ │ └── inc │ │ │ │ │ ├── ff_api.h │ │ │ │ │ ├── ff_debug.h │ │ │ │ │ └── ff_driver.h │ │ │ │ └── r0.10c │ │ │ │ └── include │ │ │ │ ├── diskio.h │ │ │ │ ├── ff.h │ │ │ │ ├── ffconf.h │ │ │ │ └── integer.h │ │ ├── mbed │ │ │ ├── api │ │ │ │ ├── error.h │ │ │ │ ├── mbed_assert.h │ │ │ │ ├── rtc_time.h │ │ │ │ └── wait_api.h │ │ │ ├── common │ │ │ │ ├── .gitkeep │ │ │ │ └── Makefile │ │ │ ├── hal │ │ │ │ ├── analogin_api.h │ │ │ │ ├── analogout_api.h │ │ │ │ ├── can_api.h │ │ │ │ ├── ethernet_api.h │ │ │ │ ├── gpio_api.h │ │ │ │ ├── gpio_irq_api.h │ │ │ │ ├── i2c_api.h │ │ │ │ ├── pinmap.h │ │ │ │ ├── port_api.h │ │ │ │ ├── pwmout_api.h │ │ │ │ ├── rtc_api.h │ │ │ │ ├── serial_api.h │ │ │ │ ├── sleep_api.h │ │ │ │ ├── spi_api.h │ │ │ │ └── us_ticker_api.h │ │ │ ├── hal_ext │ │ │ │ ├── dma_api.h │ │ │ │ ├── efuse_api.h │ │ │ │ ├── ethernet_ex_api.h │ │ │ │ ├── ex_api.h │ │ │ │ ├── flash_api.h │ │ │ │ ├── flash_eep.h │ │ │ │ ├── gpio_ex_api.h │ │ │ │ ├── gpio_irq_ex_api.h │ │ │ │ ├── i2c_ex_api.h │ │ │ │ ├── i2s_api.h │ │ │ │ ├── log_uart_api.h │ │ │ │ ├── nfc_api.h │ │ │ │ ├── serial_ex_api.h │ │ │ │ ├── sleep_ex_api.h │ │ │ │ ├── spdio_api.h │ │ │ │ ├── spi_ex_api.h │ │ │ │ ├── sys_api.h │ │ │ │ └── wdt_api.h │ │ │ └── targets │ │ │ │ ├── cmsis │ │ │ │ └── rtl8195a │ │ │ │ └── hal │ │ │ │ └── rtl8195a │ │ │ │ ├── PeripheralNames.h │ │ │ │ ├── PinNames.h │ │ │ │ ├── PortNames.h │ │ │ │ ├── device.h │ │ │ │ ├── gpio_object.h │ │ │ │ ├── objects.h │ │ │ │ └── timer_api.h │ │ ├── media │ │ │ ├── codec │ │ │ │ ├── aac │ │ │ │ │ └── aac.h │ │ │ │ ├── avcodec.h │ │ │ │ ├── g711 │ │ │ │ │ └── g711.h │ │ │ │ ├── h264 │ │ │ │ │ └── h264.h │ │ │ │ └── mjpeg │ │ │ │ │ └── mjpeg.h │ │ │ ├── framework │ │ │ │ ├── mmf_common.h │ │ │ │ ├── mmf_sink.h │ │ │ │ ├── mmf_sink_modules │ │ │ │ │ └── mmf_sink_list.h │ │ │ │ ├── mmf_source.h │ │ │ │ └── mmf_source_modules │ │ │ │ │ ├── driver │ │ │ │ │ └── geo │ │ │ │ │ │ └── patch_uvc_geo.h │ │ │ │ │ ├── mmf_source_i2s_file.h │ │ │ │ │ ├── mmf_source_list.h │ │ │ │ │ ├── sample_aac.h │ │ │ │ │ ├── sample_h264.h │ │ │ │ │ ├── sample_jpeg.h │ │ │ │ │ └── sample_pcmu.h │ │ │ └── muxer │ │ │ │ └── mp4_encap.h │ │ ├── network │ │ │ ├── dhcp │ │ │ │ └── dhcps.h │ │ │ ├── lwip │ │ │ │ └── lwip_v1.4.1 │ │ │ │ │ ├── CHANGELOG │ │ │ │ │ ├── COPYING │ │ │ │ │ ├── FILES │ │ │ │ │ ├── README │ │ │ │ │ ├── UPGRADING │ │ │ │ │ ├── doc │ │ │ │ │ ├── FILES │ │ │ │ │ ├── contrib.txt │ │ │ │ │ ├── rawapi.txt │ │ │ │ │ ├── savannah.txt │ │ │ │ │ ├── snmp_agent.txt │ │ │ │ │ └── sys_arch.txt │ │ │ │ │ ├── port │ │ │ │ │ ├── realtek │ │ │ │ │ │ ├── arch │ │ │ │ │ │ │ ├── bpstruct.h │ │ │ │ │ │ │ ├── cc.h │ │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ │ ├── epstruct.h │ │ │ │ │ │ │ ├── init.h │ │ │ │ │ │ │ ├── lib.h │ │ │ │ │ │ │ ├── perf.h │ │ │ │ │ │ │ └── sys_arch.h │ │ │ │ │ │ └── freertos │ │ │ │ │ │ │ ├── ethernetif.h │ │ │ │ │ │ │ └── sys_arch.h │ │ │ │ │ └── stm32f2x7 │ │ │ │ │ │ ├── arch │ │ │ │ │ │ ├── bpstruct.h │ │ │ │ │ │ ├── cc.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── epstruct.h │ │ │ │ │ │ ├── init.h │ │ │ │ │ │ ├── lib.h │ │ │ │ │ │ ├── perf.h │ │ │ │ │ │ └── sys_arch.h │ │ │ │ │ │ ├── freertos │ │ │ │ │ │ ├── MFC6A0B.tmp │ │ │ │ │ │ ├── ethernetif.h │ │ │ │ │ │ └── sys_arch.h │ │ │ │ │ │ └── standalone │ │ │ │ │ │ └── ethernetif.h │ │ │ │ │ └── src │ │ │ │ │ ├── FILES │ │ │ │ │ ├── core │ │ │ │ │ └── ipv6 │ │ │ │ │ │ └── README │ │ │ │ │ ├── include │ │ │ │ │ ├── ipv4 │ │ │ │ │ │ └── lwip │ │ │ │ │ │ │ ├── autoip.h │ │ │ │ │ │ │ ├── icmp.h │ │ │ │ │ │ │ ├── igmp.h │ │ │ │ │ │ │ ├── inet.h │ │ │ │ │ │ │ ├── inet_chksum.h │ │ │ │ │ │ │ ├── ip.h │ │ │ │ │ │ │ ├── ip_addr.h │ │ │ │ │ │ │ └── ip_frag.h │ │ │ │ │ ├── ipv6 │ │ │ │ │ │ └── lwip │ │ │ │ │ │ │ ├── icmp.h │ │ │ │ │ │ │ ├── inet.h │ │ │ │ │ │ │ ├── ip.h │ │ │ │ │ │ │ └── ip_addr.h │ │ │ │ │ ├── lwip │ │ │ │ │ │ ├── api.h │ │ │ │ │ │ ├── api_msg.h │ │ │ │ │ │ ├── arch.h │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ ├── def.h │ │ │ │ │ │ ├── dhcp.h │ │ │ │ │ │ ├── dns.h │ │ │ │ │ │ ├── err.h │ │ │ │ │ │ ├── init.h │ │ │ │ │ │ ├── lwip_timers.h │ │ │ │ │ │ ├── mem.h │ │ │ │ │ │ ├── memp.h │ │ │ │ │ │ ├── memp_std.h │ │ │ │ │ │ ├── netbuf.h │ │ │ │ │ │ ├── netdb.h │ │ │ │ │ │ ├── netif.h │ │ │ │ │ │ ├── netifapi.h │ │ │ │ │ │ ├── opt.h │ │ │ │ │ │ ├── pbuf.h │ │ │ │ │ │ ├── raw.h │ │ │ │ │ │ ├── sio.h │ │ │ │ │ │ ├── snmp.h │ │ │ │ │ │ ├── snmp_asn1.h │ │ │ │ │ │ ├── snmp_msg.h │ │ │ │ │ │ ├── snmp_structs.h │ │ │ │ │ │ ├── sockets.h │ │ │ │ │ │ ├── stats.h │ │ │ │ │ │ ├── sys.h │ │ │ │ │ │ ├── tcp.h │ │ │ │ │ │ ├── tcp_impl.h │ │ │ │ │ │ ├── tcpip.h │ │ │ │ │ │ └── udp.h │ │ │ │ │ ├── netif │ │ │ │ │ │ ├── etharp.h │ │ │ │ │ │ ├── loopif.h │ │ │ │ │ │ ├── ppp_oe.h │ │ │ │ │ │ └── slipif.h │ │ │ │ │ └── posix │ │ │ │ │ │ ├── netdb.h │ │ │ │ │ │ └── sys │ │ │ │ │ │ └── socket.h │ │ │ │ │ └── netif │ │ │ │ │ ├── FILES │ │ │ │ │ └── ppp │ │ │ │ │ ├── auth.h │ │ │ │ │ ├── chap.h │ │ │ │ │ ├── chpms.h │ │ │ │ │ ├── fsm.h │ │ │ │ │ ├── ipcp.h │ │ │ │ │ ├── lcp.h │ │ │ │ │ ├── magic.h │ │ │ │ │ ├── md5.h │ │ │ │ │ ├── pap.h │ │ │ │ │ ├── ppp.h │ │ │ │ │ ├── ppp_impl.h │ │ │ │ │ ├── pppdebug.h │ │ │ │ │ ├── randm.h │ │ │ │ │ └── vj.h │ │ │ ├── mdns │ │ │ │ └── mDNS.h │ │ │ ├── rtsp │ │ │ │ ├── rtp_api.h │ │ │ │ ├── rtsp_api.h │ │ │ │ ├── sdp.h │ │ │ │ └── src2rtsp.h │ │ │ ├── sntp │ │ │ │ └── sntp.h │ │ │ ├── ssl │ │ │ │ ├── polarssl-1.3.8 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── include │ │ │ │ │ │ └── polarssl │ │ │ │ │ │ │ ├── aes.h │ │ │ │ │ │ │ ├── aesni.h │ │ │ │ │ │ │ ├── arc4.h │ │ │ │ │ │ │ ├── asn1.h │ │ │ │ │ │ │ ├── asn1write.h │ │ │ │ │ │ │ ├── base64.h │ │ │ │ │ │ │ ├── bignum.h │ │ │ │ │ │ │ ├── blowfish.h │ │ │ │ │ │ │ ├── bn_mul.h │ │ │ │ │ │ │ ├── camellia.h │ │ │ │ │ │ │ ├── ccm.h │ │ │ │ │ │ │ ├── certs.h │ │ │ │ │ │ │ ├── check_config.h │ │ │ │ │ │ │ ├── cipher.h │ │ │ │ │ │ │ ├── cipher_wrap.h │ │ │ │ │ │ │ ├── compat-1.2.h │ │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ │ ├── config_all.h │ │ │ │ │ │ │ ├── config_arduino.h │ │ │ │ │ │ │ ├── config_rom.h │ │ │ │ │ │ │ ├── config_rsa.h │ │ │ │ │ │ │ ├── ctr_drbg.h │ │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ │ ├── des.h │ │ │ │ │ │ │ ├── dhm.h │ │ │ │ │ │ │ ├── ecdh.h │ │ │ │ │ │ │ ├── ecdsa.h │ │ │ │ │ │ │ ├── ecp.h │ │ │ │ │ │ │ ├── entropy.h │ │ │ │ │ │ │ ├── entropy_poll.h │ │ │ │ │ │ │ ├── error.h │ │ │ │ │ │ │ ├── gcm.h │ │ │ │ │ │ │ ├── havege.h │ │ │ │ │ │ │ ├── hmac_drbg.h │ │ │ │ │ │ │ ├── md.h │ │ │ │ │ │ │ ├── md2.h │ │ │ │ │ │ │ ├── md4.h │ │ │ │ │ │ │ ├── md5.h │ │ │ │ │ │ │ ├── md_wrap.h │ │ │ │ │ │ │ ├── memory.h │ │ │ │ │ │ │ ├── memory_buffer_alloc.h │ │ │ │ │ │ │ ├── net.h │ │ │ │ │ │ │ ├── oid.h │ │ │ │ │ │ │ ├── openssl.h │ │ │ │ │ │ │ ├── padlock.h │ │ │ │ │ │ │ ├── pbkdf2.h │ │ │ │ │ │ │ ├── pem.h │ │ │ │ │ │ │ ├── pk.h │ │ │ │ │ │ │ ├── pk_wrap.h │ │ │ │ │ │ │ ├── pkcs11.h │ │ │ │ │ │ │ ├── pkcs12.h │ │ │ │ │ │ │ ├── pkcs5.h │ │ │ │ │ │ │ ├── platform.h │ │ │ │ │ │ │ ├── ripemd160.h │ │ │ │ │ │ │ ├── rsa.h │ │ │ │ │ │ │ ├── sha1.h │ │ │ │ │ │ │ ├── sha256.h │ │ │ │ │ │ │ ├── sha512.h │ │ │ │ │ │ │ ├── ssl.h │ │ │ │ │ │ │ ├── ssl_cache.h │ │ │ │ │ │ │ ├── ssl_ciphersuites.h │ │ │ │ │ │ │ ├── ssl_rom_lib.h │ │ │ │ │ │ │ ├── threading.h │ │ │ │ │ │ │ ├── timing.h │ │ │ │ │ │ │ ├── version.h │ │ │ │ │ │ │ ├── x509.h │ │ │ │ │ │ │ ├── x509_crl.h │ │ │ │ │ │ │ ├── x509_crt.h │ │ │ │ │ │ │ ├── x509_csr.h │ │ │ │ │ │ │ └── xtea.h │ │ │ │ │ ├── library │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── rom │ │ │ │ │ │ │ └── Makefile │ │ │ │ │ └── ssl_rom.mk │ │ │ │ └── ssl_ram_map │ │ │ │ │ └── rom │ │ │ │ │ └── rom_ssl_ram_map.h │ │ │ └── websocket │ │ │ │ ├── libwsclient.h │ │ │ │ └── wsclient_api.h │ │ ├── test │ │ │ └── wlan │ │ │ │ └── wlan_test_inc.h │ │ ├── utilities │ │ │ ├── cJSON.h │ │ │ ├── cloud_updater.h │ │ │ ├── http.h │ │ │ ├── http_client.h │ │ │ ├── uart_socket.h │ │ │ ├── uart_ymodem.h │ │ │ ├── update.h │ │ │ ├── webserver.h │ │ │ └── xml.h │ │ └── video │ │ │ └── v4l2 │ │ │ └── inc │ │ │ ├── media-device.h │ │ │ ├── media-devnode.h │ │ │ ├── media-entity.h │ │ │ ├── uapi_v4l2-common.h │ │ │ ├── uapi_videodev2.h │ │ │ ├── v4l2-async.h │ │ │ ├── v4l2-clk.h │ │ │ ├── v4l2-common.h │ │ │ ├── v4l2-controls.h │ │ │ ├── v4l2-ctrls.h │ │ │ ├── v4l2-dev.h │ │ │ ├── v4l2-device.h │ │ │ ├── v4l2-event.h │ │ │ ├── v4l2-fh.h │ │ │ ├── v4l2-int-device.h │ │ │ ├── v4l2-ioctl.h │ │ │ ├── v4l2-mediabus.h │ │ │ ├── v4l2-osdep.h │ │ │ ├── v4l2-subdev.h │ │ │ ├── v4l2_driver.h │ │ │ ├── v4l2_intf.h │ │ │ ├── videobuf2-core.h │ │ │ ├── videobuf2-memops.h │ │ │ ├── videobuf2-vmalloc.h │ │ │ └── videodev2.h │ ├── os │ │ ├── freertos │ │ │ ├── cmsis_os.h │ │ │ ├── freertos_pmu.h │ │ │ ├── freertos_service.h │ │ │ └── freertos_v8.1.2 │ │ │ │ ├── Demo │ │ │ │ └── Common │ │ │ │ │ └── include │ │ │ │ │ ├── AltBlckQ.h │ │ │ │ │ ├── AltBlock.h │ │ │ │ │ ├── AltPollQ.h │ │ │ │ │ ├── AltQTest.h │ │ │ │ │ ├── BlockQ.h │ │ │ │ │ ├── EventGroupsDemo.h │ │ │ │ │ ├── GenQTest.h │ │ │ │ │ ├── IntQueue.h │ │ │ │ │ ├── PollQ.h │ │ │ │ │ ├── QPeek.h │ │ │ │ │ ├── QueueOverwrite.h │ │ │ │ │ ├── QueueSet.h │ │ │ │ │ ├── TimerDemo.h │ │ │ │ │ ├── blocktim.h │ │ │ │ │ ├── comtest.h │ │ │ │ │ ├── comtest2.h │ │ │ │ │ ├── comtest_strings.h │ │ │ │ │ ├── countsem.h │ │ │ │ │ ├── crflash.h │ │ │ │ │ ├── crhook.h │ │ │ │ │ ├── death.h │ │ │ │ │ ├── dynamic.h │ │ │ │ │ ├── fileIO.h │ │ │ │ │ ├── flash.h │ │ │ │ │ ├── flash_timer.h │ │ │ │ │ ├── flop.h │ │ │ │ │ ├── integer.h │ │ │ │ │ ├── mevents.h │ │ │ │ │ ├── partest.h │ │ │ │ │ ├── print.h │ │ │ │ │ ├── recmutex.h │ │ │ │ │ ├── semtest.h │ │ │ │ │ └── serial.h │ │ │ │ ├── License │ │ │ │ └── license.txt │ │ │ │ └── Source │ │ │ │ ├── Makefile │ │ │ │ ├── include │ │ │ │ ├── FreeRTOS.h │ │ │ │ ├── StackMacros.h │ │ │ │ ├── croutine.h │ │ │ │ ├── event_groups.h │ │ │ │ ├── list.h │ │ │ │ ├── mpu_wrappers.h │ │ │ │ ├── portable.h │ │ │ │ ├── projdefs.h │ │ │ │ ├── queue.h │ │ │ │ ├── semphr.h │ │ │ │ ├── stdint.readme │ │ │ │ ├── task.h │ │ │ │ └── timers.h │ │ │ │ ├── portable │ │ │ │ ├── GCC │ │ │ │ │ ├── ARM_CM3 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ ├── ARM_CM3_MPU │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ └── ARM_CM4F │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── portmacro.h │ │ │ │ ├── IAR │ │ │ │ │ ├── ARM_CM3 │ │ │ │ │ │ ├── portasm.s │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ └── ARM_CM4F │ │ │ │ │ │ ├── portasm.s │ │ │ │ │ │ └── portmacro.h │ │ │ │ ├── MemMang │ │ │ │ │ └── Makefile │ │ │ │ └── RVDS │ │ │ │ │ ├── ARM_CM3 │ │ │ │ │ └── portmacro.h │ │ │ │ │ └── ARM_CM4F │ │ │ │ │ └── portmacro.h │ │ │ │ └── readme.txt │ │ └── os_dep │ │ │ └── include │ │ │ ├── device_lock.h │ │ │ ├── mailbox.h │ │ │ ├── os_support.h │ │ │ ├── os_timer.h │ │ │ ├── osdep_api.h │ │ │ ├── osdep_service.h │ │ │ └── tcm_heap.h │ └── soc │ │ └── realtek │ │ ├── 8195a │ │ ├── cmsis │ │ │ ├── core_cm3.h │ │ │ ├── core_cmFunc.h │ │ │ ├── core_cmInstr.h │ │ │ └── device │ │ │ │ ├── cmsis.h │ │ │ │ ├── cmsis_nvic.h │ │ │ │ ├── diag.h │ │ │ │ ├── diag.h.1 │ │ │ │ ├── rand.h │ │ │ │ ├── rtl_stdlib.h │ │ │ │ ├── rtl_utility.h │ │ │ │ ├── strproc.h │ │ │ │ ├── system_8195a.h │ │ │ │ └── va_list.h │ │ ├── fwlib │ │ │ ├── hal_adc.h │ │ │ ├── hal_api.h │ │ │ ├── hal_common.h │ │ │ ├── hal_crypto.h │ │ │ ├── hal_dac.h │ │ │ ├── hal_diag.h │ │ │ ├── hal_efuse.h │ │ │ ├── hal_gdma.h │ │ │ ├── hal_gpio.h │ │ │ ├── hal_i2c.h │ │ │ ├── hal_i2s.h │ │ │ ├── hal_irqn.h │ │ │ ├── hal_log_uart.h │ │ │ ├── hal_mii.h │ │ │ ├── hal_misc.h │ │ │ ├── hal_nfc.h │ │ │ ├── hal_pcm.h │ │ │ ├── hal_peri_on.h │ │ │ ├── hal_pinmux.h │ │ │ ├── hal_platform.h │ │ │ ├── hal_pwm.h │ │ │ ├── hal_sdio.h │ │ │ ├── hal_sdio_host.h │ │ │ ├── hal_sdr_controller.h │ │ │ ├── hal_soc_ps_monitor.h │ │ │ ├── hal_spi_flash.h │ │ │ ├── hal_ssi.h │ │ │ ├── hal_timer.h │ │ │ ├── hal_uart.h │ │ │ ├── hal_usb.h │ │ │ ├── hal_util.h │ │ │ ├── hal_vector_table.h │ │ │ ├── ram_lib │ │ │ │ ├── usb_otg │ │ │ │ │ └── include │ │ │ │ │ │ ├── Rtl8195a_otg_zero.h │ │ │ │ │ │ ├── cdc.h │ │ │ │ │ │ ├── dwc_list.h │ │ │ │ │ │ ├── dwc_os.h │ │ │ │ │ │ ├── dwc_otg_adp.h │ │ │ │ │ │ ├── dwc_otg_attr.h │ │ │ │ │ │ ├── dwc_otg_cil.h │ │ │ │ │ │ ├── dwc_otg_common.h │ │ │ │ │ │ ├── dwc_otg_core_if.h │ │ │ │ │ │ ├── dwc_otg_dbg.h │ │ │ │ │ │ ├── dwc_otg_driver.h │ │ │ │ │ │ ├── dwc_otg_hcd.h │ │ │ │ │ │ ├── dwc_otg_hcd_if.h │ │ │ │ │ │ ├── dwc_otg_os_dep.h │ │ │ │ │ │ ├── dwc_otg_pcd.h │ │ │ │ │ │ ├── dwc_otg_pcd_if.h │ │ │ │ │ │ ├── dwc_otg_regs.h │ │ │ │ │ │ ├── hal_otg.h │ │ │ │ │ │ ├── hcd.h │ │ │ │ │ │ ├── rtl8195a_otg.h │ │ │ │ │ │ ├── usb.h │ │ │ │ │ │ ├── usb_ch9.h │ │ │ │ │ │ ├── usb_defs.h │ │ │ │ │ │ ├── usb_errno.h │ │ │ │ │ │ ├── usb_gadget.h │ │ │ │ │ │ ├── usb_otg_inc │ │ │ │ │ │ └── errno.h │ │ │ │ │ │ └── usb_ulinker.h │ │ │ │ └── wlan │ │ │ │ │ └── realtek │ │ │ │ │ └── wlan_ram_map │ │ │ │ │ └── rom │ │ │ │ │ └── rom_wlan_ram_map.h │ │ │ ├── rtl8195a │ │ │ │ ├── Descript.ion │ │ │ │ ├── rtl8195a.h │ │ │ │ ├── rtl8195a_adc.h │ │ │ │ ├── rtl8195a_dac.h │ │ │ │ ├── rtl8195a_gdma.h │ │ │ │ ├── rtl8195a_gpio.h │ │ │ │ ├── rtl8195a_gspi.h │ │ │ │ ├── rtl8195a_i2c.h │ │ │ │ ├── rtl8195a_i2s.h │ │ │ │ ├── rtl8195a_mii.h │ │ │ │ ├── rtl8195a_nfc.h │ │ │ │ ├── rtl8195a_pcm.h │ │ │ │ ├── rtl8195a_peri_on.h │ │ │ │ ├── rtl8195a_pwm.h │ │ │ │ ├── rtl8195a_sdio.h │ │ │ │ ├── rtl8195a_sdio_host.h │ │ │ │ ├── rtl8195a_sdr.h │ │ │ │ ├── rtl8195a_spi_flash.h │ │ │ │ ├── rtl8195a_ssi.h │ │ │ │ ├── rtl8195a_sys_on.1 │ │ │ │ ├── rtl8195a_sys_on.h │ │ │ │ ├── rtl8195a_timer.h │ │ │ │ ├── rtl8195a_uart.h │ │ │ │ ├── rtl8195a_usb.h │ │ │ │ └── rtl8195a_wdt.h │ │ │ └── src │ │ │ │ ├── Descript.ion │ │ │ │ ├── hal_efuse.c │ │ │ │ └── hal_pinmux.c │ │ └── misc │ │ │ ├── bsp │ │ │ ├── image │ │ │ │ ├── ram_1.p.bin │ │ │ │ └── ram_1.r.bin │ │ │ └── lib │ │ │ │ └── va0 │ │ │ │ └── rom.a │ │ │ ├── driver │ │ │ └── rtl_consol.h │ │ │ ├── gcc_utility │ │ │ ├── Check_Jtag.sh │ │ │ ├── SetupGDB_NORMAL.sh │ │ │ ├── openocd │ │ │ │ └── ameba1.cfg │ │ │ ├── ram_all.bin │ │ │ ├── rtl_gdb_debug_jlink.txt │ │ │ ├── rtl_gdb_debug_openocd.txt │ │ │ ├── rtl_gdb_flash_write_jlink.txt │ │ │ ├── rtl_gdb_flash_write_openocd.txt │ │ │ ├── rtl_gdb_ramdebug_jlink.txt │ │ │ ├── rtl_gdb_ramdebug_openocd.txt │ │ │ ├── target_NORMALB.axf │ │ │ └── target_NORMALC.axf │ │ │ ├── iar_utility │ │ │ └── common │ │ │ │ ├── 8195a.ddf │ │ │ │ ├── dram │ │ │ │ ├── EM6A6165TS_7G.mac │ │ │ │ ├── common.mac │ │ │ │ └── readme.txt │ │ │ │ ├── flashloader │ │ │ │ ├── FlashRTL8195aMP.board │ │ │ │ ├── FlashRTL8195aMP.flash │ │ │ │ ├── FlashRTL8195aMP.mac │ │ │ │ ├── FlashRTL8195aMP.out │ │ │ │ ├── FlashRTL8195aMP_img1.board │ │ │ │ ├── FlashRTL8195aMP_img1_v0.board │ │ │ │ ├── FlashRTL8195aMP_img2.board │ │ │ │ ├── FlashRTL8195aQA.board │ │ │ │ ├── FlashRTL8195aQA.flash │ │ │ │ ├── FlashRTL8195aQA.mac │ │ │ │ └── FlashRTL8195aQA.out │ │ │ │ ├── gen_board.bat │ │ │ │ ├── gen_board_img2.bat │ │ │ │ ├── postbuild.bat │ │ │ │ ├── postbuild.vbs │ │ │ │ ├── postbuild_alink.bat │ │ │ │ ├── postbuild_alink.vbs │ │ │ │ ├── postbuild_hilink.bat │ │ │ │ ├── postbuild_hilink.vbs │ │ │ │ ├── postbuild_img1.bat │ │ │ │ ├── postbuild_img1.vbs │ │ │ │ ├── postbuild_img2.bat │ │ │ │ ├── postbuild_img2.vbs │ │ │ │ ├── postbuild_img2_gcc.bat │ │ │ │ ├── prebuild.bat │ │ │ │ ├── prebuild.vbs │ │ │ │ ├── preload.dap.mac │ │ │ │ ├── preload.mac │ │ │ │ └── tools │ │ │ │ ├── bedit.exe │ │ │ │ ├── checksum │ │ │ │ ├── checksum.exe │ │ │ │ ├── coan.exe │ │ │ │ ├── cut.exe │ │ │ │ ├── cyggcc_s-1.dll │ │ │ │ ├── cyggmp-10.dll │ │ │ │ ├── cygiconv-2.dll │ │ │ │ ├── cygintl-8.dll │ │ │ │ ├── cygmpfr-4.dll │ │ │ │ ├── cygncursesw-10.dll │ │ │ │ ├── cygpcre-1.dll │ │ │ │ ├── cygreadline7.dll │ │ │ │ ├── cygwin1.dll │ │ │ │ ├── cygz.dll │ │ │ │ ├── decomment.exe │ │ │ │ ├── fart.exe │ │ │ │ ├── gawk.exe │ │ │ │ ├── grep.exe │ │ │ │ ├── head.exe │ │ │ │ ├── iarchive.exe │ │ │ │ ├── nm.exe │ │ │ │ ├── objcopy.exe │ │ │ │ ├── objdump.exe │ │ │ │ ├── padding │ │ │ │ ├── padding.exe │ │ │ │ ├── pick │ │ │ │ ├── pick.exe │ │ │ │ ├── readelf.exe │ │ │ │ ├── sed.exe │ │ │ │ ├── sort.exe │ │ │ │ ├── strip.exe │ │ │ │ └── tail.exe │ │ │ └── rtl_std_lib │ │ │ ├── include │ │ │ ├── rt_lib_rom.h │ │ │ └── rtl_lib.h │ │ │ ├── libc │ │ │ └── rom │ │ │ │ └── string │ │ │ │ └── rom_libc_string.h │ │ │ └── libgloss │ │ │ └── rtl8195a │ │ │ └── rom │ │ │ └── rom_libgloss_retarget.h │ │ └── common │ │ └── bsp │ │ ├── basic_types.h │ │ └── section_config.h │ └── project │ ├── realtek_ameba1_va0_example │ └── example_sources │ │ ├── analogin_voltage │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ │ ├── crypto │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ │ ├── efuse_user │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ │ ├── flash │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ │ ├── gdma │ │ └── src │ │ │ └── main.c │ │ ├── gpio │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ │ ├── gpio_irq │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ │ ├── gpio_jtag │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ │ ├── gpio_level_irq │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ │ ├── gpio_port │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ │ ├── gtimer │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ │ ├── gtimer_rtc │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ │ ├── i2c-shtc1 │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ │ ├── i2c │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ │ ├── i2c_LPS25HB_pressure │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ │ ├── i2c_epl2197_heartrate │ │ ├── inc │ │ │ ├── HRM_2197.h │ │ │ └── heart_interface.h │ │ ├── readme.txt │ │ └── src │ │ │ ├── hr_library.a │ │ │ └── main.c │ │ ├── i2c_epl2590_light │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ │ ├── i2c_epl2590_proximity │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ │ ├── i2s │ │ ├── readme.txt │ │ └── src │ │ │ ├── alc5651.c │ │ │ ├── birds_11025_2ch_16b.c │ │ │ ├── birds_16000_2ch_16b.c │ │ │ ├── birds_22050_2ch_16b.c │ │ │ ├── birds_24000_2ch_16b.c │ │ │ ├── birds_32000_2ch_16b.c │ │ │ ├── birds_44100_2ch_16b.c │ │ │ ├── birds_48000_2ch_16b.c │ │ │ ├── birds_8000_2ch_16b.c │ │ │ └── main.c │ │ ├── i2s_bypass │ │ ├── readme.txt │ │ └── src │ │ │ ├── alc5651.c │ │ │ └── main.c │ │ ├── i2s_tx_and_rx_only │ │ ├── readme.txt │ │ └── src │ │ │ ├── alc5651.c │ │ │ └── main.c │ │ ├── nfc │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ │ ├── pm_deepsleep │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ │ ├── pm_deepstandby │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ │ ├── pm_sleep │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ │ ├── pm_tickless │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ │ ├── pwm-buzzer │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ │ ├── pwm │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ │ ├── rtc │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ │ ├── spi │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ │ ├── spi_pl7223 │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ │ ├── spi_stream_twoboard │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ │ ├── spi_twoboard │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ │ ├── uart │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ │ ├── uart_clock │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ │ ├── uart_irq │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ │ ├── uart_stream_dma │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ │ ├── uart_stream_irq │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ │ ├── uart_stream_rx_timeout_by_semaphore │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ │ ├── watchdog │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ │ └── wlan │ │ ├── readme.txt │ │ └── src │ │ └── main.c │ ├── rtl8710 │ ├── inc │ │ ├── FreeRTOSConfig.h │ │ ├── build_info.h │ │ ├── lwipopts.h │ │ ├── main.h │ │ ├── platform_autoconf.h │ │ └── platform_opts.h │ └── src │ │ └── main.c │ └── rtl8711am │ ├── inc │ ├── FreeRTOSConfig.h │ ├── build_info.h │ ├── lwipopts.h │ ├── main.h │ ├── platform_autoconf.h │ └── platform_opts.h │ └── src │ └── main.c ├── tools ├── DownloadServer │ ├── DownloadServer.exe │ ├── readme.txt │ └── start.bat ├── Iperf │ ├── iperf.exe │ ├── iperf.txt │ ├── ipref_client.bat │ └── ipref_server.bat ├── JLink-RdFullFlash.bat ├── JLink-Reset.bat ├── JLink-RunRAM.bat ├── JLink.exe ├── JLinkARM.dll ├── JLinkGDBServer.exe ├── JLinkGDB_IMG.bat ├── JLinkGDB_IMG.cmd ├── JLinkGDB_OTA.bat ├── JLinkGDB_OTA.cmd ├── OTA_RTLDuino.bin ├── RTL00Flasher.exe ├── RTL_FFlash.JLinkScript ├── RTL_Reset.JLinkScript ├── RunRAM.JLinkScript ├── boot.bin ├── gdb_img.jlink ├── gdb_ota.jlink ├── jlink_upload.bat ├── jlink_upload.cmd ├── jlink_uploadam.cmd ├── mkspiffs.exe ├── rtl8710_flasher.bin └── run_ram.bin └── variants ├── rtl8195 ├── linker_scripts │ └── gcc │ │ ├── export-rom_v04.txt │ │ ├── rtl8195-symbol-v04-img3.ld │ │ ├── sdram_bss.txt │ │ ├── sdram_obj.txt │ │ ├── sdram_obj_bss.txt │ │ ├── sdram_obj_data.txt │ │ ├── sdram_obj_list.txt │ │ ├── sdram_obj_rodata.txt │ │ ├── sdram_obj_text.txt │ │ └── symbol_black_list.txt ├── pins_arduino.h ├── variant.cpp └── variant.h ├── rtl8710 ├── linker_scripts │ └── gcc │ │ ├── export-rom_v04.txt │ │ ├── rtl8710-symbol-v04-img2_arduino_arduino.ld │ │ └── symbol_black_list.txt ├── pins_arduino.h ├── variant.cpp └── variant.h └── rtl8711am ├── linker_scripts └── gcc │ ├── export-rom_v04.txt │ ├── rtl8711am-symbol-v04-img2_arduino_arduino.ld │ ├── sdram_obj_list.txt │ └── symbol_black_list.txt ├── pins_arduino.h ├── variant.cpp └── variant.h /ArduinoRTL00.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/ArduinoRTL00.gif -------------------------------------------------------------------------------- /RAK476.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/RAK476.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/README.md -------------------------------------------------------------------------------- /RTL8195AM.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/RTL8195AM.gif -------------------------------------------------------------------------------- /SD_card.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/SD_card.gif -------------------------------------------------------------------------------- /development/rtl87xx/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/boards.txt -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/Client.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/CountingStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/CountingStream.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/FunctionPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/FunctionPointer.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/HardwareSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/HardwareSerial.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/IPAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/IPAddress.cpp -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/IPAddress.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/LOGUARTClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/LOGUARTClass.cpp -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/LOGUARTClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/LOGUARTClass.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/PowerManagement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/PowerManagement.cpp -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/PowerManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/PowerManagement.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/Print.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/Printable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/Printable.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/Reset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/Reset.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/RingBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/RingBuffer.cpp -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/RingBuffer.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/Server.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/Stream.cpp -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/Stream.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/Tone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/Tone.cpp -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/Udp.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/WCharacter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/WCharacter.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/WInterrupts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/WInterrupts.c -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/WInterrupts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/WInterrupts.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/WMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/WMath.cpp -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/WMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/WMath.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/WString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/WString.cpp -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/WString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/WString.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/WebSocketClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/WebSocketClient.cpp -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/WebSocketClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/WebSocketClient.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/ard_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/ard_socket.c -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/ard_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/ard_socket.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/ard_ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/ard_ssl.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/avr/dtostrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/avr/dtostrf.c -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/avr/dtostrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/avr/dtostrf.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/avr/interrupt.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/avr/pgmspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/avr/pgmspace.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/b64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/b64.cpp -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/b64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/b64.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/binary.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/bitband_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/bitband_io.c -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/bitband_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/bitband_io.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/cxxabi-compat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/cxxabi-compat.cpp -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/debug.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/hooks.c -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/itoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/itoa.c -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/itoa.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/libwsclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/libwsclient.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/lwip_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/lwip_info.c -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/main.cpp -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/netbios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/netbios.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/rtl8195a/rtl_libc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/rtl8195a/rtl_libc.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/rtl_sys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/rtl_sys.cpp -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/server_drv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/server_drv.cpp -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/server_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/server_drv.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/spiffs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/spiffs/LICENSE -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/spiffs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/spiffs/README.md -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/spiffs/TECH_SPEC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/spiffs/TECH_SPEC -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/spiffs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/spiffs/TODO -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/spiffs/spiffs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/spiffs/spiffs.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/spiffs/spiffs_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/spiffs/spiffs_cache.c -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/spiffs/spiffs_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/spiffs/spiffs_check.c -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/spiffs/spiffs_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/spiffs/spiffs_config.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/spiffs/spiffs_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/spiffs/spiffs_gc.c -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/spiffs/spiffs_hydrogen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/spiffs/spiffs_hydrogen.c -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/spiffs/spiffs_nucleus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/spiffs/spiffs_nucleus.c -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/spiffs/spiffs_nucleus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/spiffs/spiffs_nucleus.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/ssl_drv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/ssl_drv.cpp -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/ssl_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/ssl_drv.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/syscalls.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/uvc/uvc_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/uvc/uvc_drv.c -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/uvc/uvc_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/uvc/uvc_drv.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/wifi_drv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/wifi_drv.cpp -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/wifi_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/wifi_drv.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/wiring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/wiring.c -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/wiring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/wiring.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/wiring_analog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/wiring_analog.c -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/wiring_analog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/wiring_analog.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/wiring_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/wiring_constants.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/wiring_digital.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/wiring_digital.c -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/wiring_digital.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/wiring_digital.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/wiring_os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/wiring_os.c -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/wiring_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/wiring_os.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/wiring_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/wiring_private.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/wiring_pulse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/wiring_pulse.cpp -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/wiring_pulse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/wiring_pulse.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/wiring_shift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/wiring_shift.c -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/wiring_shift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/wiring_shift.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/wiring_watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/wiring_watchdog.c -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/wiring_watchdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/wiring_watchdog.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/wl_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/wl_definitions.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/wl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/wl_types.h -------------------------------------------------------------------------------- /development/rtl87xx/cores/arduino/wsclient_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/cores/arduino/wsclient_api.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Analog/AmebaServo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Analog/AmebaServo.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Analog/AmebaServo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Analog/AmebaServo.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Analog/examples/DACSinWave/DACSinWave.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Analog/examples/DACSinWave/DACSinWave.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Analog/examples/ServoSweep/ServoSweep.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Analog/examples/ServoSweep/ServoSweep.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Analog/examples/TonePlayMelody/TonePlayMelody.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Analog/examples/TonePlayMelody/TonePlayMelody.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Analog/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Analog/keywords.txt -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Analog/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Analog/library.properties -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Fatfs/SdFatFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Fatfs/SdFatFile.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Fatfs/SdFatFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Fatfs/SdFatFile.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Fatfs/SdFatFs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Fatfs/SdFatFs.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Fatfs/SdFatFs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Fatfs/SdFatFs.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Fatfs/examples/create_folder/create_folder.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Fatfs/examples/create_folder/create_folder.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Fatfs/examples/file_read_write/file_read_write.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Fatfs/examples/file_read_write/file_read_write.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Fatfs/examples/get_file_attribute/get_file_attribute.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Fatfs/examples/get_file_attribute/get_file_attribute.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Fatfs/examples/last_modified_time/last_modified_time.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Fatfs/examples/last_modified_time/last_modified_time.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Fatfs/examples/list_root_files/list_root_files.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Fatfs/examples/list_root_files/list_root_files.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Fatfs/examples/speed_file_read/speed_file_read.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Fatfs/examples/speed_file_read/speed_file_read.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Fatfs/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Fatfs/library.properties -------------------------------------------------------------------------------- /development/rtl87xx/libraries/FlashMemory/FlashEEP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/FlashMemory/FlashEEP.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/FlashMemory/FlashEEP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/FlashMemory/FlashEEP.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/FlashMemory/FlashMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/FlashMemory/FlashMemory.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/FlashMemory/FlashMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/FlashMemory/FlashMemory.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/FlashMemory/examples/FlashEEPBasic/FlashEEPBasic.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/FlashMemory/examples/FlashEEPBasic/FlashEEPBasic.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/FlashMemory/examples/FlashMemoryBasic/FlashMemoryBasic.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/FlashMemory/examples/FlashMemoryBasic/FlashMemoryBasic.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/FlashMemory/examples/ReadWriteOneWord/ReadWriteOneWord.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/FlashMemory/examples/ReadWriteOneWord/ReadWriteOneWord.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/FlashMemory/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/FlashMemory/keywords.txt -------------------------------------------------------------------------------- /development/rtl87xx/libraries/FlashMemory/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/FlashMemory/library.properties -------------------------------------------------------------------------------- /development/rtl87xx/libraries/GPIO/DHT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/GPIO/DHT.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/GPIO/DHT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/GPIO/DHT.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/GPIO/examples/DHTtester/DHTtester.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/GPIO/examples/DHTtester/DHTtester.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/GPIO/examples/HCSR04Ultrasonic/HCSR04Ultrasonic.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/GPIO/examples/HCSR04Ultrasonic/HCSR04Ultrasonic.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/GPIO/examples/InterruptCtrlLed/InterruptCtrlLed.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/GPIO/examples/InterruptCtrlLed/InterruptCtrlLed.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/GPIO/examples/Test_GPIO_out/Test_GPIO_out.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/GPIO/examples/Test_GPIO_out/Test_GPIO_out.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/GPIO/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/GPIO/keywords.txt -------------------------------------------------------------------------------- /development/rtl87xx/libraries/GPIO/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/GPIO/library.properties -------------------------------------------------------------------------------- /development/rtl87xx/libraries/GTimer/GTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/GTimer/GTimer.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/GTimer/GTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/GTimer/GTimer.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/GTimer/examples/gtimer_api/gtimer_api.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/GTimer/examples/gtimer_api/gtimer_api.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/GTimer/examples/timer_oneshot/timer_oneshot.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/GTimer/examples/timer_oneshot/timer_oneshot.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/GTimer/examples/timer_periodical/timer_periodical.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/GTimer/examples/timer_periodical/timer_periodical.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/GTimer/examples/us_ticker/us_ticker.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/GTimer/examples/us_ticker/us_ticker.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/GTimer/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/GTimer/keywords.txt -------------------------------------------------------------------------------- /development/rtl87xx/libraries/GTimer/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/GTimer/library.properties -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Http/HttpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Http/HttpClient.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Http/HttpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Http/HttpClient.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Http/b64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Http/b64.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Http/b64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Http/b64.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Http/examples/SimpleHttpExample/SimpleHttpExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Http/examples/SimpleHttpExample/SimpleHttpExample.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Http/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Http/keywords.txt -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Http/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Http/library.properties -------------------------------------------------------------------------------- /development/rtl87xx/libraries/IRSendRecv/IRSendRev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/IRSendRecv/IRSendRev.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/IRSendRecv/IRSendRev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/IRSendRecv/IRSendRev.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/IRSendRecv/examples/recv/recv.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/IRSendRecv/examples/recv/recv.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/IRSendRecv/examples/send/send.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/IRSendRecv/examples/send/send.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/IRSendRecv/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/IRSendRecv/keywords.txt -------------------------------------------------------------------------------- /development/rtl87xx/libraries/IRSendRecv/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/IRSendRecv/library.properties -------------------------------------------------------------------------------- /development/rtl87xx/libraries/JPEGDecoder/JPEGDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/JPEGDecoder/JPEGDecoder.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/JPEGDecoder/JPEGDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/JPEGDecoder/JPEGDecoder.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/JPEGDecoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/JPEGDecoder/README.md -------------------------------------------------------------------------------- /development/rtl87xx/libraries/JPEGDecoder/examples/TFT_jpg/TFT_jpg.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/JPEGDecoder/examples/TFT_jpg/TFT_jpg.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/JPEGDecoder/examples/TFT_jpg/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/JPEGDecoder/examples/TFT_jpg/test.jpg -------------------------------------------------------------------------------- /development/rtl87xx/libraries/JPEGDecoder/examples/TFT_jpg/testjpg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/JPEGDecoder/examples/TFT_jpg/testjpg1.jpg -------------------------------------------------------------------------------- /development/rtl87xx/libraries/JPEGDecoder/examples/TFT_jpg/testjpg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/JPEGDecoder/examples/TFT_jpg/testjpg2.jpg -------------------------------------------------------------------------------- /development/rtl87xx/libraries/JPEGDecoder/examples/TFT_jpg/tstjpg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/JPEGDecoder/examples/TFT_jpg/tstjpg.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/JPEGDecoder/examples/TFT_jpg/tstjpg1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/JPEGDecoder/examples/TFT_jpg/tstjpg1.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/JPEGDecoder/examples/TFT_jpg/tstjpg2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/JPEGDecoder/examples/TFT_jpg/tstjpg2.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/JPEGDecoder/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/JPEGDecoder/keywords.txt -------------------------------------------------------------------------------- /development/rtl87xx/libraries/JPEGDecoder/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/JPEGDecoder/library.properties -------------------------------------------------------------------------------- /development/rtl87xx/libraries/JPEGDecoder/picojpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/JPEGDecoder/picojpeg.c -------------------------------------------------------------------------------- /development/rtl87xx/libraries/JPEGDecoder/picojpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/JPEGDecoder/picojpeg.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MDNS/AmebaMDNS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MDNS/AmebaMDNS.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MDNS/AmebaMDNS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MDNS/AmebaMDNS.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MDNS/examples/mdns_on_arduino_ide/mdns_on_arduino_ide.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MDNS/examples/mdns_on_arduino_ide/mdns_on_arduino_ide.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MDNS/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MDNS/keywords.txt -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MDNS/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MDNS/library.properties -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/.gitignore: -------------------------------------------------------------------------------- 1 | tests/bin 2 | -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MQTTClient/.travis.yml -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MQTTClient/CHANGES.txt -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MQTTClient/LICENSE.txt -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MQTTClient/README.md -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/examples/lass_basic/lass_basic.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MQTTClient/examples/lass_basic/lass_basic.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/examples/mqtt_auth/mqtt_auth.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MQTTClient/examples/mqtt_auth/mqtt_auth.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/examples/mqtt_basic/mqtt_basic.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MQTTClient/examples/mqtt_basic/mqtt_basic.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MQTTClient/keywords.txt -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MQTTClient/library.properties -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/src/PubSubClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MQTTClient/src/PubSubClient.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/src/PubSubClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MQTTClient/src/PubSubClient.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/tests/.gitignore: -------------------------------------------------------------------------------- 1 | .build 2 | tmpbin 3 | logs 4 | *.pyc 5 | -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MQTTClient/tests/Makefile -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MQTTClient/tests/README.md -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/tests/src/connect_spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MQTTClient/tests/src/connect_spec.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/tests/src/keepalive_spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MQTTClient/tests/src/keepalive_spec.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/tests/src/lib/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MQTTClient/tests/src/lib/Arduino.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/tests/src/lib/BDDTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MQTTClient/tests/src/lib/BDDTest.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/tests/src/lib/BDDTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MQTTClient/tests/src/lib/BDDTest.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/tests/src/lib/Buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MQTTClient/tests/src/lib/Buffer.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/tests/src/lib/Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MQTTClient/tests/src/lib/Buffer.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/tests/src/lib/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MQTTClient/tests/src/lib/Client.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/tests/src/lib/IPAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MQTTClient/tests/src/lib/IPAddress.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/tests/src/lib/IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MQTTClient/tests/src/lib/IPAddress.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/tests/src/lib/ShimClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MQTTClient/tests/src/lib/ShimClient.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/tests/src/lib/ShimClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MQTTClient/tests/src/lib/ShimClient.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/tests/src/lib/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MQTTClient/tests/src/lib/Stream.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/tests/src/lib/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MQTTClient/tests/src/lib/Stream.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/tests/src/lib/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MQTTClient/tests/src/lib/trace.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/tests/src/publish_spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MQTTClient/tests/src/publish_spec.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/tests/src/receive_spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MQTTClient/tests/src/receive_spec.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/tests/src/subscribe_spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MQTTClient/tests/src/subscribe_spec.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/tests/testcases/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/tests/testcases/mqtt_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MQTTClient/tests/testcases/mqtt_basic.py -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/tests/testcases/mqtt_publish_in_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MQTTClient/tests/testcases/mqtt_publish_in_callback.py -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/tests/testcases/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MQTTClient/tests/testcases/settings.py -------------------------------------------------------------------------------- /development/rtl87xx/libraries/MQTTClient/tests/testsuite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/MQTTClient/tests/testsuite.py -------------------------------------------------------------------------------- /development/rtl87xx/libraries/NFC/NfcTag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/NFC/NfcTag.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/NFC/NfcTag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/NFC/NfcTag.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/NFC/examples/GetTagContent/GetTagContent.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/NFC/examples/GetTagContent/GetTagContent.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/NFC/examples/GooglePlayApp/GooglePlayApp.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/NFC/examples/GooglePlayApp/GooglePlayApp.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/NFC/examples/NFC_Web_Led/NFC_Web_Led.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/NFC/examples/NFC_Web_Led/NFC_Web_Led.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/NFC/examples/StoreTagContent/StoreTagContent.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/NFC/examples/StoreTagContent/StoreTagContent.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/NFC/examples/UpdateTagContent/UpdateTagContent.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/NFC/examples/UpdateTagContent/UpdateTagContent.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/NFC/examples/UriWebPage/UriWebPage.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/NFC/examples/UriWebPage/UriWebPage.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/NFC/examples/VCardContact/VCardContact.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/NFC/examples/VCardContact/VCardContact.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/NFC/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/NFC/keywords.txt -------------------------------------------------------------------------------- /development/rtl87xx/libraries/NFC/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/NFC/library.properties -------------------------------------------------------------------------------- /development/rtl87xx/libraries/OTA/OTA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/OTA/OTA.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/OTA/OTA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/OTA/OTA.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/OTA/examples/ota_ap/ota_ap.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/OTA/examples/ota_ap/ota_ap.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/OTA/examples/ota_basic/ota_basic.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/OTA/examples/ota_basic/ota_basic.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/OTA/examples/ota_non_block/ota_non_block.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/OTA/examples/ota_non_block/ota_non_block.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/OTA/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/OTA/keywords.txt -------------------------------------------------------------------------------- /development/rtl87xx/libraries/OTA/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/OTA/library.properties -------------------------------------------------------------------------------- /development/rtl87xx/libraries/PowerSave/PowerSave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/PowerSave/PowerSave.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/PowerSave/examples/DeepSleepBasic/DeepSleepBasic.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/PowerSave/examples/DeepSleepBasic/DeepSleepBasic.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/PowerSave/examples/DeepSleepWithDHT/DeepSleepWithDHT.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/PowerSave/examples/DeepSleepWithDHT/DeepSleepWithDHT.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/PowerSave/examples/SleepBasic/SleepBasic.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/PowerSave/examples/SleepBasic/SleepBasic.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/PowerSave/examples/SleepWithWifiIdle/SleepWithWifiIdle.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/PowerSave/examples/SleepWithWifiIdle/SleepWithWifiIdle.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/PowerSave/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/PowerSave/keywords.txt -------------------------------------------------------------------------------- /development/rtl87xx/libraries/PowerSave/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/PowerSave/library.properties -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/D.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/D.dat -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/LICENSES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/LICENSES -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/RTL00MP3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/RTL00MP3.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/RTL00MP3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/RTL00MP3.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/align.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/align.c -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/align.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/align.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/bit.c -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/bit.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/c_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/c_types.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/config.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/decoder.c -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/decoder.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/examples/WiFiMP3/WiFiMP3.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/examples/WiFiMP3/WiFiMP3.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/fixed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/fixed.c -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/fixed.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/frame.c -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/frame.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/global.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/hal_gdma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/hal_gdma.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/huffman.c -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/huffman.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/i2s_freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/i2s_freertos.c -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/i2s_freertos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/i2s_freertos.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/imdct_s.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/imdct_s.dat -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/keywords.txt: -------------------------------------------------------------------------------- 1 | 2 | RTLmp3 KEYWORD2 3 | 4 | -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/layer3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/layer3.c -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/layer3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/layer3.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/library.properties -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/mad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/mad.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/mad_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/mad_version.c -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/mad_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/mad_version.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/playerconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/playerconfig.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/qc_table.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/qc_table.dat -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/rq_table.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/rq_table.dat -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/rtl_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/rtl_common.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/rtlmp3main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/rtlmp3main.c -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/sf_table.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/sf_table.dat -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/spiram_fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/spiram_fifo.c -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/spiram_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/spiram_fifo.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/stream.c -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/stream.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/synth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/synth.c -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/synth.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/synth_mono.c.none: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/synth_mono.c.none -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/timer.c -------------------------------------------------------------------------------- /development/rtl87xx/libraries/RTL00MP3/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/RTL00MP3/timer.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/SHTxx/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/SHTxx/README.txt -------------------------------------------------------------------------------- /development/rtl87xx/libraries/SHTxx/SHTxx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/SHTxx/SHTxx.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/SHTxx/SHTxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/SHTxx/SHTxx.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/SHTxx/examples/NonBlocking/NonBlocking.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/SHTxx/examples/NonBlocking/NonBlocking.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/SHTxx/examples/PollingReady/PollingReady.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/SHTxx/examples/PollingReady/PollingReady.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/SHTxx/examples/SimpleSensirion/SimpleSensirion.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/SHTxx/examples/SimpleSensirion/SimpleSensirion.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/SHTxx/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/SHTxx/keywords.txt -------------------------------------------------------------------------------- /development/rtl87xx/libraries/SPI/AmebaILI9341.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/SPI/AmebaILI9341.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/SPI/AmebaILI9341.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/SPI/AmebaILI9341.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/SPI/Raw_ST7735.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/SPI/Raw_ST7735.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/SPI/Raw_ST7735.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/SPI/Raw_ST7735.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/SPI/SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/SPI/SPI.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/SPI/SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/SPI/SPI.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/SPI/examples/ADNS3080/ADNS3080/ADNS3080.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/SPI/examples/ADNS3080/ADNS3080/ADNS3080.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/SPI/examples/ADNS3080/gpl3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/SPI/examples/ADNS3080/gpl3.txt -------------------------------------------------------------------------------- /development/rtl87xx/libraries/SPI/font5x7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/SPI/font5x7.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/SPI/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/SPI/keywords.txt -------------------------------------------------------------------------------- /development/rtl87xx/libraries/SPI/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/SPI/library.properties -------------------------------------------------------------------------------- /development/rtl87xx/libraries/SdSimplyFtp/examples/SdFtp/SdFtp.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/SdSimplyFtp/examples/SdFtp/SdFtp.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/SdSimplyFtp/ftps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/SdSimplyFtp/ftps.c -------------------------------------------------------------------------------- /development/rtl87xx/libraries/SdSimplyFtp/ftps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/SdSimplyFtp/ftps.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/SdSimplyFtp/ftpsser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/SdSimplyFtp/ftpsser.c -------------------------------------------------------------------------------- /development/rtl87xx/libraries/SdSimplyFtp/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/SdSimplyFtp/library.properties -------------------------------------------------------------------------------- /development/rtl87xx/libraries/SoftwareSerial/Adafruit_GPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/SoftwareSerial/Adafruit_GPS.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/SoftwareSerial/Adafruit_GPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/SoftwareSerial/Adafruit_GPS.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/SoftwareSerial/Adafruit_GPS_README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/SoftwareSerial/Adafruit_GPS_README.txt -------------------------------------------------------------------------------- /development/rtl87xx/libraries/SoftwareSerial/PMS3003.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/SoftwareSerial/PMS3003.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/SoftwareSerial/PMS3003.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/SoftwareSerial/PMS3003.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/SoftwareSerial/SoftwareSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/SoftwareSerial/SoftwareSerial.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/SoftwareSerial/SoftwareSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/SoftwareSerial/SoftwareSerial.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/SoftwareSerial/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/SoftwareSerial/keywords.txt -------------------------------------------------------------------------------- /development/rtl87xx/libraries/SoftwareSerial/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/SoftwareSerial/library.properties -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Spiffs/Spiffs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Spiffs/Spiffs.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Spiffs/Spiffs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Spiffs/Spiffs.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Spiffs/SpiffsImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Spiffs/SpiffsImpl.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Spiffs/examples/SPIFFStest/SPIFFStest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Spiffs/examples/SPIFFStest/SPIFFStest.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Spiffs/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Spiffs/library.properties -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Spiffs/spiffs_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Spiffs/spiffs_api.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Spiffs/spiffs_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Spiffs/spiffs_api.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Spiffs/spiffs_hal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Spiffs/spiffs_hal.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/UVC/UVC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/UVC/UVC.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/UVC/UVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/UVC/UVC.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/UVC/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/UVC/keywords.txt -------------------------------------------------------------------------------- /development/rtl87xx/libraries/UVC/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/UVC/library.properties -------------------------------------------------------------------------------- /development/rtl87xx/libraries/UVC/uvc_basic/uvc_basic.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/UVC/uvc_basic/uvc_basic.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/UVC/uvc_jpeg_capture/uvc_jpeg_capture.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/UVC/uvc_jpeg_capture/uvc_jpeg_capture.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/UVC/uvc_jpeg_capture/windows/jpeg_tcp_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/UVC/uvc_jpeg_capture/windows/jpeg_tcp_server.c -------------------------------------------------------------------------------- /development/rtl87xx/libraries/UVC/uvc_jpeg_capture/windows/jpeg_tcp_server.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/UVC/uvc_jpeg_capture/windows/jpeg_tcp_server.exe -------------------------------------------------------------------------------- /development/rtl87xx/libraries/UVC/uvc_send_video_frames/uvc_send_video_frames.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/UVC/uvc_send_video_frames/uvc_send_video_frames.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/UVC/uvc_send_video_frames/windows/yuvplayer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/UVC/uvc_send_video_frames/windows/yuvplayer.exe -------------------------------------------------------------------------------- /development/rtl87xx/libraries/UVC/uvc_send_video_frames/windows/yuyv_tcp_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/UVC/uvc_send_video_frames/windows/yuyv_tcp_server.c -------------------------------------------------------------------------------- /development/rtl87xx/libraries/UVC/uvc_send_video_frames/windows/yuyv_tcp_server.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/UVC/uvc_send_video_frames/windows/yuyv_tcp_server.exe -------------------------------------------------------------------------------- /development/rtl87xx/libraries/UVC/uvc_with_ap_mode/uvc_with_ap_mode.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/UVC/uvc_with_ap_mode/uvc_with_ap_mode.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/WiFi/examples/ConnectNoEncryption/ConnectNoEncryption.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/WiFi/examples/ConnectNoEncryption/ConnectNoEncryption.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/WiFi/examples/ConnectWithWEP/ConnectWithWEP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/WiFi/examples/ConnectWithWEP/ConnectWithWEP.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/WiFi/examples/ConnectWithWPA/ConnectWithWPA.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/WiFi/examples/ConnectWithWPA/ConnectWithWPA.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/WiFi/examples/ScanNetworks/ScanNetworks.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/WiFi/examples/ScanNetworks/ScanNetworks.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/WiFi/examples/SimpleServerWiFi/SimpleServerWiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/WiFi/examples/SimpleServerWiFi/SimpleServerWiFi.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/WiFi/examples/SimpleWebServerWiFi/SimpleWebServerWiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/WiFi/examples/SimpleWebServerWiFi/SimpleWebServerWiFi.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/WiFi/examples/WebSocketClient/WebSocketClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/WiFi/examples/WebSocketClient/WebSocketClient.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/WiFi/examples/WiFiAPMode/WiFiAPMode.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/WiFi/examples/WiFiAPMode/WiFiAPMode.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/WiFi/examples/WiFiSSLClient/WiFiSSLClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/WiFi/examples/WiFiSSLClient/WiFiSSLClient.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/WiFi/examples/WiFiUdpNtpClient/WiFiUdpNtpClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/WiFi/examples/WiFiUdpNtpClient/WiFiUdpNtpClient.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/WiFi/examples/WiFiWebClient/WiFiWebClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/WiFi/examples/WiFiWebClient/WiFiWebClient.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/WiFi/examples/WiFiWebServer/WiFiWebServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/WiFi/examples/WiFiWebServer/WiFiWebServer.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/WiFi/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/WiFi/keywords.txt -------------------------------------------------------------------------------- /development/rtl87xx/libraries/WiFi/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/WiFi/library.properties -------------------------------------------------------------------------------- /development/rtl87xx/libraries/WiFi/src/WiFi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/WiFi/src/WiFi.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/WiFi/src/WiFi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/WiFi/src/WiFi.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/WiFi/src/WiFiClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/WiFi/src/WiFiClient.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/WiFi/src/WiFiClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/WiFi/src/WiFiClient.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/WiFi/src/WiFiSSLClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/WiFi/src/WiFiSSLClient.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/WiFi/src/WiFiSSLClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/WiFi/src/WiFiSSLClient.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/WiFi/src/WiFiServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/WiFi/src/WiFiServer.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/WiFi/src/WiFiServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/WiFi/src/WiFiServer.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/WiFi/src/WiFiUdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/WiFi/src/WiFiUdp.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/WiFi/src/WiFiUdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/WiFi/src/WiFiUdp.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Wire/I2CIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Wire/I2CIO.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Wire/I2CIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Wire/I2CIO.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Wire/LCD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Wire/LCD.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Wire/LCD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Wire/LCD.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Wire/LICENCE_LCD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Wire/LICENCE_LCD.txt -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Wire/LiquidCrystal_I2C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Wire/LiquidCrystal_I2C.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Wire/LiquidCrystal_I2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Wire/LiquidCrystal_I2C.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Wire/Wire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Wire/Wire.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Wire/Wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Wire/Wire.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Wire/examples/LcdHelloWorld/LcdHelloWorld.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Wire/examples/LcdHelloWorld/LcdHelloWorld.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Wire/examples/MLX90614/MLX90614.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Wire/examples/MLX90614/MLX90614.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Wire/examples/master_reader/master_reader.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Wire/examples/master_reader/master_reader.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Wire/examples/master_writer/master_writer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Wire/examples/master_writer/master_writer.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Wire/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Wire/keywords.txt -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Wire/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Wire/library.properties -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Xively/CountingStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Xively/CountingStream.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Xively/Xively.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Xively/Xively.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Xively/XivelyClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Xively/XivelyClient.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Xively/XivelyClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Xively/XivelyClient.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Xively/XivelyDatastream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Xively/XivelyDatastream.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Xively/XivelyDatastream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Xively/XivelyDatastream.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Xively/XivelyFeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Xively/XivelyFeed.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Xively/XivelyFeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Xively/XivelyFeed.h -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Xively/examples/WiFiUploadPM2.5Data/WiFiUploadPM2.5Data.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Xively/examples/WiFiUploadPM2.5Data/WiFiUploadPM2.5Data.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Xively/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Xively/keywords.txt -------------------------------------------------------------------------------- /development/rtl87xx/libraries/Xively/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/Xively/library.properties -------------------------------------------------------------------------------- /development/rtl87xx/libraries/ysPNG/HttpsPngWeatherInformer/HttpsPngWeatherInformer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/ysPNG/HttpsPngWeatherInformer/HttpsPngWeatherInformer.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/ysPNG/PNG2TFT/PNG2TFT.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/ysPNG/PNG2TFT/PNG2TFT.ino -------------------------------------------------------------------------------- /development/rtl87xx/libraries/ysPNG/damp_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/ysPNG/damp_c.py -------------------------------------------------------------------------------- /development/rtl87xx/libraries/ysPNG/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/ysPNG/library.properties -------------------------------------------------------------------------------- /development/rtl87xx/libraries/ysPNG/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/ysPNG/test.png -------------------------------------------------------------------------------- /development/rtl87xx/libraries/ysPNG/yspng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/ysPNG/yspng.cpp -------------------------------------------------------------------------------- /development/rtl87xx/libraries/ysPNG/yspng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/libraries/ysPNG/yspng.h -------------------------------------------------------------------------------- /development/rtl87xx/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/platform.txt -------------------------------------------------------------------------------- /development/rtl87xx/programmers.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /development/rtl87xx/system/libs/lib_lwip.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/libs/lib_lwip.a -------------------------------------------------------------------------------- /development/rtl87xx/system/libs/lib_mdns.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/libs/lib_mdns.a -------------------------------------------------------------------------------- /development/rtl87xx/system/libs/lib_mmf.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/libs/lib_mmf.a -------------------------------------------------------------------------------- /development/rtl87xx/system/libs/lib_p2p.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/libs/lib_p2p.a -------------------------------------------------------------------------------- /development/rtl87xx/system/libs/lib_rtl8195.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/libs/lib_rtl8195.a -------------------------------------------------------------------------------- /development/rtl87xx/system/libs/lib_rtl8710.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/libs/lib_rtl8710.a -------------------------------------------------------------------------------- /development/rtl87xx/system/libs/lib_rtl8711am.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/libs/lib_rtl8711am.a -------------------------------------------------------------------------------- /development/rtl87xx/system/libs/lib_rtlstd.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/libs/lib_rtlstd.a -------------------------------------------------------------------------------- /development/rtl87xx/system/libs/lib_rtsp.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/libs/lib_rtsp.a -------------------------------------------------------------------------------- /development/rtl87xx/system/libs/lib_sdcard_v2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/libs/lib_sdcard_v2.a -------------------------------------------------------------------------------- /development/rtl87xx/system/libs/lib_ssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/libs/lib_ssl.a -------------------------------------------------------------------------------- /development/rtl87xx/system/libs/lib_usbd.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/libs/lib_usbd.a -------------------------------------------------------------------------------- /development/rtl87xx/system/libs/lib_usbh.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/libs/lib_usbh.a -------------------------------------------------------------------------------- /development/rtl87xx/system/libs/lib_uvc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/libs/lib_uvc.a -------------------------------------------------------------------------------- /development/rtl87xx/system/libs/lib_websocket.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/libs/lib_websocket.a -------------------------------------------------------------------------------- /development/rtl87xx/system/libs/lib_wlan.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/libs/lib_wlan.a -------------------------------------------------------------------------------- /development/rtl87xx/system/libs/lib_wps.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/libs/lib_wps.a -------------------------------------------------------------------------------- /development/rtl87xx/system/libs/lib_xmodem.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/libs/lib_xmodem.a -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/api/at_cmd/atcmd_lwip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/api/at_cmd/atcmd_lwip.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/api/at_cmd/atcmd_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/api/at_cmd/atcmd_sys.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/api/at_cmd/atcmd_wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/api/at_cmd/atcmd_wifi.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/api/at_cmd/log_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/api/at_cmd/log_service.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/api/lwip_netconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/api/lwip_netconf.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/api/network/include/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/api/network/include/main.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/api/network/include/main_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/api/network/include/main_test.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/api/network/include/netconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/api/network/include/netconf.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/api/network/include/rtl8195a_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/api/network/include/rtl8195a_it.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/api/network/include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/api/network/include/util.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/api/platform/dlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/api/platform/dlist.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/api/platform/platform_stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/api/platform/platform_stdlib.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/api/wifi/rtw_wowlan/wifi_wowlan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/api/wifi/rtw_wowlan/wifi_wowlan.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/api/wifi/wifi_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/api/wifi/wifi_conf.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/api/wifi/wifi_conf.h.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/api/wifi/wifi_conf.h.1 -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/api/wifi/wifi_ind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/api/wifi/wifi_ind.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/api/wifi/wifi_simple_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/api/wifi/wifi_simple_config.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/api/wifi/wifi_simple_config_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/api/wifi/wifi_simple_config_parser.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/api/wifi/wifi_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/api/wifi/wifi_util.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/api/wifi_interactive_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/api/wifi_interactive_ext.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/application/google/google_nest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/application/google/google_nest.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/application/uart_adapter/uart_adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/application/uart_adapter/uart_adapter.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/application/wigadget/cloud_link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/application/wigadget/cloud_link.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/application/wigadget/shtc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/application/wigadget/shtc1.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/application/wigadget/wigadget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/application/wigadget/wigadget.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/application/xmodem/xmodem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/application/xmodem/xmodem.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/application/xmodem/xmport_loguart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/application/xmodem/xmport_loguart.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/application/xmodem/xmport_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/application/xmodem/xmport_uart.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/audio/g711_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/audio/g711_codec.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/drivers/ethernet_mii/ethernet_mii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/drivers/ethernet_mii/ethernet_mii.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/drivers/i2s/sgtl5000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/drivers/i2s/sgtl5000.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/drivers/sdio/realtek/sdio_host/inc/sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/drivers/sdio/realtek/sdio_host/inc/sd.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/drivers/usb_class/host/uvc/inc/uvc_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/drivers/usb_class/host/uvc/inc/uvc_intf.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/drivers/usb_class/host/uvc/inc/uvcvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/drivers/usb_class/host/uvc/inc/uvcvideo.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/drivers/usb_class/host/uvc/inc/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/drivers/usb_class/host/uvc/inc/video.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/drivers/wlan/realtek/include/autoconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/drivers/wlan/realtek/include/autoconf.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/drivers/wlan/realtek/include/drv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/drivers/wlan/realtek/include/drv_conf.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/drivers/wlan/realtek/include/rom_aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/drivers/wlan/realtek/include/rom_aes.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/drivers/wlan/realtek/include/rtw_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/drivers/wlan/realtek/include/rtw_debug.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/drivers/wlan/realtek/src/osdep/skbuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/drivers/wlan/realtek/src/osdep/skbuff.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/drivers/wlan/realtek/src/osdep/wireless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/drivers/wlan/realtek/src/osdep/wireless.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/example/example_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/example/example_entry.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/example/uvc/example_mjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/example/uvc/example_mjpeg.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/example/uvc/example_uvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/example/uvc/example_uvc.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/example/uvc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/example/uvc/readme.txt -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/example/xml/example_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/example/xml/example_xml.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/example/xml/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/example/xml/readme.txt -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/file_system/fatfs/disk_if/inc/atadrive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/file_system/fatfs/disk_if/inc/atadrive.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/file_system/fatfs/disk_if/inc/sdcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/file_system/fatfs/disk_if/inc/sdcard.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/file_system/fatfs/disk_if/inc/usbdisk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/file_system/fatfs/disk_if/inc/usbdisk.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/file_system/fatfs/fatfs_ext/inc/ff_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/file_system/fatfs/fatfs_ext/inc/ff_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/file_system/fatfs/r0.10c/include/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/file_system/fatfs/r0.10c/include/diskio.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/file_system/fatfs/r0.10c/include/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/file_system/fatfs/r0.10c/include/ff.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/file_system/fatfs/r0.10c/include/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/file_system/fatfs/r0.10c/include/ffconf.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/api/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/api/error.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/api/mbed_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/api/mbed_assert.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/api/rtc_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/api/rtc_time.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/api/wait_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/api/wait_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/common/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/common/Makefile -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/hal/analogin_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/hal/analogin_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/hal/analogout_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/hal/analogout_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/hal/can_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/hal/can_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/hal/ethernet_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/hal/ethernet_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/hal/gpio_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/hal/gpio_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/hal/gpio_irq_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/hal/gpio_irq_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/hal/i2c_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/hal/i2c_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/hal/pinmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/hal/pinmap.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/hal/port_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/hal/port_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/hal/pwmout_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/hal/pwmout_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/hal/rtc_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/hal/rtc_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/hal/serial_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/hal/serial_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/hal/sleep_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/hal/sleep_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/hal/spi_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/hal/spi_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/hal/us_ticker_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/hal/us_ticker_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/hal_ext/dma_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/hal_ext/dma_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/hal_ext/efuse_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/hal_ext/efuse_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/hal_ext/ethernet_ex_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/hal_ext/ethernet_ex_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/hal_ext/ex_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/hal_ext/ex_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/hal_ext/flash_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/hal_ext/flash_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/hal_ext/flash_eep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/hal_ext/flash_eep.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/hal_ext/gpio_ex_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/hal_ext/gpio_ex_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/hal_ext/gpio_irq_ex_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/hal_ext/gpio_irq_ex_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/hal_ext/i2c_ex_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/hal_ext/i2c_ex_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/hal_ext/i2s_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/hal_ext/i2s_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/hal_ext/log_uart_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/hal_ext/log_uart_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/hal_ext/nfc_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/hal_ext/nfc_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/hal_ext/serial_ex_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/hal_ext/serial_ex_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/hal_ext/sleep_ex_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/hal_ext/sleep_ex_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/hal_ext/spdio_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/hal_ext/spdio_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/hal_ext/spi_ex_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/hal_ext/spi_ex_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/hal_ext/sys_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/hal_ext/sys_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/hal_ext/wdt_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/hal_ext/wdt_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/targets/cmsis/rtl8195a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/targets/cmsis/rtl8195a -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/targets/hal/rtl8195a/PinNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/targets/hal/rtl8195a/PinNames.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/targets/hal/rtl8195a/PortNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/targets/hal/rtl8195a/PortNames.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/targets/hal/rtl8195a/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/targets/hal/rtl8195a/device.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/targets/hal/rtl8195a/gpio_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/targets/hal/rtl8195a/gpio_object.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/targets/hal/rtl8195a/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/targets/hal/rtl8195a/objects.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/mbed/targets/hal/rtl8195a/timer_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/mbed/targets/hal/rtl8195a/timer_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/media/codec/aac/aac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/media/codec/aac/aac.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/media/codec/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/media/codec/avcodec.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/media/codec/g711/g711.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/media/codec/g711/g711.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/media/codec/h264/h264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/media/codec/h264/h264.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/media/codec/mjpeg/mjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/media/codec/mjpeg/mjpeg.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/media/framework/mmf_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/media/framework/mmf_common.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/media/framework/mmf_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/media/framework/mmf_sink.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/media/framework/mmf_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/media/framework/mmf_source.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/media/muxer/mp4_encap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/media/muxer/mp4_encap.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/network/dhcp/dhcps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/network/dhcp/dhcps.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/network/lwip/lwip_v1.4.1/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/network/lwip/lwip_v1.4.1/CHANGELOG -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/network/lwip/lwip_v1.4.1/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/network/lwip/lwip_v1.4.1/COPYING -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/network/lwip/lwip_v1.4.1/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/network/lwip/lwip_v1.4.1/FILES -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/network/lwip/lwip_v1.4.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/network/lwip/lwip_v1.4.1/README -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/network/lwip/lwip_v1.4.1/UPGRADING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/network/lwip/lwip_v1.4.1/UPGRADING -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/network/lwip/lwip_v1.4.1/doc/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/network/lwip/lwip_v1.4.1/doc/FILES -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/network/lwip/lwip_v1.4.1/doc/contrib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/network/lwip/lwip_v1.4.1/doc/contrib.txt -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/network/lwip/lwip_v1.4.1/doc/rawapi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/network/lwip/lwip_v1.4.1/doc/rawapi.txt -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/network/lwip/lwip_v1.4.1/doc/savannah.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/network/lwip/lwip_v1.4.1/doc/savannah.txt -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/network/lwip/lwip_v1.4.1/doc/sys_arch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/network/lwip/lwip_v1.4.1/doc/sys_arch.txt -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/network/lwip/lwip_v1.4.1/src/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/network/lwip/lwip_v1.4.1/src/FILES -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/network/lwip/lwip_v1.4.1/src/core/ipv6/README: -------------------------------------------------------------------------------- 1 | IPv6 support in lwIP is very experimental. 2 | -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/network/lwip/lwip_v1.4.1/src/include/netif/loopif.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/network/lwip/lwip_v1.4.1/src/netif/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/network/lwip/lwip_v1.4.1/src/netif/FILES -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/network/mdns/mDNS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/network/mdns/mDNS.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/network/rtsp/rtp_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/network/rtsp/rtp_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/network/rtsp/rtsp_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/network/rtsp/rtsp_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/network/rtsp/sdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/network/rtsp/sdp.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/network/rtsp/src2rtsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/network/rtsp/src2rtsp.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/network/sntp/sntp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/network/sntp/sntp.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/network/ssl/polarssl-1.3.8/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/network/ssl/polarssl-1.3.8/Makefile -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/network/ssl/polarssl-1.3.8/library/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | libpolarssl* 3 | -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/network/ssl/polarssl-1.3.8/ssl_rom.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/network/ssl/polarssl-1.3.8/ssl_rom.mk -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/network/websocket/libwsclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/network/websocket/libwsclient.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/network/websocket/wsclient_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/network/websocket/wsclient_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/test/wlan/wlan_test_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/test/wlan/wlan_test_inc.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/utilities/cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/utilities/cJSON.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/utilities/cloud_updater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/utilities/cloud_updater.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/utilities/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/utilities/http.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/utilities/http_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/utilities/http_client.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/utilities/uart_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/utilities/uart_socket.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/utilities/uart_ymodem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/utilities/uart_ymodem.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/utilities/update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/utilities/update.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/utilities/webserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/utilities/webserver.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/utilities/xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/utilities/xml.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/video/v4l2/inc/media-device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/video/v4l2/inc/media-device.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/video/v4l2/inc/media-devnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/video/v4l2/inc/media-devnode.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/video/v4l2/inc/media-entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/video/v4l2/inc/media-entity.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/video/v4l2/inc/uapi_v4l2-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/video/v4l2/inc/uapi_v4l2-common.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/video/v4l2/inc/uapi_videodev2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/video/v4l2/inc/uapi_videodev2.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/video/v4l2/inc/v4l2-async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/video/v4l2/inc/v4l2-async.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/video/v4l2/inc/v4l2-clk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/video/v4l2/inc/v4l2-clk.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/video/v4l2/inc/v4l2-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/video/v4l2/inc/v4l2-common.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/video/v4l2/inc/v4l2-controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/video/v4l2/inc/v4l2-controls.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/video/v4l2/inc/v4l2-ctrls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/video/v4l2/inc/v4l2-ctrls.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/video/v4l2/inc/v4l2-dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/video/v4l2/inc/v4l2-dev.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/video/v4l2/inc/v4l2-device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/video/v4l2/inc/v4l2-device.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/video/v4l2/inc/v4l2-event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/video/v4l2/inc/v4l2-event.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/video/v4l2/inc/v4l2-fh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/video/v4l2/inc/v4l2-fh.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/video/v4l2/inc/v4l2-int-device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/video/v4l2/inc/v4l2-int-device.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/video/v4l2/inc/v4l2-ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/video/v4l2/inc/v4l2-ioctl.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/video/v4l2/inc/v4l2-mediabus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/video/v4l2/inc/v4l2-mediabus.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/video/v4l2/inc/v4l2-osdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/video/v4l2/inc/v4l2-osdep.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/video/v4l2/inc/v4l2-subdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/video/v4l2/inc/v4l2-subdev.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/video/v4l2/inc/v4l2_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/video/v4l2/inc/v4l2_driver.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/video/v4l2/inc/v4l2_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/video/v4l2/inc/v4l2_intf.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/video/v4l2/inc/videobuf2-core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/video/v4l2/inc/videobuf2-core.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/video/v4l2/inc/videobuf2-memops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/video/v4l2/inc/videobuf2-memops.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/video/v4l2/inc/videobuf2-vmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/video/v4l2/inc/videobuf2-vmalloc.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/common/video/v4l2/inc/videodev2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/common/video/v4l2/inc/videodev2.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/os/freertos/cmsis_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/os/freertos/cmsis_os.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/os/freertos/freertos_pmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/os/freertos/freertos_pmu.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/os/freertos/freertos_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/os/freertos/freertos_service.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/os/freertos/freertos_v8.1.2/License/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/os/freertos/freertos_v8.1.2/License/license.txt -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/os/freertos/freertos_v8.1.2/Source/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/os/freertos/freertos_v8.1.2/Source/Makefile -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/os/freertos/freertos_v8.1.2/Source/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/os/freertos/freertos_v8.1.2/Source/readme.txt -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/os/os_dep/include/device_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/os/os_dep/include/device_lock.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/os/os_dep/include/mailbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/os/os_dep/include/mailbox.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/os/os_dep/include/os_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/os/os_dep/include/os_support.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/os/os_dep/include/os_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/os/os_dep/include/os_timer.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/os/os_dep/include/osdep_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/os/os_dep/include/osdep_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/os/os_dep/include/osdep_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/os/os_dep/include/osdep_service.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/os/os_dep/include/tcm_heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/os/os_dep/include/tcm_heap.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/cmsis/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/cmsis/core_cm3.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/cmsis/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/cmsis/core_cmFunc.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/cmsis/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/cmsis/core_cmInstr.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/cmsis/device/cmsis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/cmsis/device/cmsis.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/cmsis/device/diag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/cmsis/device/diag.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/cmsis/device/diag.h.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/cmsis/device/diag.h.1 -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/cmsis/device/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/cmsis/device/rand.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/cmsis/device/rtl_stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/cmsis/device/rtl_stdlib.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/cmsis/device/rtl_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/cmsis/device/rtl_utility.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/cmsis/device/strproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/cmsis/device/strproc.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/cmsis/device/system_8195a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/cmsis/device/system_8195a.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/cmsis/device/va_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/cmsis/device/va_list.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_adc.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_api.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_common.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_crypto.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_dac.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_diag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_diag.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_efuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_efuse.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_gdma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_gdma.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_gpio.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_i2c.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_i2s.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_irqn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_irqn.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_log_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_log_uart.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_mii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_mii.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_misc.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_nfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_nfc.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_pcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_pcm.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_peri_on.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_peri_on.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_pinmux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_pinmux.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_platform.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_pwm.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_sdio.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_sdio_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_sdio_host.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_sdr_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_sdr_controller.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_spi_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_spi_flash.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_ssi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_ssi.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_timer.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_uart.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_usb.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_util.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_vector_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/hal_vector_table.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/rtl8195a/Descript.ion: -------------------------------------------------------------------------------- 1 | rtl8195a_sys_on.h ++ 2 | -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/src/Descript.ion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/src/Descript.ion -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/src/hal_efuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/src/hal_efuse.c -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/src/hal_pinmux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/fwlib/src/hal_pinmux.c -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/misc/bsp/image/ram_1.p.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/misc/bsp/image/ram_1.p.bin -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/misc/bsp/image/ram_1.r.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/misc/bsp/image/ram_1.r.bin -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/misc/bsp/lib/va0/rom.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/misc/bsp/lib/va0/rom.a -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/misc/driver/rtl_consol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/misc/driver/rtl_consol.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/8195a/misc/gcc_utility/ram_all.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/8195a/misc/gcc_utility/ram_all.bin -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/common/bsp/basic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/common/bsp/basic_types.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/component/soc/realtek/common/bsp/section_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/component/soc/realtek/common/bsp/section_config.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/project/rtl8710/inc/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/project/rtl8710/inc/FreeRTOSConfig.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/project/rtl8710/inc/build_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/project/rtl8710/inc/build_info.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/project/rtl8710/inc/lwipopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/project/rtl8710/inc/lwipopts.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/project/rtl8710/inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/project/rtl8710/inc/main.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/project/rtl8710/inc/platform_autoconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/project/rtl8710/inc/platform_autoconf.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/project/rtl8710/inc/platform_opts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/project/rtl8710/inc/platform_opts.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/project/rtl8710/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/project/rtl8710/src/main.c -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/project/rtl8711am/inc/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/project/rtl8711am/inc/FreeRTOSConfig.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/project/rtl8711am/inc/build_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/project/rtl8711am/inc/build_info.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/project/rtl8711am/inc/lwipopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/project/rtl8711am/inc/lwipopts.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/project/rtl8711am/inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/project/rtl8711am/inc/main.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/project/rtl8711am/inc/platform_autoconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/project/rtl8711am/inc/platform_autoconf.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/project/rtl8711am/inc/platform_opts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/project/rtl8711am/inc/platform_opts.h -------------------------------------------------------------------------------- /development/rtl87xx/system/sdk/project/rtl8711am/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/system/sdk/project/rtl8711am/src/main.c -------------------------------------------------------------------------------- /development/rtl87xx/tools/DownloadServer/DownloadServer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/tools/DownloadServer/DownloadServer.exe -------------------------------------------------------------------------------- /development/rtl87xx/tools/DownloadServer/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/tools/DownloadServer/readme.txt -------------------------------------------------------------------------------- /development/rtl87xx/tools/DownloadServer/start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/tools/DownloadServer/start.bat -------------------------------------------------------------------------------- /development/rtl87xx/tools/Iperf/iperf.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/tools/Iperf/iperf.exe -------------------------------------------------------------------------------- /development/rtl87xx/tools/Iperf/iperf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/tools/Iperf/iperf.txt -------------------------------------------------------------------------------- /development/rtl87xx/tools/Iperf/ipref_client.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/tools/Iperf/ipref_client.bat -------------------------------------------------------------------------------- /development/rtl87xx/tools/Iperf/ipref_server.bat: -------------------------------------------------------------------------------- 1 | iperf.exe -s -i 1 -p 5002 -------------------------------------------------------------------------------- /development/rtl87xx/tools/JLink-RdFullFlash.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/tools/JLink-RdFullFlash.bat -------------------------------------------------------------------------------- /development/rtl87xx/tools/JLink-Reset.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/tools/JLink-Reset.bat -------------------------------------------------------------------------------- /development/rtl87xx/tools/JLink-RunRAM.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/tools/JLink-RunRAM.bat -------------------------------------------------------------------------------- /development/rtl87xx/tools/JLink.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/tools/JLink.exe -------------------------------------------------------------------------------- /development/rtl87xx/tools/JLinkARM.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/tools/JLinkARM.dll -------------------------------------------------------------------------------- /development/rtl87xx/tools/JLinkGDBServer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/tools/JLinkGDBServer.exe -------------------------------------------------------------------------------- /development/rtl87xx/tools/JLinkGDB_IMG.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/tools/JLinkGDB_IMG.bat -------------------------------------------------------------------------------- /development/rtl87xx/tools/JLinkGDB_IMG.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/tools/JLinkGDB_IMG.cmd -------------------------------------------------------------------------------- /development/rtl87xx/tools/JLinkGDB_OTA.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/tools/JLinkGDB_OTA.bat -------------------------------------------------------------------------------- /development/rtl87xx/tools/JLinkGDB_OTA.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/tools/JLinkGDB_OTA.cmd -------------------------------------------------------------------------------- /development/rtl87xx/tools/OTA_RTLDuino.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/tools/OTA_RTLDuino.bin -------------------------------------------------------------------------------- /development/rtl87xx/tools/RTL00Flasher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/tools/RTL00Flasher.exe -------------------------------------------------------------------------------- /development/rtl87xx/tools/RTL_FFlash.JLinkScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/tools/RTL_FFlash.JLinkScript -------------------------------------------------------------------------------- /development/rtl87xx/tools/RTL_Reset.JLinkScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/tools/RTL_Reset.JLinkScript -------------------------------------------------------------------------------- /development/rtl87xx/tools/RunRAM.JLinkScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/tools/RunRAM.JLinkScript -------------------------------------------------------------------------------- /development/rtl87xx/tools/boot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/tools/boot.bin -------------------------------------------------------------------------------- /development/rtl87xx/tools/gdb_img.jlink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/tools/gdb_img.jlink -------------------------------------------------------------------------------- /development/rtl87xx/tools/gdb_ota.jlink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/tools/gdb_ota.jlink -------------------------------------------------------------------------------- /development/rtl87xx/tools/jlink_upload.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/tools/jlink_upload.bat -------------------------------------------------------------------------------- /development/rtl87xx/tools/jlink_upload.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/tools/jlink_upload.cmd -------------------------------------------------------------------------------- /development/rtl87xx/tools/jlink_uploadam.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/tools/jlink_uploadam.cmd -------------------------------------------------------------------------------- /development/rtl87xx/tools/mkspiffs.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/tools/mkspiffs.exe -------------------------------------------------------------------------------- /development/rtl87xx/tools/rtl8710_flasher.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/tools/rtl8710_flasher.bin -------------------------------------------------------------------------------- /development/rtl87xx/tools/run_ram.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/tools/run_ram.bin -------------------------------------------------------------------------------- /development/rtl87xx/variants/rtl8195/linker_scripts/gcc/export-rom_v04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/variants/rtl8195/linker_scripts/gcc/export-rom_v04.txt -------------------------------------------------------------------------------- /development/rtl87xx/variants/rtl8195/linker_scripts/gcc/rtl8195-symbol-v04-img3.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/variants/rtl8195/linker_scripts/gcc/rtl8195-symbol-v04-img3.ld -------------------------------------------------------------------------------- /development/rtl87xx/variants/rtl8195/linker_scripts/gcc/sdram_bss.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/variants/rtl8195/linker_scripts/gcc/sdram_bss.txt -------------------------------------------------------------------------------- /development/rtl87xx/variants/rtl8195/linker_scripts/gcc/sdram_obj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/variants/rtl8195/linker_scripts/gcc/sdram_obj.txt -------------------------------------------------------------------------------- /development/rtl87xx/variants/rtl8195/linker_scripts/gcc/sdram_obj_bss.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/variants/rtl8195/linker_scripts/gcc/sdram_obj_bss.txt -------------------------------------------------------------------------------- /development/rtl87xx/variants/rtl8195/linker_scripts/gcc/sdram_obj_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/variants/rtl8195/linker_scripts/gcc/sdram_obj_data.txt -------------------------------------------------------------------------------- /development/rtl87xx/variants/rtl8195/linker_scripts/gcc/sdram_obj_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/variants/rtl8195/linker_scripts/gcc/sdram_obj_list.txt -------------------------------------------------------------------------------- /development/rtl87xx/variants/rtl8195/linker_scripts/gcc/sdram_obj_rodata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/variants/rtl8195/linker_scripts/gcc/sdram_obj_rodata.txt -------------------------------------------------------------------------------- /development/rtl87xx/variants/rtl8195/linker_scripts/gcc/sdram_obj_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/variants/rtl8195/linker_scripts/gcc/sdram_obj_text.txt -------------------------------------------------------------------------------- /development/rtl87xx/variants/rtl8195/linker_scripts/gcc/symbol_black_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/variants/rtl8195/linker_scripts/gcc/symbol_black_list.txt -------------------------------------------------------------------------------- /development/rtl87xx/variants/rtl8195/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/variants/rtl8195/pins_arduino.h -------------------------------------------------------------------------------- /development/rtl87xx/variants/rtl8195/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/variants/rtl8195/variant.cpp -------------------------------------------------------------------------------- /development/rtl87xx/variants/rtl8195/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/variants/rtl8195/variant.h -------------------------------------------------------------------------------- /development/rtl87xx/variants/rtl8710/linker_scripts/gcc/export-rom_v04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/variants/rtl8710/linker_scripts/gcc/export-rom_v04.txt -------------------------------------------------------------------------------- /development/rtl87xx/variants/rtl8710/linker_scripts/gcc/symbol_black_list.txt: -------------------------------------------------------------------------------- 1 | analogRead RTL8710 do not support ADC -------------------------------------------------------------------------------- /development/rtl87xx/variants/rtl8710/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/variants/rtl8710/pins_arduino.h -------------------------------------------------------------------------------- /development/rtl87xx/variants/rtl8710/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/variants/rtl8710/variant.cpp -------------------------------------------------------------------------------- /development/rtl87xx/variants/rtl8710/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/variants/rtl8710/variant.h -------------------------------------------------------------------------------- /development/rtl87xx/variants/rtl8711am/linker_scripts/gcc/export-rom_v04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/variants/rtl8711am/linker_scripts/gcc/export-rom_v04.txt -------------------------------------------------------------------------------- /development/rtl87xx/variants/rtl8711am/linker_scripts/gcc/sdram_obj_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/variants/rtl8711am/linker_scripts/gcc/sdram_obj_list.txt -------------------------------------------------------------------------------- /development/rtl87xx/variants/rtl8711am/linker_scripts/gcc/symbol_black_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/variants/rtl8711am/linker_scripts/gcc/symbol_black_list.txt -------------------------------------------------------------------------------- /development/rtl87xx/variants/rtl8711am/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/variants/rtl8711am/pins_arduino.h -------------------------------------------------------------------------------- /development/rtl87xx/variants/rtl8711am/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/variants/rtl8711am/variant.cpp -------------------------------------------------------------------------------- /development/rtl87xx/variants/rtl8711am/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/RtlDuino/HEAD/development/rtl87xx/variants/rtl8711am/variant.h --------------------------------------------------------------------------------