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,52 @@
/*
* Copyright (c) 2023, Erich Styger
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef SRC_NTP_CLIENT_H_
#define SRC_NTP_CLIENT_H_
#ifdef __cplusplus
extern "C" {
#endif
#if PL_CONFIG_USE_SHELL
#include "McuShell.h"
/*!
* \brief Command line and shell handler
* \param cmd The command to be parsed
* \param handled If command has been recognized and handled
* \param io I/O handler to be used
* \return error code, otherwise ERR_OK
*/
uint8_t NtpClient_ParseCommand(const unsigned char* cmd, bool *handled, const McuShell_StdIOType *io);
#endif
/*!
* \brief Decide if NTP client shall start by default.
* \return true if it shall be started, false otherwise.
*/
bool NtpClient_GetDefaultStart(void);
/*!
* \brief Suspend the NTP client task
*/
void NtpClient_TaskSuspend(void);
/*!
* \brief Resume the NTP client task
*/
void NtpClient_TaskResume(void);
/*!
* \brief Module initialization
*/
void NtpClient_Init(void);
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /* SRC_NTP_CLIENT_H_ */