avr-fw-modules/core/include/sys/types.h

17 lines
221 B
C

#pragma once
#include <stdint.h>
#if !defined(IN_LIMITS)
#define IN_LIMITS(v,min,max) ( (min<=v) && (v <= max) )
#endif
typedef int32_t APICALL;
typedef struct {
int32_t seconds;
int32_t cycles;
} sched_time_t;