Skip to content

Commit 3b6d2d2

Browse files
committed
NOISSUE initial commit
0 parents  commit 3b6d2d2

17 files changed

+2872
-0
lines changed

Makefile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#
2+
# This is a project Makefile. It is assumed the directory this Makefile resides in is a
3+
# project subdirectory.
4+
#
5+
6+
PROJECT_NAME := esp32-ota-https
7+
CFLAGS += -save-temps
8+
9+
include $(IDF_PATH)/make/project.mk
10+
11+
upload:
12+
scp build/esp32-ota-https.bin [email protected]:/data/httpd/classycode.io/esp32

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# esp32-ota-https (ESP32 Secure over-the-air update)
2+
3+
esp32-ota-https is a demo application that shows how to securely download new firmware images to an ESP32 board.
4+
5+
More information is available on our blog: https://blog.classycode.com/TODO

main/component.mk

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#
2+
# Main Makefile. This is basically the same as a component makefile.
3+
#

0 commit comments

Comments
 (0)