more bugfixes 6
This commit is contained in:
@@ -86,7 +86,7 @@ Some take optional [branch] paramater
|
|||||||
* ex. `changebaud 115200`
|
* ex. `changebaud 115200`
|
||||||
* `changeesp` change esp device
|
* `changeesp` change esp device
|
||||||
* `changeesp` alone prompts to enter
|
* `changeesp` alone prompts to enter
|
||||||
* `changeesp <esp device>` manually changes to <esp device>
|
* `changeesp <esp device>` manually changes to <esp device>
|
||||||
* ex. `changeesp esp32p4`
|
* ex. `changeesp esp32p4`
|
||||||
* `changeport` change serial port
|
* `changeport` change serial port
|
||||||
* `changeport` alone prompts to select
|
* `changeport` alone prompts to select
|
||||||
@@ -105,7 +105,8 @@ Some take optional [branch] paramater
|
|||||||
* `chipinfo` get information from the esp chip
|
* `chipinfo` get information from the esp chip
|
||||||
* `espinfo` get detailed information from the esp chip
|
* `espinfo` get detailed information from the esp chip
|
||||||
* `menuconfig` run `idf.py menuconfig`
|
* `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`
|
* ex. `create-project hello-world`
|
||||||
* `esp-install-monitor` monitors install.log. alias for `tail -n 75 -f $ESPIDF_INSTALLDIR/install.log`
|
* `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
|
* `esp-install-logs` displays full text of install.log and version-data.txt
|
||||||
|
|||||||
@@ -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"
|
||||||
@@ -100,7 +100,8 @@ Features:
|
|||||||
`chipinfo` get information from the esp chip
|
`chipinfo` get information from the esp chip
|
||||||
`espinfo` get detailed information about esp-idf and esp-idf-tools envrionment
|
`espinfo` get detailed information about esp-idf and esp-idf-tools envrionment
|
||||||
`menuconfig` run `idf.py menuconfig`
|
`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`
|
ex. `create-project hello-world`
|
||||||
`esp-install-monitor` monitors install.log. alias for `tail -n 75 -f $ESPIDF_INSTALLDIR/install.log`
|
`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
|
`esp-install-logs` displays full text of install.log and version-data.txt
|
||||||
|
|||||||
Reference in New Issue
Block a user