forked from M-Labs/artiq
1
0
Fork 0
artiq/soc/runtime/rtio.h

10 lines
241 B
C
Raw Normal View History

2014-08-28 16:56:48 +08:00
#ifndef __RTIO_H
#define __RTIO_H
void rtio_init(void);
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);
#endif /* __RTIO_H */