mirror of https://github.com/m-labs/artiq.git
15 lines
382 B
C
15 lines
382 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);
|
|
long long int rtio_get_counter(void);
|
|
long long int rtio_get(int channel, long long int time_limit);
|
|
int rtio_pileup_count(int channel);
|
|
|
|
void rtio_fud_sync(void);
|
|
void rtio_fud(long long int fud_time);
|
|
|
|
#endif /* __RTIO_H */
|