Skip to content

Instantly share code, notes, and snippets.

View phreda4's full-sized avatar

Pablo Hugo Reda phreda4

View GitHub Profile
@adumont
adumont / make.sh
Created October 8, 2022 18:15
building esp32forth via command line
# Arduino Installation directory
ARDUINO_DIR=~/opt/arduino-1.8.13
ESP32_DIR=~/.arduino15/packages/esp32
BUILD_DIR=/tmp/.build
CACHE_DIR=/tmp/.cache
SOURCE_DIR=~/esp32c3/esp32forth/ESP32forth
# Cleaning
[ -d "${BUILD_DIR}" ] && rm -rf ${BUILD_DIR}
[ -d "${CACHE_DIR}" ] && rm -rf ${CACHE_DIR}