Arti Zirk
2de3a91b0a
subrepo: subdir: "libopencm3" merged: "88e91c9a7cce" upstream: origin: "https://github.com/libopencm3/libopencm3.git" branch: "master" commit: "88e91c9a7cce" git-subrepo: version: "0.4.3" origin: "???" commit: "???"
33 lines
562 B
C
33 lines
562 B
C
/*
|
|
* File: trace.h
|
|
* Author: karlp
|
|
*
|
|
* Created on November 21, 2013, 4:35 PM
|
|
*/
|
|
|
|
#ifndef TRACE_H
|
|
#define TRACE_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void trace_send_blocking8(int stimulus_port, char c);
|
|
void trace_send8(int stimulus_port, char c);
|
|
|
|
void trace_send_blocking16(int stimulus_port, uint16_t val);
|
|
void trace_send16(int stimulus_port, uint16_t val);
|
|
|
|
void trace_send_blocking32(int stimulus_port, uint32_t val);
|
|
void trace_send32(int stimulus_port, uint32_t val);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* TRACE_H */
|
|
|