2015-05-08 16:20:12 +08:00
|
|
|
#ifndef __TTL_H
|
|
|
|
#define __TTL_H
|
|
|
|
|
|
|
|
void ttl_set_o(long long int timestamp, int channel, int value);
|
|
|
|
void ttl_set_oe(long long int timestamp, int channel, int oe);
|
|
|
|
void ttl_set_sensitivity(long long int timestamp, int channel, int sensitivity);
|
|
|
|
long long int ttl_get(int channel, long long int time_limit);
|
2015-07-05 00:36:01 +08:00
|
|
|
void ttl_clock_set(long long int timestamp, int channel, int ftw);
|
2015-05-08 16:20:12 +08:00
|
|
|
|
|
|
|
#endif /* __TTL_H */
|