104 lines
2.6 KiB
C
104 lines
2.6 KiB
C
/*
|
|
* ESPNTPServer.h
|
|
*
|
|
* Copyright 2017 Christopher B. Liebman
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*
|
|
*
|
|
* Created on: Oct 29, 2017
|
|
* Author: liebman
|
|
*/
|
|
|
|
#ifndef _ESPNTPServer_H_
|
|
#define _ESPNTPServer_H_
|
|
#include "Arduino.h"
|
|
#include "Wire.h"
|
|
#include "DS3231.h"
|
|
#include "ESPAsyncUDP.h"
|
|
#include "WiFiManager.h"
|
|
|
|
|
|
// pin definitions
|
|
#define LED_PIN D7 // (GPIO13) LED on pin, active low
|
|
#define SYNC_PIN D5 // (GPIO14) pin tied to 1hz square wave from RTC
|
|
#define CONFIG_PIN D6 // (GPIO12) button tied to pin
|
|
|
|
#define NTP_PORT 123
|
|
|
|
#define SYNC_EDGE_RISING 1
|
|
#define SYNC_EDGE_FALLING 0
|
|
|
|
#define WARMUP_SECONDS 2
|
|
#define MICROS_HISTORY_SIZE 1000
|
|
#define PRECISION_COUNT 10000
|
|
|
|
#define us2s(x) (((double)x)/1000000.0) // microseconds to seconds
|
|
|
|
typedef struct ntp_time
|
|
{
|
|
uint32_t seconds;
|
|
uint32_t fraction;
|
|
} NTPTime;
|
|
|
|
typedef struct ntp_packet
|
|
{
|
|
uint8_t flags;
|
|
uint8_t stratum;
|
|
uint8_t poll;
|
|
int8_t precision;
|
|
uint32_t delay;
|
|
uint32_t dispersion;
|
|
uint8_t ref_id[4];
|
|
NTPTime ref_time;
|
|
NTPTime orig_time;
|
|
NTPTime recv_time;
|
|
NTPTime xmit_time;
|
|
} NTPPacket;
|
|
|
|
#define LI_NONE 0
|
|
#define LI_SIXTY_ONE 1
|
|
#define LI_FIFTY_NINE 2
|
|
#define LI_NOSYNC 3
|
|
|
|
#define MODE_RESERVED 0
|
|
#define MODE_ACTIVE 1
|
|
#define MODE_PASSIVE 2
|
|
#define MODE_CLIENT 3
|
|
#define MODE_SERVER 4
|
|
#define MODE_BROADCAST 5
|
|
#define MODE_CONTROL 6
|
|
#define MODE_PRIVATE 7
|
|
|
|
#define NTP_VERSION 4
|
|
|
|
#define REF_ID "PPS " // "GPS " when we have one!
|
|
|
|
#define setLI(value) ((value&0x03)<<6)
|
|
#define setVERS(value) ((value&0x07)<<3)
|
|
#define setMODE(value) ((value&0x07))
|
|
|
|
#define getLI(value) ((value>>6)&0x03)
|
|
#define getVERS(value) ((value>>3)&0x07)
|
|
#define getMODE(value) (value&0x07)
|
|
|
|
#define SEVENTY_YEARS 2208988800L
|
|
#define toEPOCH(t) ((uint32_t)t-SEVENTY_YEARS)
|
|
#define toNTP(t) ((uint32_t)t+SEVENTY_YEARS)
|
|
|
|
// simple versions - we don't worry about side effects
|
|
#define max(a, b) ((a) < (b) ? (b) : (a))
|
|
#define min(a, b) ((a) < (b) ? (a) : (b))
|
|
|
|
#endif /* _ESPNTPServer_H_ */
|