Getting started with the Espressif ESP32-S2
Important
This reference integration is hosted on the Amazon-FreeRTOS repository which is deprecated. We recommend that you start here when you create a new project. If you already have an existing FreeRTOS project based on the now deprecated Amazon-FreeRTOS repository, see the Amazon-FreeRTOS Github Repository Migration Guide.
Note
To explore how to integrate FreeRTOS modular libraries and demos within your own Espressif
IDF project, see our
featured reference integration for ESP32-C3 platform
This tutorial shows you how to get started with the Espressif ESP32-S2 SoC and ESP32-S2-Saola-1
Overview
This tutorial guides you through the following steps:
-
Connect your board to a host machine.
-
Install software on your host machine to develop and debug embedded applications for your microcontroller board.
-
Cross-compile a FreeRTOS demo application to a binary image.
-
Load the application binary image to your board, and then run the application.
-
Monitor and debug the running application using a serial connection.
Prerequisites
Before you get started with FreeRTOS on your Espressif board, you must set up your AWS account and permissions.
Sign up for an AWS account
If you do not have an AWS account, complete the following steps to create one.
To sign up for an AWS account
Open https://portal.aws.amazon.com/billing/signup
. Follow the online instructions.
Part of the sign-up procedure involves receiving a phone call and entering a verification code on the phone keypad.
When you sign up for an AWS account, an AWS account root user is created. The root user has access to all AWS services and resources in the account. As a security best practice, assign administrative access to a user, and use only the root user to perform tasks that require root user access.
AWS sends you a confirmation email after the sign-up process is
complete. At any time, you can view your current account activity and manage your account by
going to https://aws.amazon.com/
Create a user with administrative access
After you sign up for an AWS account, secure your AWS account root user, enable AWS IAM Identity Center, and create an administrative user so that you don't use the root user for everyday tasks.
Secure your AWS account root user
-
Sign in to the AWS Management Console
as the account owner by choosing Root user and entering your AWS account email address. On the next page, enter your password. For help signing in by using root user, see Signing in as the root user in the AWS Sign-In User Guide.
-
Turn on multi-factor authentication (MFA) for your root user.
For instructions, see Enable a virtual MFA device for your AWS account root user (console) in the IAM User Guide.
Create a user with administrative access
-
Enable IAM Identity Center.
For instructions, see Enabling AWS IAM Identity Center in the AWS IAM Identity Center User Guide.
-
In IAM Identity Center, grant administrative access to a user.
For a tutorial about using the IAM Identity Center directory as your identity source, see Configure user access with the default IAM Identity Center directory in the AWS IAM Identity Center User Guide.
Sign in as the user with administrative access
-
To sign in with your IAM Identity Center user, use the sign-in URL that was sent to your email address when you created the IAM Identity Center user.
For help signing in using an IAM Identity Center user, see Signing in to the AWS access portal in the AWS Sign-In User Guide.
Assign access to additional users
-
In IAM Identity Center, create a permission set that follows the best practice of applying least-privilege permissions.
For instructions, see Create a permission set in the AWS IAM Identity Center User Guide.
-
Assign users to a group, and then assign single sign-on access to the group.
For instructions, see Add groups in the AWS IAM Identity Center User Guide.
To provide access, add permissions to your users, groups, or roles:
-
Users and groups in AWS IAM Identity Center:
Create a permission set. Follow the instructions in Create a permission set in the AWS IAM Identity Center User Guide.
-
Users managed in IAM through an identity provider:
Create a role for identity federation. Follow the instructions in Create a role for a third-party identity provider (federation) in the IAM User Guide.
-
IAM users:
-
Create a role that your user can assume. Follow the instructions in Create a role for an IAM user in the IAM User Guide.
-
(Not recommended) Attach a policy directly to a user or add a user to a user group. Follow the instructions in Adding permissions to a user (console) in the IAM User Guide.
-
Get started
Note
The Linux commands in this tutorial require that you use the Bash shell.
-
Set up the Espressif hardware.
For information about setting up the ESP32-S2 development board hardware, see the ESP32-S2-Saola-1 Getting Started Guide
. Important
When you reach the Get Started section of the Espressif guides, stop, and then return to the instructions on this page.
-
Download Amazon FreeRTOS from GitHub
. (For instructions, see the README.md file.) -
Set up your development environment.
To communicate with your board, you must install a toolchain. Espressif provides the ESP-IDF to develop software for their boards. Since the ESP-IDF has its own version of the FreeRTOS Kernel integrated as a component, Amazon FreeRTOS includes a custom version of the ESP-IDF v4.2 that has the FreeRTOS Kernel removed. This fixes problems with duplicate files when you compile. To use the custom version of the ESP-IDF v4.2 included with Amazon FreeRTOS, follow the instructions below for your host machine's operating system.
Windows
-
Download ESP-IDF's Universal Online Installer
for Windows. -
Run the Universal Online Installer.
-
When you get to the step Download or use ESP-IDF, select Use an existing ESP-IDF directory and set Choose existing ESP-IDF directory to
.freertos
/vendors/espressif/esp-idf -
Complete the installation.
macOS
-
Follow the instructions in the Standard Setup of Toolchain prerequisites (ESP-IDF v4.2) for macOS
. Important
When you reach the "Get ESP-IDF" instructions under Next Steps, stop, and then return to the instructions on this page.
-
Open a command line window.
-
Navigate to the FreeRTOS download directory, and then run the following script to download and install the espressif toolchain for your platform.
vendors/espressif/esp-idf/install.sh
-
Add the ESP-IDF toolchain tools to your terminal's path with the following command.
source vendors/espressif/esp-idf/export.sh
Linux
-
Follow the instructions in the Standard Setup of Toolchain prerequisites (ESP-IDF v4.2) for Linux
. Important
When you reach the "Get ESP-IDF" instructions under Next Steps, stop, and then return to the instructions on this page.
-
Open a command line window.
-
Navigate to the FreeRTOS download directory, and then run the following script to download and install the Espressif toolchain for your platform.
vendors/espressif/esp-idf/install.sh
-
Add the ESP-IDF toolchain tools to your terminal's path with the following command.
source vendors/espressif/esp-idf/export.sh
-
-
Establish a serial connection.
-
To establish a serial connection between your host machine and the ESP32-DevKitC, install the CP210x USB to UART Bridge VCP drivers. You can download these drivers from Silicon Labs
. -
Follow the steps to Establish a Serial Connection with ESP32
. -
After you establish a serial connection, make a note of the serial port for your board's connection. You need it to flash the demo.
-
Configure the FreeRTOS demo applications
For this tutorial, the FreeRTOS configuration file is located at
.
(For example, if freertos
/vendors/espressif/boards/board-name
/aws_demos/config_files/FreeRTOSConfig.hAFR_BOARD espressif.esp32_devkitc
is chosen, the configuration file is
located at
.)
freertos
/vendors/espressif/boards/esp32/aws_demos/config_files/FreeRTOSConfig.h
-
If you're running macOS or Linux, open a terminal prompt. If you're running Windows, open the "ESP-IDF 4.x CMD" app (if you included this option when you installed the ESP-IDF toolchain), or the "Command Prompt" app otherwise.
-
To verify that you have Python3 installed, run the following:
python --version
The version installed is displayed. If you don't have Python 3.0.1 or later installed, you can install it from the Python
website. -
You need the AWS Command Line Interface (CLI) to run AWS IoT commands. If you're running Windows, use the
easy_install awscli
command to install the AWS CLI in the "Command" or "ESP-IDF 4.x CMD" app.If you're running macOS or Linux, see Installing the AWS CLI.
-
Run
aws configure
and configure the AWS CLI with your AWS access key ID, secret access key, and default AWS Region. For more information, see Configuring the AWS CLI.
-
Use the following command to install the AWS SDK for Python (boto3):
-
On Windows, in the "Command" or "ESP-IDF 4.x CMD" app, run
easy_install boto3
-
On macOS or Linux, run
pip install tornado nose --user
and then run
pip install boto3 --user
-
FreeRTOS includes the SetupAWS.py
script to make it easier to set up your Espressif
board to connect to AWS IoT.
To run the configuration script
-
To configure the script, open
and set the following attributes:freertos
/tools/aws_config_quick_start/configure.jsonafr_source_dir
-
The complete path to the
directory on your computer. Make sure that you use forward slashes to specify this path.freertos
thing_name
-
The name that you want to assign to the AWS IoT thing that represents your board.
wifi_ssid
-
The SSID of your Wi-Fi network.
wifi_password
-
The password for your Wi-Fi network.
wifi_security
-
The security type for your Wi-Fi network. The following are valid security types:
-
eWiFiSecurityOpen
(Open, no security) -
eWiFiSecurityWEP
(WEP security) -
eWiFiSecurityWPA
(WPA security) -
eWiFiSecurityWPA2
(WPA2 security)
-
-
If you're running macOS or Linux, open a terminal prompt. If you're running Windows, open the "ESP-IDF 4.x CMD" or "Command" app.
-
Navigate to the
directory and runfreertos
/tools/aws_config_quick_startpython SetupAWS.py setup
The script does the following:
-
Creates an AWS IoT thing, certificate, and policy.
-
Attaches the AWS IoT policy to the certificate and the certificate to the AWS IoT thing.
-
Populates the
aws_clientcredential.h
file with your AWS IoT endpoint, Wi-Fi SSID, and credentials. -
Formats your certificate and private key and writes them to the
aws_clientcredential_keys.h
header file.
Note
The certificate is hardcoded for demonstration purposes only. Production-level applications should store these files in a secure location.
For more information about
SetupAWS.py
, see theREADME.md
in the
directory.freertos
/tools/aws_config_quick_start -
Monitoring MQTT messages on the AWS Cloud
Before you run the FreeRTOS demo project, you can set up the MQTT client in the AWS IoT console to monitor the messages that your device sends to the AWS Cloud.
To subscribe to the MQTT topic with the AWS IoT MQTT client
-
Sign in to the AWS IoT console
. -
In the navigation pane, choose Test, then choose MQTT Test Client.
-
In Subscription topic, enter
, and then choose Subscribe to topic.your-thing-name
/example/topic
When the demo project successfully runs on your device you see "Hello World!" sent multiple times to the topic that you subscribed to.
Build, flash, and run the FreeRTOS demo project using the idf.py script
You can use Espressif's IDF utility to generate the build files, build the application binary, and flash your board.
Build and flash FreeRTOS on Windows, Linux, and macOS (ESP-IDF v4.2)
Use the idf.py
script to build the project and flash the binaries onto your
device.
Note
Some setups might require that you use the port option -p port-name
with
idf.py
to specify the correct port, as in the following example.
idf.py -p /dev/cu.usbserial-00101301B flash
To build and flash the project
-
Navigate to the root of your FreeRTOS download directory.
-
In a command line window, enter the following command to add the ESP-IDF tools to your terminal's PATH:
- Windows ("Command" app)
-
vendors\espressif\esp-idf\export.bat
- Windows ("ESP-IDF 4.x CMD" app)
-
(This has already been done when you opened the app.)
- Linux / macOS
-
source vendors/espressif/esp-idf/export.sh
-
Configure cmake in the
build
directory and build the firmware image with the following command.idf.py -DVENDOR=espressif -DBOARD=esp32s2_saola_1 -DCOMPILER=xtensa-esp32s2 build
You should see output like this following example.
Executing action: all (aliases: build) Running cmake in directory /path/to/hello_world/build Executing "cmake -G Ninja -DPYTHON_DEPS_CHECKED=1 -DESP_PLATFORM=1 -DVENDOR=espressif -DBOARD=esp32s2_saola_1 -DCOMPILER=xtensa-esp32s2 -DCCACHE_ENABLE=0 /path/to/hello_world"... -- The C compiler identification is GNU 8.4.0 -- The CXX compiler identification is GNU 8.4.0 -- The ASM compiler identification is GNU ... (more lines of build system output) [1628/1628] Generating binary image from built executable esptool.py v3.0 Generated /path/to/hello_world/build/aws_demos.bin Project build complete. To flash, run this command: esptool.py -p (PORT) -b 460800 --before default_reset --after hard_reset --chip esp32s2 write_flash --flash_mode dio --flash_size detect --flash_freq 80m 0x1000 build/bootloader/bootloader.bin 0x8000 build/partition_table/partition-table.bin 0x16000 build/ota_data_initial.bin 0x20000 build/aws_demos.bin or run 'idf.py -p (PORT) flash'
If there are no errors, the build generates the firmware binary .bin files.
-
Erase your development board's flash memory with the following command.
idf.py erase_flash
-
Use the
idf.py
script to flash the application binary to your board.idf.py flash
-
Monitor the output from your board's serial port with the following command.
idf.py monitor
Note
-
You can combine these commands as in the following example.
idf.py erase_flash flash monitor
-
For certain host machine setups, you must specify the port when you flash the board as in the following example.
idf.py erase_flash flash monitor -p /dev/ttyUSB1
-
Build and Flash FreeRTOS with CMake
Besides using the idf.py
script provided by the IDF SDK to build and run your code, you
can also build the project with CMake. Currently it supports Unix Makefile and the Ninja build
system.
To build and flash the project
-
In a command line window, navigate to the root of your FreeRTOS download directory.
-
Run the following script to add the ESP-IDF tools to your shell's PATH.
-
Windows
vendors\espressif\esp-idf\export.bat
-
Linux / macOS
source vendors/espressif/esp-idf/export.sh
-
-
Enter the following command to generate the build files.
-
With Unix Makefiles
cmake -DVENDOR=espressif -DBOARD=esp32s2_saola_1 -DCOMPILER=xtensa-esp32s2 -S . -B ./
YOUR_BUILD_DIRECTORY
-DAFR_ENABLE_ALL_MODULES=1 -DAFR_ENABLE_TESTS=0 -
With Ninja
cmake -DVENDOR=espressif -DBOARD=esp32s2_saola_1 -DCOMPILER=xtensa-esp32s2 -S . -B ./
YOUR_BUILD_DIRECTORY
-DAFR_ENABLE_ALL_MODULES=1 -DAFR_ENABLE_TESTS=0 -GNinja
-
-
Build the project.
-
With Unix Makefiles
make -C ./
YOUR_BUILD_DIRECTORY
-j8 -
With Ninja
ninja -C ./
YOUR_BUILD_DIRECTORY
-j8
-
-
Erase the flash and then flash the board.
-
With Unix Makefiles
make -C ./
YOUR_BUILD_DIRECTORY
erase_flashmake -C ./
YOUR_BUILD_DIRECTORY
flash -
With Ninja
ninja -C ./
YOUR_BUILD_DIRECTORY
erase_flashninja -C ./
YOUR_BUILD_DIRECTORY
flash
-
Additional information
For more information about using and troubleshooting Espressif ESP32 boards, see the following topics: