24 lines
587 B
C
24 lines
587 B
C
/* SPDX-License-Identifier: GPL-3.0-only */
|
|
/* Phase 7A local display/button diagnostics retained for Phase 7B validation. */
|
|
|
|
#pragma once
|
|
|
|
#include "esp_err.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Configure active-low button inputs; the Phase 7B display service owns I2C. */
|
|
esp_err_t local_ui_hw_test_init(void);
|
|
|
|
/* Handle argv beginning with either "display" or "buttons". */
|
|
int local_ui_hw_test_execute(int argc, char **argv);
|
|
|
|
/* Append the Phase 7A command forms to the existing debug-group usage. */
|
|
void local_ui_hw_test_print_usage(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|