blob: a6d1c80f41e354345b467934275c9c9643c92138 (
plain)
1
2
3
4
5
6
7
8
|
#pragma once
#include "esp_err.h"
// BOOT button polling task. Pin is hard-coded in button.c and may need
// to be adjusted for the Waveshare ESP32-P4-ETH (see TODO in button.c).
// Returns OK if the task started; the firmware keeps running either way.
esp_err_t button_init(void);
|