Add saving FITS-header template to 10micron daemon

This commit is contained in:
2020-02-22 18:02:23 +03:00
parent a936e0d815
commit 62f41e9baf
8 changed files with 220 additions and 43 deletions

View File

@@ -24,9 +24,13 @@
#ifndef __TELESCOPE_H__
#define __TELESCOPE_H__
int connect_telescope(char *dev);
// max time after last coordinates reading
#define COORDS_TOO_OLD_TIME (5)
int connect_telescope(char *dev, char *hdrname);
int point_telescope(double ra, double decl);
int get_telescope_coords(double *ra, double *decl);
void stop_telescope();
void wrhdr();
#endif // __TELESCOPE_H__