Installation Manual
5. Build and Flash
If there are no issues, at the end of build process, you should see messages
describing progress of loading process. Finally, the end module will be reset and
“hello_world” application will start.
If you'd like to use the Eclipse IDE instead of running make, check out
the :doc:`Eclipse guide <eclipse-setup>`.
6.2. Monitor
To see if “hello world” application is indeed running, type make monitor. This command
is launching :doc:`IDF Monitor <idf-monitor>` application:
$ make monitor
MONITOR
--- idf monitor on /dev/ttyUSB0 115200 ---
--- Quit: Ctrl+] | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H ---
ets Jun 8 2016 00:22:57
rst:0x1 (POWERON RESET),boot:0x13 (SPI FAST FLASH BOOT)
ets Jun 8 2016 00:22:57
...
Several lines below, after start up and diagnostic log, you should see “Hello world!”
printed out by the application.
...
Hello world!
Restarting in 10 seconds...
I (211) cpu start: Starting scheduler on APP CPU.
Restarting in 9 seconds...
Restarting in 8 seconds...
Restarting in 7 seconds...
To exit monitor use shortcut Ctrl+]. To execute make flash and make monitor in one
shoot type make flash monitor. Check section :doc:`IDF Monitor <idf-monitor>` for
handy shortcuts and more details on using this application.
That's all what you need to get started with ESP32!
Now you are ready to try some other :idf:`examples`, or go right to developing your
own applications.
8/8 2019.05