Marius Vikhammer 8a5b5610b9 ulp-riscv: enable ULP-RISCV ADC example for esp32s2 2 лет назад
..
main 55879e36ab system: fix printf format errors in all system and cxx examples 3 лет назад
CMakeLists.txt e8b5096f52 ulp-riscv: add support for using ADC as well as an example show-casing it. 3 лет назад
README.md 8a5b5610b9 ulp-riscv: enable ULP-RISCV ADC example for esp32s2 2 лет назад
sdkconfig.defaults e8b5096f52 ulp-riscv: add support for using ADC as well as an example show-casing it. 3 лет назад

README.md

Supported Targets ESP32-S2 ESP32-S3

ULP-RISC-V ADC Example

This example demonstrates how to use the ULP-RISC-V coprocessor to poll the ADC in deep sleep.

The ULP program periodically measures the input voltage on EXAMPLE_ADC_CHANNEL (by default ADC1 channel 0, GPIO1 on both ESP32-S2 and ESP32-S3). The voltage is compared to an upper threshold. If the voltage is higher than the threshold, the ULP wakes up the system.

By default, the threshold is set to 1.75V, approximately.

In this example, you need to connect a voltage source (e.g. a DC power supply) to the GPIO pin corresponding to the ADC channel specified in ulp/example_config.h (see the macros defined on the top of the header file). Feel free to modify the channel setting.

Hardware Required

  • A development board with a SOC which has a RISC-V ULP coprocessor (e.g., ESP32-S2 Saola)
  • A USB cable for power supply and programming

Example output

Below is the output from this example.

Not a ULP-RISC-V wakeup (cause = 0), initializing it!
Entering in deep sleep

ULP-RISC-V woke up the main CPU
Threshold: high = 2000
Value = 4095 was above threshold
Entering in deep sleep