Skip to content

Commit

Permalink
Merge pull request #2 from abobija/support_v4.1
Browse files Browse the repository at this point in the history
Support ESP-IDF v4.1
  • Loading branch information
abobija authored Dec 5, 2020
2 parents 26f5467 + 9122d69 commit 810ad70
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

While there is [no support for USB devices on WSL2](https://github.com/microsoft/WSL/issues/4322) for now, this tool comes to help you to flash and monitor [ESP-IDF](https://github.com/espressif/esp-idf) applications on the [WSL2](https://docs.microsoft.com/en-us/windows/wsl/compare-versions).

> **Info:**<br>Tested on [Ubuntu 20.04 LTS](https://www.microsoft.com/en-us/p/ubuntu-2004-lts/9n6svws3rx71) distribution.
> **Info:**<br>Tested on [Ubuntu 20.04 LTS](https://www.microsoft.com/en-us/p/ubuntu-2004-lts/9n6svws3rx71) and [Debian](https://www.microsoft.com/en-us/p/debian/9msvkqc78pk6) distributions.
> **Note:**<br>As a prerequisite for using this tool, [Python :snake:](https://www.python.org) needs to be installed on the Windows.
Expand All @@ -23,7 +23,7 @@ idfx COMMAND PORT [monitor]
Execute next command inside of your WSL to install `idfx`

```sh
curl -L https://raw.githubusercontent.com/abobija/idfx/main/idfx -o $HOME/.local/bin/idfx && chmod u+x $HOME/.local/bin/idfx
wget https://raw.githubusercontent.com/abobija/idfx/main/idfx -O $HOME/.local/bin/idfx && chmod u+x $HOME/.local/bin/idfx
```

# Examples
Expand Down
2 changes: 1 addition & 1 deletion idfx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ if [ "$1" = 'flash' ]; then
-p $2
-b 460800 --before default_reset --after hard_reset
--chip $idf_target
write_flash "; cat build/flash_args) | tr '\n' ' ')
write_flash "; cat build/flash_project_args) | tr '\n' ' ')
powershell.exe -Command "cd build ; $flash_cmd"
fi
Expand Down

0 comments on commit 810ad70

Please sign in to comment.