├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── main ├── component.mk ├── https_client.c ├── https_client.h ├── iap.c ├── iap.h ├── iap_https.c ├── iap_https.h ├── main.c ├── main.h ├── wifi_sta.c ├── wifi_sta.h ├── wifi_tls.c └── wifi_tls.h ├── meta └── ota.txt └── sdkconfig /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classycodeoss/esp32-ota-https/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classycodeoss/esp32-ota-https/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classycodeoss/esp32-ota-https/HEAD/README.md -------------------------------------------------------------------------------- /main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classycodeoss/esp32-ota-https/HEAD/main/component.mk -------------------------------------------------------------------------------- /main/https_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classycodeoss/esp32-ota-https/HEAD/main/https_client.c -------------------------------------------------------------------------------- /main/https_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classycodeoss/esp32-ota-https/HEAD/main/https_client.h -------------------------------------------------------------------------------- /main/iap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classycodeoss/esp32-ota-https/HEAD/main/iap.c -------------------------------------------------------------------------------- /main/iap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classycodeoss/esp32-ota-https/HEAD/main/iap.h -------------------------------------------------------------------------------- /main/iap_https.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classycodeoss/esp32-ota-https/HEAD/main/iap_https.c -------------------------------------------------------------------------------- /main/iap_https.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classycodeoss/esp32-ota-https/HEAD/main/iap_https.h -------------------------------------------------------------------------------- /main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classycodeoss/esp32-ota-https/HEAD/main/main.c -------------------------------------------------------------------------------- /main/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classycodeoss/esp32-ota-https/HEAD/main/main.h -------------------------------------------------------------------------------- /main/wifi_sta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classycodeoss/esp32-ota-https/HEAD/main/wifi_sta.c -------------------------------------------------------------------------------- /main/wifi_sta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classycodeoss/esp32-ota-https/HEAD/main/wifi_sta.h -------------------------------------------------------------------------------- /main/wifi_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classycodeoss/esp32-ota-https/HEAD/main/wifi_tls.c -------------------------------------------------------------------------------- /main/wifi_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classycodeoss/esp32-ota-https/HEAD/main/wifi_tls.h -------------------------------------------------------------------------------- /meta/ota.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classycodeoss/esp32-ota-https/HEAD/meta/ota.txt -------------------------------------------------------------------------------- /sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classycodeoss/esp32-ota-https/HEAD/sdkconfig --------------------------------------------------------------------------------