doc: renamed project

This commit is contained in:
SylvanArnold
2025-04-29 13:52:54 +02:00
committed by Sylvan Arnold
parent 244e516bd8
commit 32618389d1
985 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,63 @@
/*
* Copyright (c) 2021, Erich Styger
* All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef McuESP32_H_
#define McuESP32_H_
#include <stdint.h>
#include "McuESP32config.h"
#ifdef __cplusplus
extern "C" {
#endif
/* used to deal with USB CDC flow control pins */
void McuESP32_UartState_Callback(uint8_t state);
#include "McuShell.h"
/*!
* \brief Shell parser routine.
* \param cmd Pointer to command line string.
* \param handled Pointer to status if command has been handled. Set to TRUE if command was understood.
* \param io Pointer to stdio handle
* \return Error code, ERR_OK if everything was ok.
*/
uint8_t McuESP32_ParseCommand(const unsigned char *cmd, bool *handled, const McuShell_StdIOType *io);
/*!
* \brief Set a standard I/O receiving from ESP
* \param stdio Standard I/O to be used
*/
void McuESP32_SetRxFromESPStdio(McuShell_ConstStdIOTypePtr stdio);
/*!
* \brief Return the current receiving from ESP standard I/O
* \return I/O handler
*/
McuShell_ConstStdIOTypePtr McuESP32_GetRxFromESPStdio(void);
/*!
* \brief Returns the standard I/O handler for sending data (only sending) to the ESP32
* \return standard I/O handler
*/
McuShell_ConstStdIOTypePtr McuESP32_GetTxToESPStdio(void);
/*!
* \brief Module de-initialization
*/
void McuESP32_Deinit(void);
/*!
* \brief Module initialization
*/
void McuESP32_Init(void);
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /* McuESP32_H_ */