Porting PicoTCP WIP
This commit is contained in:
96
kernel/picotcp/docs/user_manual/chap_api_sntp_c.tex
Normal file
96
kernel/picotcp/docs/user_manual/chap_api_sntp_c.tex
Normal file
@ -0,0 +1,96 @@
|
||||
\section{SNTP client}
|
||||
|
||||
% Short description/overview of module functions
|
||||
This module allows you to sync your device to to a specified (s)ntp server.
|
||||
You can then retreive the time with the pico$\_$sntp$\_$gettimeofday function.
|
||||
|
||||
|
||||
\subsection{pico$\_$sntp$\_$sync}
|
||||
|
||||
\subsubsection*{Description}
|
||||
Function to sync the local time to a given sntp server in string notation. DNS resolution will be done automatically.
|
||||
\subsubsection*{Function prototype}
|
||||
\begin{verbatim}
|
||||
int pico_sntp_sync(char *sntp_server, void (*cb_synced)(pico_err_t status));
|
||||
\end{verbatim}
|
||||
|
||||
\subsubsection*{Parameters}
|
||||
\begin{itemize}[noitemsep]
|
||||
\item \texttt{sntp$\_$server} - String with the sntp server to get the time from
|
||||
\item \texttt{cb$\_$synced} - Callback function that is called when the synchronisation process is done. The status variable indicates wheter the synchronisation was successful or not.
|
||||
\end{itemize}
|
||||
|
||||
\subsubsection*{Return value}
|
||||
On success, this call returns 0 if the synchronisation operation has successfully started. When both IPv4 and IPv6 are enabled, success on one is sufficient.
|
||||
On error, -1 is returned and \texttt{pico$\_$err} is set appropriately.
|
||||
|
||||
\subsubsection*{Errors}
|
||||
\begin{itemize}[noitemsep]
|
||||
\item \texttt{PICO$\_$ERR$\_$EINVAL} - invalid argument
|
||||
\item \texttt{PICO$\_$ERR$\_$ENOMEM} - not enough space
|
||||
\item \texttt{PICO$\_$ERR$\_$EPROTONOSUPPORT} - compiled without DNS support
|
||||
\end{itemize}
|
||||
|
||||
\subsubsection*{Example}
|
||||
\begin{verbatim}
|
||||
int ret = pico_sntp_sync("ntp.nasa.gov", &callback);
|
||||
\end{verbatim}
|
||||
|
||||
|
||||
\subsection{pico$\_$sntp$\_$sync$\_$ip}
|
||||
|
||||
\subsubsection*{Description}
|
||||
Function to sync the local time to a given sntp server in IP address notation.
|
||||
\subsubsection*{Function prototype}
|
||||
\begin{verbatim}
|
||||
int pico_sntp_sync_ip(union pico_address *sntp_addr, void (*cb_synced)(pico_err_t status));
|
||||
\end{verbatim}
|
||||
|
||||
\subsubsection*{Parameters}
|
||||
\begin{itemize}[noitemsep]
|
||||
\item \texttt{sntp$\_$addr} - IP address of the sntp server to get the time from
|
||||
\item \texttt{cb$\_$synced} - Callback function that is called when the synchronisation process is done. The status variable indicates wheter the synchronisation was successful or not.
|
||||
\end{itemize}
|
||||
|
||||
\subsubsection*{Return value}
|
||||
On success, this call returns 0 if the synchronisation operation has successfully started. When both IPv4 and IPv6 are enabled, success on one is sufficient.
|
||||
On error, -1 is returned and \texttt{pico$\_$err} is set appropriately.
|
||||
|
||||
\subsubsection*{Errors}
|
||||
\begin{itemize}[noitemsep]
|
||||
\item \texttt{PICO$\_$ERR$\_$EINVAL} - invalid argument
|
||||
\item \texttt{PICO$\_$ERR$\_$ENOMEM} - not enough space
|
||||
\end{itemize}
|
||||
|
||||
\subsubsection*{Example}
|
||||
\begin{verbatim}
|
||||
int ret = pico_sntp_sync_ip(&sntp_addr, &callback);
|
||||
\end{verbatim}
|
||||
|
||||
|
||||
\subsection{pico$\_$sntp$\_$gettimeofday}
|
||||
|
||||
\subsubsection*{Description}
|
||||
Function to get the current time. Be sure to call the pico$\_$sntp$\_$sync function to synchronise BEFORE calling this function.
|
||||
|
||||
\subsubsection*{Function prototype}
|
||||
\begin{verbatim}
|
||||
int pico_sntp_gettimeofday(struct pico_timeval *tv);
|
||||
\end{verbatim}
|
||||
|
||||
\subsubsection*{Parameters}
|
||||
\begin{itemize}[noitemsep]
|
||||
\item \texttt{tv} - Pointer to a time$\_$val struct in which the current time will be set.
|
||||
\end{itemize}
|
||||
|
||||
\subsubsection*{Return value}
|
||||
On success, this call returns 0 if the time is set.
|
||||
On error, -1 is returned and \texttt{pico$\_$err} is set appropriately.
|
||||
|
||||
\subsubsection*{Example}
|
||||
\begin{verbatim}
|
||||
int ret = pico_sntp_gettimeofday(tv);
|
||||
\end{verbatim}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user