Skip to content

Latest commit

 

History

History

ulp_adc

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

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