11 Commits

Author SHA1 Message Date
c46e5dbb3b verzweifelter Versuch es zu reparieren, back to master 2021-02-28 10:42:44 +01:00
e8f9455c17 test 2021-02-27 23:16:31 +01:00
9f907cb84e test 2021-02-27 23:15:50 +01:00
4b39b99848 test 2021-02-27 23:14:03 +01:00
5d25490af7 forgotten } 2021-02-27 23:11:36 +01:00
6ad1eda428 fix 2021-02-27 23:10:35 +01:00
70de623e5f disable watchdog 2021-02-27 23:05:44 +01:00
7a60bb9c97 fix 2021-02-27 23:02:57 +01:00
3cefd16838 fix 2021-02-27 22:58:54 +01:00
3c6ddcb99b 1000 instead of 10 2021-02-27 22:57:12 +01:00
13a67dc660 new sntp implementation 2021-02-27 22:48:54 +01:00
4 changed files with 140 additions and 54 deletions

View File

@ -98,7 +98,7 @@ int main(void)
MX_SPI2_Init();
MX_TIM1_Init();
MX_USART1_UART_Init();
MX_IWDG_Init();
// MX_IWDG_Init();
/* USER CODE BEGIN 2 */
my_setup_2();

View File

@ -4,6 +4,8 @@
#include <stdint.h>
uint64_t networkSntpQuery();
int8_t networkUdpSend(char *hostname, uint16_t port, uint8_t *buf, uint16_t bufLen);
void networkImplInit();

View File

@ -1,14 +1,135 @@
#include <stdint.h>
#include <string.h>
#include <networkAbstractionLayer_impl.h>
#include <logger.h>
#include <PontCoopScheduler.h>
#include <wizHelper.h>
#include <wizchip_conf.h>
#include <socket.h>
#include <wizchip_conf.h>
#include <config.h>
static t_configBlock *config;
const uint16_t MAX_RECV_RETRY_COUNT = 100;
const uint64_t UNIX_NTP_EPOCH_DIFF = 2208988800;
const uint8_t SEND_LI_VN_MODE = 0xe3; // LI: unknown (3), VN: 4, Mode: Client (3)
typedef struct {
uint8_t li_vn_mode;
uint8_t stratum;
uint8_t poll;
uint8_t precision;
uint32_t rootdelay;
uint32_t rootdisp;
uint32_t refid;
uint64_t reftime;
uint64_t org;
uint64_t rec;
uint64_t xmt;
} ntpMsg_t;
extern uint8_t SNTP_SOCK;
const uint16_t NTP_PORT = 123;
enum {
SNTP_STATE_IDLE,
SNTP_STATE_START,
SNTP_STATE_SEND,
SNTP_STATE_RECV,
SNTP_STATE_ERROR,
SNTP_STATE_DONE
} sntpState = SNTP_STATE_IDLE;
uint64_t seconds;
/*
static void networkSntpEngine(void *handle) {
static uint16_t retryCount = 0;
coloredMsg(LOG_BLUE, "nes, %u", sntpState);
switch (sntpState) {
case SNTP_STATE_START:
coloredMsg(LOG_BLUE, "nes, about to send");
uint8_t ntpAddr[4];
if (! wizDnsQuery(config->ntpServer, ntpAddr)) {
coloredMsg(LOG_BLUE, "nes, failed to resolve ntp server");
sntpState = SNTP_STATE_ERROR;
} else {
socket(SNTP_SOCK, Sn_MR_UDP, NTP_PORT, 0);
retryCount = 0;
uint8_t sockState = getSn_SR(SNTP_SOCK);
if (sockState == SOCK_UDP) {
ntpMsg_t ntpMsg;
memset(&ntpMsg, 0, sizeof(ntpMsg));
ntpMsg.li_vn_mode = SEND_LI_VN_MODE;
sendto(SNTP_SOCK, (uint8_t*)&ntpMsg, sizeof(ntpMsg), ntpAddr, NTP_PORT);
coloredMsg(LOG_BLUE, "nes, sent");
sntpState = SNTP_STATE_RECV;
schAdd(networkSntpEngine, NULL, 1000, 0);
} else {
coloredMsg(LOG_BLUE, "nes, socket in unexpected state: %d", sockState);
sntpState = SNTP_STATE_ERROR;
}
}
break;
case SNTP_STATE_RECV:
coloredMsg(LOG_BLUE, "nes, check receive");
uint16_t recvLen = getSn_RX_RSR(SNTP_SOCK);
if (recvLen == 0) {
retryCount += 1;
if (retryCount > MAX_RECV_RETRY_COUNT) {
coloredMsg(LOG_BLUE, "nes max retry count reached, failed");
sntpState = SNTP_STATE_ERROR;
} else {
coloredMsg(LOG_BLUE, "nes, nothing received yet, try again");
schAdd(networkSntpEngine, NULL, 100, 0);
}
} else if (recvLen == sizeof(ntpMsg_t)) {
ntpMsg_t ntpMsg;
memset(&ntpMsg, 0, sizeof(ntpMsg_t));
uint8_t srcAddr[4];
uint16_t srcPort;
recvfrom(SNTP_SOCK, (uint8_t*)&ntpMsg, sizeof(ntpMsg_t), srcAddr, &srcPort);
close(SNTP_SOCK);
coloredMsg(LOG_BLUE, "nes, msg received from %d.%d.%d.%d:%d",
srcAddr[0], srcAddr[1], srcAddr[2], srcAddr[3],
srcPort);
coloredMsg(LOG_BLUE, "nes, received in the %d. cycles", retryCount);
seconds = ntpMsg.rec - UNIX_NTP_EPOCH_DIFF;
coloredMsg(LOG_BLUE, "nes, seconds: %lu", seconds);
sntpState = SNTP_STATE_DONE;
} else {
coloredMsg(LOG_BLUE, "nes, invalid number of octets received: %d", recvLen);
sntpState = SNTP_STATE_ERROR;
}
break;
default:
coloredMsg(LOG_BLUE, "nes, unexpected state");
}
}
*/
uint64_t networkSntpQuery() {
return wizSntpQuery();
/*
uint64_t res = 0;
if (sntpState == SNTP_STATE_IDLE) {
sntpState = SNTP_STATE_START;
schAdd(networkSntpEngine, NULL, 1, 0);
} else if (sntpState == SNTP_STATE_ERROR) {
sntpState = SNTP_STATE_IDLE;
} else if (sntpState == SNTP_STATE_DONE) {
sntpState = SNTP_STATE_IDLE;
res = seconds;
}
return res;
*/
return 0;
}
@ -39,5 +160,6 @@ int8_t networkUdpSend(char *hostname, uint16_t port, uint8_t *buf, uint16_t bufL
}
void networkImplInit() {
config = getConfig();
wizInit();
}

View File

@ -26,13 +26,9 @@ static uint8_t dhcpBuffer[DHCP_BUFFER_SIZE];
static uint8_t dnsBuffer[DNS_BUFFER_SIZE];
static uint8_t sntpBuffer[MAX_SNTP_BUF_SIZE];
const uint64_t UNIX_NTP_EPOCH_DIFF = 2208988800;
extern const uint8_t DHCP_SOCK;
extern const uint8_t DNS_SOCK;
extern const uint8_t SNTP_SOCK;
static bool networkAvailable = false;
@ -133,40 +129,6 @@ bool wizDnsQuery(char *name, uint8_t *ip) {
}
uint64_t wizSntpQuery() {
uint64_t seconds = 0;
if (networkAvailable) {
coloredMsg(LOG_BLUE, "wizsq, about to call SNTP");
uint8_t ntpServer[4];
if (wizDnsQuery(config->ntpServer, ntpServer)) {
SNTP_init(SNTP_SOCK, ntpServer, 0, sntpBuffer);
uint16_t cycles = 0;
uint32_t startTime = HAL_GetTick();
while (1) {
cycles += 1;
datetime curTime;
if (1 == SNTP_run(&curTime)) {
seconds = curTime.seconds - UNIX_NTP_EPOCH_DIFF;
coloredMsg(LOG_BLUE, "wizsq, cycles: %u, curTime: %lu", cycles, seconds);
uint32_t stopTime = HAL_GetTick();
coloredMsg(LOG_BLUE, "wizsq, duration: %u ms", stopTime - startTime);
break;
}
}
if (seconds == 0) {
coloredMsg(LOG_BLUE, "wizsq, time update failed");
}
} else {
coloredMsg(LOG_BLUE, "wizsq, error when querying ntp server name");
}
}
return seconds;
}
static void wizPhyLinkHandler(void *handle) {
// this handler is anyhow called with a 1s period, so we reuse it for the DNS timer
DNS_time_handler();