Contiki-NG
Loading...
Searching...
No Matches
rtimer-arch.h
1/*
2 * Copyright (c) 2026, RISE Research Institutes of Sweden AB
3 * All rights reserved.
4 *
5 * SPDX-License-Identifier: BSD-3-Clause
6 */
7
8#ifndef RTIMER_ARCH_H_
9#define RTIMER_ARCH_H_
10
11#include "contiki.h"
12
13#define RTIMER_ARCH_SECOND 16000000UL
14
15rtimer_clock_t rtimer_arch_now(void);
16
17#endif /* RTIMER_ARCH_H_ */
#define rtimer_arch_now()
Definition rtimer-arch.h:47