reactor-c
C Runtime for Lingua Franca
Loading...
Searching...
No Matches
lf_nrf52_support.h
Go to the documentation of this file.
1/* nRF52 API support for the C target of Lingua Franca. */
2
3
35#ifndef LF_NRF52_SUPPORT_H
36#define LF_NRF52_SUPPORT_H
37
38// This embedded platform has no command line interface
39#define NO_CLI
40#define MINIMAL_STDLIB
41
42#include <stdint.h> // For fixed-width integral types
43#include <stdbool.h>
44
45#include <inttypes.h> // Needed to define PRId64 and PRIu32
46#define PRINTF_TIME "%" PRId64
47#define PRINTF_MICROSTEP "%" PRIu32
48#define PRINTF_TAG "(%" PRId64 ", %" PRIu32 ")"
49
53typedef void* lf_mutex_t;
54typedef void _lf_cond_var_t;
55
56#endif // LF_nRF52832_SUPPORT_H
void * lf_mutex_t
Definition lf_nrf52_support.h:53
void _lf_cond_var_t
Definition lf_nrf52_support.h:54