Cavli Wireless P32 Series Evaluation Kit Hardware Manual
12
sudo usermod -a -G dialout $USER
Step3:
Get ESP-IDF Open Terminal, and run the following commands:
cd ~/esp
git clone --recursive https://github.com/espressif/esp-idf.git
Step4:
Set up the tools: Aside from the ESP-IDF, you also need to install the tools used
by ESP-IDF, such as the compiler, debugger, Python packages, etc.
cd ~/esp/esp-idf
./install.sh
Step5:
Set up the environment variables: In the terminal where you are going to use
ESP-IDF, run:
. $HOME/esp/esp-idf/export.sh
Step6:
Start a Project: Now you are ready to prepare your application for ESP32. You
can start with get-started/hello_world project from examples directory in IDF.
cd ~/esp
cp -r $IDF_PATH/examples/get-started/hello_world .
Step7:
Connect your device: Now connect your ESP32 board to the computer and check
under what serial port the board is visible. Serial ports have the patterns in their name
/dev/tty
Step8:
Configure: Navigate to your hello_world directory from Step 5. Start a Project and
run the project configuration utility menuconfig.
cd ~/esp/hello_world
make menuconfig
If the previous steps have been done correctly, the following menu appears: