chore: snapshot before shared RS485 bus integration

This commit is contained in:
2026-07-22 15:36:04 +01:00
parent ef02e5c5f5
commit 2a803fcef1
167 changed files with 5749 additions and 1128 deletions

View File

@@ -0,0 +1,26 @@
#ifndef HMI_LINK_H
#define HMI_LINK_H
#include "esp_err.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Start the local HMI UART link.
*
* Default pins:
* EVSE GPIO22 = TX -> LCD RX
* EVSE GPIO21 = RX <- LCD TX
* Baudrate = 115200 8N1
*
* The link uses one JSON object per line ('\n').
*/
esp_err_t hmi_link_init(void);
#ifdef __cplusplus
}
#endif
#endif // HMI_LINK_H