reactor-c
C Runtime for Lingua Franca
Loading...
Searching...
No Matches
lf_patmos_support.h
Go to the documentation of this file.
1
2/* Patmos API support for the C target of Lingua Franca. */
3
4
38#ifndef LF_PATMOS_SUPPORT_H
39#define LF_PATMOS_SUPPORT_H
40
41// This embedded platform has no TTY suport
42#define NO_TTY
43
44#include <stdint.h> // For fixed-width integral types
45#include <stdbool.h>
46
47#include <inttypes.h> // Needed to define PRId64 and PRIu32
48#define PRINTF_TIME "%" PRId64
49#define PRINTF_MICROSTEP "%" PRIu32
50#define PRINTF_TAG "(%" PRId64 ", %" PRIu32 ")"
51
52#endif // LF_PATMOS_SUPPORT_H