We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6dbbff commit 745c140Copy full SHA for 745c140
components/retro-go/rg_input.c
@@ -20,6 +20,9 @@ static adc_cali_handle_t adc_cali_handles[4];
20
#include <esp_adc_cal.h>
21
static esp_adc_cal_characteristics_t adc_chars;
22
#endif
23
+// This is a lazy way to silence deprecation notices on esp-idf 5.2+ stating
24
+// that ADC_ATTEN_DB_12 should be used instead (which is the same value)
25
+#define ADC_ATTEN_DB_11 3 /* ADC_ATTEN_DB_12 */
26
#else
27
#include <SDL2/SDL.h>
28
0 commit comments