This commit is contained in:
2025-07-24 15:31:40 +03:00
parent 133863e47f
commit 8f36f89d7a
10 changed files with 102 additions and 87 deletions

View File

@@ -168,7 +168,8 @@ int main(int argc, char **argv){
// and go back with 7deg/s
move(0., 0., 7.);
// be sure to move @ starting position
Mount.moveTo(&M.X.val, &M.Y.val);
coordpair_t tag = {.X = M.X.val, .Y = M.Y.val};
Mount.moveTo(&tag);
// wait moving ends
pthread_join(dthr, NULL);
signals(0);