7.1-dev
This commit is contained in:
@@ -21,17 +21,16 @@ Literally the most schizophrenically overengineered thing I have ever made. idk
|
|||||||
`changeport` opens a menu to select a serial port
|
`changeport` opens a menu to select a serial port
|
||||||
`clean` idf.py clean
|
`clean` idf.py clean
|
||||||
`fullclean` fully resets a project, 'idf.py fullclean' plus remove the build dir and delete some temp and backup files
|
`fullclean` fully resets a project, 'idf.py fullclean' plus remove the build dir and delete some temp and backup files
|
||||||
`menuconfig` alias of `idf.py menuconfig` b
|
|
||||||
`rebuildfull` does a `fullclean` but also an `erase-flash` and also `setup`
|
`rebuildfull` does a `fullclean` but also an `erase-flash` and also `setup`
|
||||||
`setup` same as running `idf.py set-target $ESPTARGET; idf.py menuconfig; idf.py build`
|
`setup` same as running `idf.py set-target $ESPTARGET; idf.py menuconfig; idf.py build`
|
||||||
`flash` alias of `idf.py flash`
|
`flash` idf.py flash
|
||||||
`flashmonitor` alias of `idf.py flash monitor`
|
|
||||||
`monitor` idf.py monitor
|
`monitor` idf.py monitor
|
||||||
`erase-flash` idf.py erase-flash
|
`erase-flash` idf.py erase-flash
|
||||||
`save-defconfig` idf.py save-defconfig
|
`save-defconfig` idf.py save-defconfig
|
||||||
`step-flash-monitor` attempt clean, build, flash, then monitor, dying on error. each ends before the next beings- found to be useful on the esp32c6
|
`step-flash-monitor` attempt clean, build, flash, then monitor, dying on error
|
||||||
`chipinfo` get information about the chip
|
`imagesize` get binary size, broken down in various ways including total, by componant, and by file
|
||||||
`imagesize` or gets the size of the binary to be uploaded, in genral, by componants, and by individual file
|
`chipinfo` get information from the esp board
|
||||||
|
`menuconfig` run `idf.py menuconfig`
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -34,8 +34,8 @@ echo -e "\nBuild, Flash, and Monitor Now? y/n"
|
|||||||
read flashmon
|
read flashmon
|
||||||
if [ "$flashmon" == "y" ]; then
|
if [ "$flashmon" == "y" ]; then
|
||||||
echo -e "\nBuild, Flashing, and Monitoran~\n"
|
echo -e "\nBuild, Flashing, and Monitoran~\n"
|
||||||
echo -e "\nFlashed... Short Delay Before Monitor\n"
|
|
||||||
idf.py flash
|
idf.py flash
|
||||||
|
echo -e "\nFlashed... Short Delay Before Monitor\n"
|
||||||
sleep 1
|
sleep 1
|
||||||
idf.py monitor
|
idf.py monitor
|
||||||
else
|
else
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ set -e # die on error in theory
|
|||||||
echo -e "Clean, build, flash, monitor in steps, dying on error"
|
echo -e "Clean, build, flash, monitor in steps, dying on error"
|
||||||
|
|
||||||
echo -e "\ncleaning up first\n"
|
echo -e "\ncleaning up first\n"
|
||||||
# idf.py clean
|
|
||||||
bash fullclean
|
bash fullclean
|
||||||
|
|
||||||
echo -e "\nBuilding\n"
|
echo -e "\nBuilding\n"
|
||||||
|
|||||||
@@ -67,6 +67,9 @@ Features:
|
|||||||
`erase-flash` idf.py erase-flash
|
`erase-flash` idf.py erase-flash
|
||||||
`save-defconfig` idf.py save-defconfig
|
`save-defconfig` idf.py save-defconfig
|
||||||
`step-flash-monitor` attempt clean, build, flash, then monitor, dying on error
|
`step-flash-monitor` attempt clean, build, flash, then monitor, dying on error
|
||||||
|
`imagesize` get binary size, broken down in various ways including total, by componant, and by file
|
||||||
|
`chipinfo` get information from the esp board
|
||||||
|
`menuconfig` run `idf.py menuconfig`
|
||||||
|
|
||||||
Aliases:
|
Aliases:
|
||||||
run_esp_reinstall
|
run_esp_reinstall
|
||||||
|
|||||||
+1
-1
@@ -1 +1 @@
|
|||||||
7.0-dev
|
7.1-dev
|
||||||
Reference in New Issue
Block a user