Contiki-NG
Loading...
Searching...
No Matches
contiki-conf.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 CONTIKI_CONF_H_
9#define CONTIKI_CONF_H_
10
11#include <stdint.h>
12
13#define CLOCK_CONF_SIZE 4
14#define CLOCK_CONF_SECOND 1000
15
16#define RTIMER_CONF_CLOCK_SIZE 4
17
18#define LINKADDR_CONF_SIZE 2
19
20#define PLATFORM_CONF_PROVIDES_MAIN_LOOP 1
21
22typedef unsigned int uip_stats_t;
23
24#define LOG_CONF_LEVEL_MAIN 0
25#define LOG_CONF_LEVEL_NONE 0
26
27#endif /* CONTIKI_CONF_H_ */