mirror of
https://github.com/m-labs/artiq.git
synced 2024-12-12 21:26:37 +08:00
10 lines
241 B
C
10 lines
241 B
C
#ifndef __RTIO_H
|
|
#define __RTIO_H
|
|
|
|
void rtio_init(void);
|
|
void rtio_set(long long int timestamp, int channel, int value);
|
|
void rtio_replace(long long int timestamp, int channel, int value);
|
|
void rtio_sync(int channel);
|
|
|
|
#endif /* __RTIO_H */
|