more bugfixes 6

This commit is contained in:
2025-05-09 15:58:59 -06:00
parent c34671cf47
commit 5e27d410f4
4 changed files with 17 additions and 10 deletions
+2 -1
View File
@@ -105,7 +105,8 @@ Some take optional [branch] paramater
* `chipinfo` get information from the esp chip
* `espinfo` get detailed information from the esp chip
* `menuconfig` run `idf.py menuconfig`
* `create-project <project name>` same as idf.py create-project <proejct name>
* `create-project` alone prompts for a project name
* `create-project <project name>` creates a project with <project name>
* ex. `create-project hello-world`
* `esp-install-monitor` monitors install.log. alias for `tail -n 75 -f $ESPIDF_INSTALLDIR/install.log`
* `esp-install-logs` displays full text of install.log and version-data.txt
+9
View File
@@ -0,0 +1,9 @@
#!/bin/bash
if [[ ! -z "$1" ]]; then
projname="$1"
else
echo "Enter Project Name"
read projname;
fi
idf.py create-project "$projname"
+2 -1
View File
@@ -100,7 +100,8 @@ Features:
`chipinfo` get information from the esp chip
`espinfo` get detailed information about esp-idf and esp-idf-tools envrionment
`menuconfig` run `idf.py menuconfig`
`create-project <project name>` same as idf.py create-project <proejct name>
`create-project` alone prompts for a project name
`create-project <project name>` creates a project with <project name>
ex. `create-project hello-world`
`esp-install-monitor` monitors install.log. alias for `tail -n 75 -f $ESPIDF_INSTALLDIR/install.log`
`esp-install-logs` displays full text of install.log and version-data.txt
-4
View File
@@ -1,7 +1,3 @@
test retool flow
test/fix changebaud/changebaud <baud>
test espinfo
test menuconfig, monitor, flashmonitor, exit-esp-tools
test reboot thing
audit readme