Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 610 Bytes

File metadata and controls

23 lines (19 loc) · 610 Bytes

ULP ADC component

This component utilizes the ultra-low-power co-processor of the ESP to sample ADCs.

Concept

The ULP samples the ADCs in parallel to the ESP and copies the values into normal memory via an ISR.

How to use

Initialization

#include "ulp.h"
void app_main()
{
	ulp_init(&spo2_queue);
}

Related