build scripts and files

This commit is contained in:
bard
2025-12-05 18:37:36 -06:00
parent 8f99672cb3
commit f40d2e6384
9 changed files with 2199 additions and 6 deletions

View File

@@ -1,3 +1,10 @@
#!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 build

12
scripts/repo_setup.sh Normal file
View File

@@ -0,0 +1,12 @@
export IDF_TOOLS_PATH=lib/idf-tools
export IDF_PATH=lib/esp-idf
# if you get python ssl module errors- make sure your python version is 3.12 or lower
# esp-idf install scripts
bash ./${IDF_PATH}/install.sh esp32s3
source ${IDF_PATH}/export.sh
# target
idf.py set-target esp32s3