blob: c995b6548da9fcc1d177b424d1798efd3ca635c1 [file] [log] [blame]
/*
* Copyright (c) 2018 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/
#define LOG_MODULE_NAME net_openthread_alarm
#define LOG_LEVEL CONFIG_OPENTHREAD_LOG_LEVEL
#include <logging/log.h>
LOG_MODULE_REGISTER(LOG_MODULE_NAME);
#include <kernel.h>
#include <string.h>
#include <inttypes.h>
#include <openthread/platform/alarm-milli.h>
#include <openthread-system.h>
#include <stdio.h>
#include "platform-zephyr.h"
static bool timer_fired;
static void ot_timer_fired(struct k_timer *timer)
{
ARG_UNUSED(timer);
timer_fired = true;
otSysEventSignalPending();
}
K_TIMER_DEFINE(ot_timer, ot_timer_fired, NULL);
void platformAlarmInit(void)
{
/* Intentionally empty */
}
uint32_t otPlatAlarmMilliGetNow(void)
{
return k_uptime_get_32();
}
void otPlatAlarmMilliStartAt(otInstance *aInstance, uint32_t t0, uint32_t dt)
{
ARG_UNUSED(aInstance);
s64_t reftime = (s64_t)t0 + (s64_t)dt;
s64_t delta = -k_uptime_delta(&reftime);
if (delta > 0) {
k_timer_start(&ot_timer, K_MSEC(delta), 0);
} else {
ot_timer_fired(NULL);
}
}
void otPlatAlarmMilliStop(otInstance *aInstance)
{
ARG_UNUSED(aInstance);
k_timer_stop(&ot_timer);
}
void platformAlarmProcess(otInstance *aInstance)
{
if (timer_fired) {
timer_fired = false;
otPlatAlarmMilliFired(aInstance);
}
}