Skip to content

Commit 2085aeb

Browse files
updating esp idf build command through docker container
1 parent 16dc686 commit 2085aeb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ This firmware uses [Espressif's IDF](https://github.com/espressif/esp-idf)
2121
As an alternative for building we can use the docker image from espressif idf, we can do that as follows:
2222

2323
```
24-
docker run -v $PWD:/data espressif/idf:v3.3.1 -- sh -c 'cd /data && make'
24+
docker run -v $PWD:/data espressif/idf:v4.4 -- sh -c 'cd /data && make'
2525
```
2626

2727
You can also flash the firmware with the following snippet:
2828

2929
```
3030
DEVICE=/dev/ttyACM0
31-
docker run --device=$DEVICE -v $PWD:/data espressif/idf:v3.3.1 -- sh -c 'cd /data && make flash ESPPORT=$DEVICE'
31+
docker run --device=$DEVICE -v $PWD:/data espressif/idf:v4.4 -- sh -c 'cd /data && make flash ESPPORT=$DEVICE'
3232
```
3333

3434
## Notes

0 commit comments

Comments
 (0)