build working
This commit is contained in:
5
.gitignore
vendored
5
.gitignore
vendored
@@ -1,2 +1,5 @@
|
|||||||
build/
|
build/
|
||||||
lib/idf-tools/*
|
lib/idf-tools/*
|
||||||
|
|
||||||
|
sdkconfig
|
||||||
|
sdkconfig.old
|
||||||
@@ -1,3 +1,14 @@
|
|||||||
#!usr/bin/bash
|
|
||||||
|
|
||||||
# TODO: implement
|
#!/usr/bin/env bash
|
||||||
|
set -e
|
||||||
|
|
||||||
|
export IDF_TOOLS_PATH=${PWD}/lib/idf-tools
|
||||||
|
export IDF_PATH=${PWD}/lib/esp-idf
|
||||||
|
|
||||||
|
. ${IDF_PATH}/export.sh
|
||||||
|
|
||||||
|
idf.py fullclean
|
||||||
|
idf.py set-target esp32s3
|
||||||
|
idf.py -b 115200 flash
|
||||||
|
|
||||||
|
# idf.py autodetects port but use -p <port> to specify
|
||||||
|
|||||||
@@ -1,3 +1,12 @@
|
|||||||
#!usr/bin/bash
|
|
||||||
|
|
||||||
# TODO: implement
|
#!/usr/bin/env bash
|
||||||
|
set -e
|
||||||
|
|
||||||
|
export IDF_TOOLS_PATH=${PWD}/lib/idf-tools
|
||||||
|
export IDF_PATH=${PWD}/lib/esp-idf
|
||||||
|
|
||||||
|
. ${IDF_PATH}/export.sh
|
||||||
|
|
||||||
|
idf.py -b 115200 monitor
|
||||||
|
|
||||||
|
# idf.py autodetects port but use -p <port> to specify
|
||||||
@@ -1,12 +1,16 @@
|
|||||||
|
|
||||||
export IDF_TOOLS_PATH=lib/idf-tools
|
#!/usr/bin/env bash
|
||||||
export IDF_PATH=lib/esp-idf
|
set -e
|
||||||
|
|
||||||
|
export IDF_TOOLS_PATH=${PWD}/lib/idf-tools
|
||||||
|
export IDF_PATH=${PWD}/lib/esp-idf
|
||||||
|
|
||||||
# if you get python ssl module errors- make sure your python version is 3.12 or lower
|
# if you get python ssl module errors- make sure your python version is 3.12 or lower
|
||||||
|
|
||||||
# esp-idf install scripts
|
# esp-idf install scripts
|
||||||
bash ./${IDF_PATH}/install.sh esp32s3
|
bash ${IDF_PATH}/install.sh esp32s3
|
||||||
source ${IDF_PATH}/export.sh
|
source ${IDF_PATH}/export.sh
|
||||||
|
|
||||||
# target
|
# target
|
||||||
|
idf.py fullclean
|
||||||
idf.py set-target esp32s3
|
idf.py set-target esp32s3
|
||||||
|
|||||||
Reference in New Issue
Block a user