mirror of https://github.com/m-labs/artiq.git
16 lines
415 B
C
16 lines
415 B
C
#ifndef __RTIO_H
|
|
#define __RTIO_H
|
|
|
|
void rtio_init(void);
|
|
void rtio_oe(int channel, int oe);
|
|
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);
|
|
long long int rtio_get(int channel);
|
|
int rtio_pileup_count(int channel);
|
|
|
|
void rtio_fud_sync(void);
|
|
void rtio_fud(long long int fud_time);
|
|
|
|
#endif /* __RTIO_H */
|