mirror of
https://github.com/FreeRTOS/Lab-Project-FreeRTOS-POSIX.git
synced 2025-10-20 04:43:40 +08:00

This was the code we uploaded to freertos.org for 2018's reinvent. The todos for this version: - Take out unnecessary demos and source files. This repo should only have POSIX source files, FreeRTOS files, Windows port, and demo project.
11 lines
173 B
C
Executable File
11 lines
173 B
C
Executable File
/*
|
|
* A simple demo for NTP using FreeRTOS+TCP
|
|
*/
|
|
|
|
#ifndef NTPDEMO_H
|
|
|
|
#define NTPDEMO_H
|
|
|
|
void vStartNTPTask( uint16_t usTaskStackSize, UBaseType_t uxTaskPriority );
|
|
|
|
#endif |