You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
471 B
27 lines
471 B
/*
|
|
* Copyright (c) 2021, Erich Styger
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef MAIN_SNTP_TIME_H_
|
|
#define MAIN_SNTP_TIME_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/*!
|
|
* \brief Get the time from the sntp server
|
|
* \return 0 if time has been obtained, negative value in case of error.
|
|
*/
|
|
int SNTP_ObtainTime(void);
|
|
|
|
/*! \brief module initialization */
|
|
void SNTP_Init(void);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern "C" */
|
|
#endif
|
|
|
|
#endif /* MAIN_SNTP_TIME_H_ */
|
|
|