-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
159c64f
commit b3dcbac
Showing
5 changed files
with
46 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,22 +29,22 @@ THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
* Patmos API support for the C target of Lingua Franca. | ||
* | ||
* This is based on lf_nrf_support.h in icyphy/lf-buckler. | ||
* | ||
* | ||
* @author{Ehsan Khodadad <[email protected]>} | ||
* @author{Luca Pezzarossa <[email protected]>} | ||
* @author{Luca Pezzarossa <[email protected]>} | ||
* @author{Martin Schoeberl <[email protected]>} | ||
*/ | ||
|
||
#ifndef LF_PATMOS_SUPPORT_H | ||
#define LF_PATMOS_SUPPORT_H | ||
|
||
// This embedded platform has no TTY suport | ||
#define NO_TTY | ||
#define NO_TTY | ||
|
||
#include <stdint.h> // For fixed-width integral types | ||
#include <stdbool.h> | ||
|
||
#include <inttypes.h> // Needed to define PRId64 and PRIu32 | ||
#include <inttypes.h> // Needed to define PRId64 and PRIu32 | ||
#define PRINTF_TIME "%" PRId64 | ||
#define PRINTF_MICROSTEP "%" PRIu32 | ||
#define PRINTF_TAG "(%" PRId64 ", %" PRIu32 ")" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters