build working

This commit is contained in:
bard
2025-12-05 20:25:22 -06:00
parent f40d2e6384
commit eebd26fa5c
6 changed files with 2040 additions and 265 deletions

5
.gitignore vendored
View File

@@ -1,2 +1,5 @@
build/ build/
lib/idf-tools/* lib/idf-tools/*
sdkconfig
sdkconfig.old

View File

@@ -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

View File

@@ -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

View File

@@ -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

2262
sdkconfig

File diff suppressed because it is too large Load Diff