1#pragma once
2
3#include <stdbool.h>
4#include <stdint.h>
5
6#define UNUSED_ATTR __attribute__((unused))
7#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
8
9typedef uint32_t timeout_t;
10