2014-08-28 16:56:48 +08:00
|
|
|
#ifndef __RTIO_H
|
|
|
|
#define __RTIO_H
|
|
|
|
|
|
|
|
void rtio_init(void);
|
2014-09-14 23:30:33 +08:00
|
|
|
void rtio_oe(int channel, int oe);
|
2014-08-28 16:56:48 +08:00
|
|
|
void rtio_set(long long int timestamp, int channel, int value);
|
2014-09-11 23:14:45 +08:00
|
|
|
void rtio_replace(long long int timestamp, int channel, int value);
|
2014-08-28 16:56:48 +08:00
|
|
|
void rtio_sync(int channel);
|
2014-09-14 23:30:33 +08:00
|
|
|
long long int rtio_get(int channel);
|
2014-08-28 16:56:48 +08:00
|
|
|
|
|
|
|
#endif /* __RTIO_H */
|