1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233
|
/*
LX200 Astro-Physics INDI driver, tested with controller software version D
Copyright (C) 2007 Markus Wildi based on the work of Jasem Mutlaq
(mutlaqja@ikarustech.com)
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
//HAVE_NOVASCC_H: NOVAS-C, Version 2.0.1, Astronomical Applications Dept.
//U.S. Naval Observatory, Washington, DC 20392-5420 http://aa.usno.navy.mil/AA/
//#define HAVE_NOVASCC_H
//HAVE_NOVA_H: http://libnova.sourceforge.net/
//#define HAVE_NOVA_H
#include "lx200ap.h"
#include "lx200driver.h"
#include "lx200apdriver.h"
#include "lx200aplib.h"
#include <config.h>
#ifdef HAVE_NOVA_H
#include <libnova.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#define COMM_GROUP "Communication"
#define BASIC_GROUP "Main Control"
#define MOTION_GROUP "Motion Control"
#define FIRMWARE_GROUP "Firmware data"
#define SETTINGS_GROUP "Settings"
#define ATMOSPHERE_GROUP "Atmosphere"
#define MOUNT_GROUP "Mounting"
/* Handy Macros */
#define currentRA EquatorialCoordsRNP.np[0].value
#define currentDEC EquatorialCoordsRNP.np[1].value
#define targetRA EquatorialCoordsWNP.np[0].value
#define targetDEC EquatorialCoordsWNP.np[1].value
#define currentAZ HorizontalCoordsRNP.np[0].value
#define currentALT HorizontalCoordsRNP.np[1].value
#define targetAZ HorizontalCoordsWNP.np[0].value
#define targetALT HorizontalCoordsWNP.np[1].value
/* SNOOP */
#define CONTROL_GROUP "Control"
/* Do not forget to remove static in lx200generic.cpp */
extern INumberVectorProperty EquatorialCoordsWNP;
extern INumberVectorProperty EquatorialCoordsRNP;
extern ITextVectorProperty PortTP ;
extern ISwitchVectorProperty MovementNSSP ;
extern ISwitchVectorProperty MovementWESP ;
extern ISwitchVectorProperty ConnectSP ;
extern ISwitchVectorProperty AbortSlewSP ;
extern ISwitchVectorProperty OnCoordSetSP ;
extern INumberVectorProperty geoNP ;
extern INumberVectorProperty TrackingAccuracyNP ;
extern INumberVectorProperty SlewAccuracyNP ;
/* Communication */
static ISwitch DomeControlS[] =
{
{"ON" , "on" , ISS_ON, 0, 0},
{"OFF" , "off" , ISS_OFF, 0, 0},
};
ISwitchVectorProperty DomeControlSP =
{
myapdev, "DOMECONTROL" , "Dome control", COMM_GROUP, IP_RW, ISR_1OFMANY, 0, IPS_IDLE, DomeControlS, NARRAY(DomeControlS), "", 0
};
static ISwitch StartUpS[] =
{
{"COLD" , "cold" , ISS_OFF, 0, 0},
{"WARM" , "warm" , ISS_ON, 0, 0},
};
ISwitchVectorProperty StartUpSP =
{
myapdev, "STARTUP" , "Mount init.", COMM_GROUP, IP_RW, ISR_1OFMANY, 0, IPS_IDLE, StartUpS, NARRAY(StartUpS), "", 0
};
/* Main control */
#if defined HAVE_NOVA_H || defined HAVE_NOVASCC_H
static ISwitch ApparentToObservedS[] =
{
{"NCTC" , "identity" , ISS_ON, 0, 0},
{"NATR" , "app. to refracted" , ISS_OFF, 0, 0},
{"NARTT" , "app., refr., telescope" , ISS_OFF, 0, 0},
{"NARTTO" , "app., refr., tel., observed" , ISS_OFF, 0, 0},
};
ISwitchVectorProperty ApparentToObservedSP =
{
myapdev, "TRANSFORMATION" , "Transformation", BASIC_GROUP, IP_RW, ISR_1OFMANY, 0, IPS_IDLE, ApparentToObservedS, NARRAY(ApparentToObservedS), "", 0
};
#endif
static INumber HourangleCoordsN[] =
{
{"HA", "HA H:M:S", "%10.6m", 0., 24., 0., 0., 0, 0, 0},
{"Dec", "Dec D:M:S", "%10.6m", -90., 90., 0., 0., 0, 0, 0},
};
static INumberVectorProperty HourangleCoordsNP =
{
myapdev, "HOURANGLE_COORD", "Hourangle Coords", BASIC_GROUP, IP_RO, 0., IPS_IDLE, HourangleCoordsN, NARRAY( HourangleCoordsN), "", 0
};
static INumber HorizontalCoordsRN[] =
{
{"AZ", "Az D:M:S", "%10.6m", 0., 360., 0., 0., 0, 0, 0},
{"ALT", "Alt D:M:S", "%10.6m", -90., 90., 0., 0., 0, 0, 0}
};
static INumberVectorProperty HorizontalCoordsRNP =
{
myapdev, "HORIZONTAL_COORD", "Horizontal Coords", BASIC_GROUP, IP_RO, 120, IPS_IDLE, HorizontalCoordsRN, NARRAY(HorizontalCoordsRN), "", 0
};
/* Horizontal Coordinates: Request Only */
static INumber HorizontalCoordsWN[] =
{
{"AZ", "Az D:M:S", "%10.6m", 0., 360., 0., 0., 0, 0, 0},
{"ALT", "Alt D:M:S", "%10.6m", -90., 90., 0., 0., 0, 0, 0}
};
static INumberVectorProperty HorizontalCoordsWNP =
{
myapdev, "HORIZONTAL_COORD_REQUEST", "Horizontal Coords", BASIC_GROUP, IP_WO, 120, IPS_IDLE, HorizontalCoordsWN, NARRAY(HorizontalCoordsWN), "", 0
};
/* Difference of the equatorial coordinates, used to estimate the applied corrections */
static INumber DiffEquatorialCoordsN[] =
{
{"RA", "RA H:M:S", "%10.6m", 0., 24., 0., 0., 0, 0, 0},
{"Dec", "Dec D:M:S", "%10.6m", -90., 90., 0., 0., 0, 0, 0},
};
static INumberVectorProperty DiffEquatorialCoordsNP =
{
myapdev, "DIFFEQUATORIAL_COORD", "Diff. Eq.", BASIC_GROUP, IP_RO, 0., IPS_IDLE, DiffEquatorialCoordsN, NARRAY( DiffEquatorialCoordsN), "", 0
};
static ISwitch TrackModeS[] = {
{"LUNAR" , "lunar" , ISS_OFF, 0, 0},
{"SOLAR" , "solar" , ISS_OFF, 0, 0},
{"SIDEREAL", "sidereal" , ISS_OFF, 0, 0},
{"ZERO" , "zero" , ISS_ON, 0, 0},
};
ISwitchVectorProperty TrackModeSP =
{
myapdev, "TRACKINGMODE" , "Tracking mode", MOTION_GROUP, IP_RW, ISR_1OFMANY, 0, IPS_IDLE, TrackModeS, NARRAY(TrackModeS), "", 0
};
static ISwitch MoveToRateS[] = {
{"1200" , "1200x" , ISS_OFF, 0, 0},
{"600" , "600x" , ISS_OFF, 0, 0},
{"64" , "64x" , ISS_ON, 0, 0},
{"12" , "12x" , ISS_OFF, 0, 0},
};
ISwitchVectorProperty MoveToRateSP =
{
myapdev, "MOVETORATE" , "Move to rate", MOTION_GROUP, IP_RW, ISR_1OFMANY, 0, IPS_IDLE, MoveToRateS, NARRAY(MoveToRateS), "", 0
};
static ISwitch SlewRateS[] = {
{"1200" , "1200x" , ISS_OFF, 0, 0},
{"900" , "900x" , ISS_OFF, 0, 0},
{"600" , "600x" , ISS_ON, 0, 0},
};
ISwitchVectorProperty SlewRateSP =
{
myapdev, "SLEWRATE" , "Slew rate", MOTION_GROUP, IP_RW, ISR_1OFMANY, 0, IPS_IDLE, SlewRateS, NARRAY(SlewRateS), "", 0
};
static ISwitch SwapS[] = {
{"NS" , "North/Sounth" , ISS_OFF, 0, 0},
{"EW" , "East/West" , ISS_OFF, 0, 0},
};
ISwitchVectorProperty SwapSP =
{
myapdev, "SWAP" , "Swap buttons", MOTION_GROUP, IP_RW, ISR_1OFMANY, 0, IPS_IDLE, SwapS, NARRAY(SwapS), "", 0
};
static ISwitch SyncCMRS[] = {
{":CM#" , ":CM#" , ISS_ON, 0, 0},
{":CMR#" , ":CMR#" , ISS_OFF, 0, 0},
};
ISwitchVectorProperty SyncCMRSP =
{
myapdev, "SYNCCMR" , "Sync", MOTION_GROUP, IP_RW, ISR_1OFMANY, 0, IPS_IDLE, SyncCMRS, NARRAY(SyncCMRS), "", 0
};
/* Firmware data */
static IText VersionT[] =
{
// AP has only versionnumber
{ "Number", "", 0, 0, 0 ,0}
};
static ITextVectorProperty VersionInfo =
{
myapdev, "Firmware Info", "", FIRMWARE_GROUP, IP_RO, 0, IPS_IDLE, VersionT, NARRAY(VersionT), "" ,0
};
/* Mount */
static IText DeclinationAxisT[] =
{
{ "RELHA", "rel. to HA", 0, 0, 0, 0} ,
};
static ITextVectorProperty DeclinationAxisTP =
{
myapdev, "DECLINATIONAXIS", "Declination axis", MOUNT_GROUP, IP_RO, 0, IPS_IDLE, DeclinationAxisT, NARRAY(DeclinationAxisT), "" ,0
};
static INumber APLocalTimeN[] =
{
{"VALUE", "H:M:S", "%10.6m", 0., 24., 0., 0., 0, 0, 0},
};
static INumberVectorProperty APLocalTimeNP =
{
myapdev, "APLOCALTIME", "AP local time", MOUNT_GROUP, IP_RO, 0., IPS_IDLE, APLocalTimeN, NARRAY(APLocalTimeN), "", 0
};
static INumber APSiderealTimeN[] =
{
{"VALUE", "H:M:S", "%10.6m", 0., 24., 0., 0., 0, 0, 0},
};
static INumberVectorProperty APSiderealTimeNP =
{
myapdev, "APSIDEREALTIME", "AP sidereal time", MOUNT_GROUP, IP_RO, 0., IPS_IDLE, APSiderealTimeN, NARRAY(APSiderealTimeN), "", 0
};
static INumber APUTCOffsetN[] =
{
{"VALUE", "H:M:S", "%10.6m", 0., 24., 0., 0., 0, 0, 0},
};
static INumberVectorProperty APUTCOffsetNP =
{
myapdev, "APUTCOFFSET", "AP UTC Offset", MOUNT_GROUP, IP_RW, 0., IPS_IDLE, APUTCOffsetN, NARRAY(APUTCOffsetN), "", 0
};
static INumber HourAxisN[] =
{
{"THETA", "Theta D:M:S", "%10.6m", 0., 360., 0., 0., 0, 0, 0}, // 0., it points to the apparent pole
{"GAMMA", "Gamma D:M:S", "%10.6m", 0., 90., 0., 0., 0, 0, 0},
};
static INumberVectorProperty HourAxisNP =
{
myapdev, "HOURAXIS", "Hour axis", MOUNT_GROUP, IP_RW, 0., IPS_IDLE, HourAxisN, NARRAY(HourAxisN), "", 0
};
/* Atmosphere */
static INumber AirN[] =
{
{"TEMPERATURE", "Temperature K", "%10.2f", 0., 383.1, 0., 283.1, 0, 0, 0},
{"PRESSURE", "Pressure hPa", "%10.2f", 0., 1300., 0., 975., 0, 0, 0},
{"HUMIDITY", "Humidity Perc.", "%10.2f", 0., 100., 0., 70., 0, 0, 0},
};
static INumberVectorProperty AirNP =
{
myapdev, "ATMOSPHERE", "Atmosphere", ATMOSPHERE_GROUP, IP_RW, 0., IPS_IDLE, AirN, NARRAY(AirN), "", 0
};
/* Settings Group */
static IText ConnectionDCODT[] =
{
{ "DEVICE", "Device", 0, 0, 0, 0} ,
{ "PROPERTY", "Property", 0, 0, 0, 0}
};
static ITextVectorProperty ConnectionDCODTP =
{
myapdev, "SNOOPCONNECTIONDC", "Snoop dc connection", SETTINGS_GROUP, IP_RW, 0, IPS_IDLE, ConnectionDCODT, NARRAY(ConnectionDCODT), "" ,0
};
static IText MasterAlarmODT[]=
{
{ "DEVICE", "Device", 0, 0, 0, 0} ,
{ "PROPERTY", "Property", 0, 0, 0, 0}
};
static ITextVectorProperty MasterAlarmODTP =
{
myapdev, "SNOOPMASTERALARM", "Snoop dc master alarm", SETTINGS_GROUP, IP_RW, 0, IPS_IDLE, MasterAlarmODT, NARRAY(MasterAlarmODT), "" ,0
};
static IText ModeDCODT[] =
{
{ "DEVICE", "Device", 0, 0, 0, 0} ,
{ "PROPERTY", "Property", 0, 0, 0, 0}
};
static ITextVectorProperty ModeDCODTP =
{
myapdev, "SNOOPMODEDC", "Snoop dc mode", SETTINGS_GROUP, IP_RW, 0, IPS_IDLE, ModeDCODT, NARRAY(ModeDCODT), "" ,0
};
/********************************************
Property: Park telescope to HOME
*********************************************/
static ISwitch ParkS[] =
{
{"PARK", "Park", ISS_OFF, 0, 0},
};
static ISwitchVectorProperty ParkSP =
{
myapdev, "TELESCOPE_PARK", "Park Scope", BASIC_GROUP, IP_RW, ISR_ATMOST1, 0, IPS_IDLE, ParkS, NARRAY(ParkS), "", 0
};
/* SNOOPed properties */
static ISwitch ConnectionDCS[] =
{
{"CONNECT", "Connect", ISS_OFF, 0, 0},
{"DISCONNECT", "Disconnect", ISS_OFF, 0, 0},
};
static ISwitchVectorProperty ConnectionDCSP =
{
"dc", "CONNECTION", "Connection", CONTROL_GROUP, IP_RW, ISR_1OFMANY, 0, IPS_IDLE, ConnectionDCS, NARRAY(ConnectionDCS), "", 0
};
static ISwitch MasterAlarmS[] =
{
{"OFF", "off", ISS_OFF, 0, 0},
{"DANGER", "danger", ISS_OFF, 0, 0},
{"ON", "ON", ISS_OFF, 0, 0},
{"RESET", "reset", ISS_OFF, 0, 0},
};
static ISwitchVectorProperty MasterAlarmSP =
{
"dc", "MASTERALARM", "Master alarm", CONTROL_GROUP, IP_RW, ISR_1OFMANY, 0, IPS_IDLE, MasterAlarmS, NARRAY(MasterAlarmS), "", 0
};
static ISwitch ModeS[] = {
{"MANUAL", "manual", ISS_ON, 0, 0},
{"DOMECONTROL", "dome control", ISS_OFF, 0, 0}
};
static ISwitchVectorProperty ModeSP = {
"dc", "MODE", "Mode", CONTROL_GROUP, IP_RW, ISR_1OFMANY, 0, IPS_IDLE, ModeS, NARRAY(ModeS), "", 0
};
void changeLX200AstroPhysicsDeviceName(const char *newName)
{
strcpy(VersionInfo.device, newName);
strcpy(ParkSP.device, newName);
strcpy(AirNP.device, newName);
strcpy(ConnectionDCODTP.device, newName);
strcpy(MasterAlarmODTP.device, newName);
strcpy(ModeDCODTP.device, newName);
strcpy(TrackModeSP.device, newName);
strcpy(MovementNSSP.device, newName);
strcpy(MovementWESP.device, newName);
strcpy(MoveToRateSP.device, newName);
strcpy(SlewRateSP.device, newName);
strcpy(SwapSP.device, newName);
strcpy(SyncCMRSP.device, newName);
strcpy(DeclinationAxisTP.device, newName);
strcpy(APLocalTimeNP.device, newName);
strcpy(APSiderealTimeNP.device, newName);
strcpy(HourAxisNP.device, newName);
strcpy(APUTCOffsetNP.device, newName);
#if defined HAVE_NOVA_H || defined HAVE_NOVASCC_H
strcpy(ApparentToObservedSP.device, newName);
#endif
strcpy(HourangleCoordsNP.device, newName);
strcpy(HorizontalCoordsWNP.device, newName);
strcpy(HorizontalCoordsRNP.device, newName);
strcpy(EquatorialCoordsWNP.device, newName);
strcpy(EquatorialCoordsRNP.device, newName);
strcpy(DiffEquatorialCoordsNP.device, newName);
strcpy(StartUpSP.device, newName);
strcpy(DomeControlSP.device, newName);
}
/* Constructor */
LX200AstroPhysics::LX200AstroPhysics() : LX200Generic()
{
const char dev[]= "/dev/apmount" ;
const char status[]= "undefined" ;
IUSaveText(&ConnectionDCODT[0], ConnectionDCSP.device);
IUSaveText(&ConnectionDCODT[1], ConnectionDCSP.name);
IUSaveText(&MasterAlarmODT[0], MasterAlarmSP.device);
IUSaveText(&MasterAlarmODT[1], MasterAlarmSP.name);
IUSaveText(&ModeDCODT[0], ModeSP.device);
IUSaveText(&ModeDCODT[1], ModeSP.name);
IUSaveText(&PortTP.tp[0], dev);
IUSaveText(&DeclinationAxisTP.tp[0], status);
}
void LX200AstroPhysics::ISGetProperties (const char *dev)
{
if (dev && strcmp (thisDevice, dev))
return;
LX200Generic::ISGetProperties(dev);
IDDelete(thisDevice, "TELESCOPE_PARK", NULL);
IDDefSwitch (&ParkSP, NULL);
IDDefText(&VersionInfo, NULL);
/* Communication group */
// AstroPhysics has no alignment mode
IDDelete(thisDevice, "Alignment", NULL);
IDDefSwitch (&StartUpSP, NULL);
IDDefSwitch (&DomeControlSP, NULL);
/* Main Group */
#if defined HAVE_NOVA_H || defined HAVE_NOVASCC_H
IDDefSwitch(&ApparentToObservedSP, NULL);
#endif
IDDefNumber(&HourangleCoordsNP, NULL) ;
IDDefNumber(&HorizontalCoordsWNP, NULL);
IDDefNumber(&HorizontalCoordsRNP, NULL);
IDDelete(thisDevice, "EQUATORIAL_EOD_COORD_REQUEST", NULL);
IDDelete(thisDevice, "EQUATORIAL_EOD_COORD", NULL);
IDDefNumber(&EquatorialCoordsWNP, NULL);
IDDefNumber(&EquatorialCoordsRNP, NULL);
IDDefNumber(&DiffEquatorialCoordsNP, NULL);
/* Date&Time group */
IDDelete(thisDevice, "TIME_UTC_OFFSET", NULL);
IDDefText(&DeclinationAxisTP, NULL);
/* Mount group */
IDDefText(&DeclinationAxisTP, NULL);
IDDefNumber(&APLocalTimeNP, NULL);
IDDefNumber(&APSiderealTimeNP, NULL);
IDDefNumber(&APUTCOffsetNP, NULL);
IDDefNumber(&HourAxisNP, NULL);
/* Atmosphere group */
IDDefNumber (&AirNP, NULL);
/* Settings group */
IDDefText (&ConnectionDCODTP, NULL);
IDDefText (&MasterAlarmODTP, NULL);
IDDefText (&ModeDCODTP, NULL);
// AstroPhysics, we have no focuser, therefore, we don't need the classical one
IDDelete(thisDevice, "FOCUS_MODE", NULL);
IDDelete(thisDevice, "FOCUS_MOTION", NULL);
IDDelete(thisDevice, "FOCUS_TIMER", NULL);
/* Motion group */
IDDelete(thisDevice, "Slew rate", NULL);
IDDelete(thisDevice, "Tracking Mode", NULL);
IDDelete(thisDevice, "Tracking Frequency", NULL); /* AP does not have :GT, :ST commands */
IDDefSwitch (&TrackModeSP, NULL);
IDDefSwitch (&MovementNSSP, NULL);
IDDefSwitch (&MovementWESP, NULL);
IDDefSwitch (&MoveToRateSP, NULL);
IDDefSwitch (&SlewRateSP, NULL);
IDDefSwitch (&SwapSP, NULL);
IDDefSwitch (&SyncCMRSP, NULL);
/* Site management */
/* Astro Physics has no commands to retrieve the values */
/* True for all three control boxes and the software and C-KE1, G-L*/
IDDelete(thisDevice, "Sites", NULL);
IDDelete(thisDevice, "Site Name", NULL);
}
void LX200AstroPhysics::ISNewText (const char *dev, const char *name, char *texts[], char *names[], int n)
{
IText *tp=NULL;
// ignore if not ours //
if (strcmp (dev, thisDevice))
return;
// ===================================
// Snoop DC Connection
// ===================================
if (!strcmp(name, ConnectionDCODTP.name) )
{
tp = IUFindText( &ConnectionDCODTP, names[0] );
if (!tp)
return;
IUSaveText(tp, texts[0]);
tp = IUFindText( &ConnectionDCODTP, names[1] );
if (!tp)
return;
ConnectionDCODTP.s = IPS_OK;
IUSaveText(tp, texts[1]);
IDSnoopDevice( ConnectionDCODT[0].text, ConnectionDCODT[1].text);
ConnectionDCODTP.s= IPS_OK ;
IDSetText (&ConnectionDCODTP, "Snooping property %s at device %s", ConnectionDCODT[1].text, ConnectionDCODT[0].text);
return;
}
// ===================================
// Master Alarm
// ===================================
if (!strcmp(name, MasterAlarmODTP.name) )
{
tp = IUFindText( &MasterAlarmODTP, names[0] );
if (!tp)
return;
IUSaveText(tp, texts[0]);
tp = IUFindText( &MasterAlarmODTP, names[1] );
if (!tp)
return;
IUSaveText(tp, texts[1]);
IDSnoopDevice( MasterAlarmODT[0].text, MasterAlarmODT[1].text);
MasterAlarmODTP.s= IPS_OK ;
IDSetText (&MasterAlarmODTP, "Snooping property %s at device %s", MasterAlarmODT[1].text, MasterAlarmODT[0].text) ;
return;
}
// ===================================
// Snope DC Mode
// ===================================
if (!strcmp(name, ModeDCODTP.name) )
{
tp = IUFindText( &ModeDCODTP, names[0] );
if (!tp)
return;
IUSaveText(tp, texts[0]);
tp = IUFindText( &ModeDCODTP, names[1] );
if (!tp)
return;
ModeDCODTP.s = IPS_OK;
IUSaveText(tp, texts[1]);
IDSnoopDevice( ModeDCODT[0].text, ModeDCODT[1].text);
ModeDCODTP.s= IPS_OK ;
IDSetText (&ModeDCODTP, "Snooping property %s at device %s", ModeDCODT[1].text, ModeDCODT[0].text);
return;
}
LX200Generic::ISNewText (dev, name, texts, names, n);
}
void LX200AstroPhysics::ISNewNumber (const char *dev, const char *name, double values[], char *names[], int n)
{
int i=0, nset=0;
INumber *np=NULL;
// ignore if not ours
if (strcmp (dev, thisDevice))
return;
// ===================================
// Atmosphere
// ===================================
if (!strcmp (name, AirNP.name))
{
double newTemperature ;
double newPressure ;
double newHumidity ;
if (checkPower(&AirNP))
return;
for (nset = i = 0; i < n; i++)
{
np = IUFindNumber (&AirNP, names[i]);
if( np == &AirN[0])
{
newTemperature = values[i];
nset++ ;
}
else if( np == &AirN[1])
{
newPressure = values[i];
nset++ ;
}
else if( np == &AirN[2])
{
newHumidity = values[i];
nset++ ;
}
}
if (nset == 3)
{
AirNP.s = IPS_OK;
AirN[0].value = newTemperature;
AirN[1].value = newPressure;
AirN[2].value = newHumidity;
IDSetNumber(&AirNP, NULL);
}
else
{
AirNP.s = IPS_ALERT;
IDSetNumber(&AirNP, "Temperature, Pressure or Humidity missing or invalid");
}
return;
}
// ===================================
// AP UTC Offset
// ===================================
if ( !strcmp (name, APUTCOffsetNP.name) )
{
int ret ;
if (checkPower(&APUTCOffsetNP))
return;
if (values[0] <= 0.0 || values[0] > 24.0)
{
APUTCOffsetNP.s = IPS_IDLE;
IDSetNumber(&APUTCOffsetNP , "UTC offset invalid");
return;
}
if(( ret = setAPUTCOffset(fd, values[0]) < 0) )
{
handleError(&APUTCOffsetNP, ret, "Setting AP UTC offset");
return;
}
APUTCOffsetN[0].value = values[0];
APUTCOffsetNP.s = IPS_OK;
IDSetNumber(&APUTCOffsetNP, NULL);
return;
}
// =======================================
// Hour axis' intersection with the sphere
// =======================================
if (!strcmp (name, HourAxisNP.name))
{
int i=0, nset=0;
double newTheta, newGamma ;
if (checkPower(&HourAxisNP))
return;
for (nset = i = 0; i < n; i++)
{
np = IUFindNumber (&HourAxisNP, names[i]);
if ( np == &HourAxisN[0])
{
newTheta = values[i];
nset += newTheta >= 0 && newTheta <= 360.0;
}
else if ( np == &HourAxisN[1])
{
newGamma = values[i];
nset += newGamma >= 0. && newGamma <= 90.0;
}
}
if (nset == 2)
{
HourAxisNP.s = IPS_OK;
HourAxisN[0].value = newTheta;
HourAxisN[1].value = newGamma;
IDSetNumber(&HourAxisNP, NULL);
}
else
{
HourAxisNP.s = IPS_ALERT;
IDSetNumber(&HourAxisNP, "Theta or gamma missing or invalid");
}
return;
}
// =======================================
// Equatorial Coord - SET
// =======================================
if (!strcmp (name, EquatorialCoordsWNP.name))
{
int err ;
int i=0, nset=0;
double newRA, newDEC ;
if (checkPower(&EquatorialCoordsWNP))
return;
for (nset = i = 0; i < n; i++)
{
INumber *np = IUFindNumber (&EquatorialCoordsWNP, names[i]);
if (np == &EquatorialCoordsWNP.np[0])
{
newRA = values[i];
nset += newRA >= 0 && newRA <= 24.0;
} else if (np == &EquatorialCoordsWNP.np[1])
{
newDEC = values[i];
nset += newDEC >= -90.0 && newDEC <= 90.0;
}
}
if (nset == 2)
{
int ret ;
#if defined HAVE_NOVA_H || defined HAVE_NOVASCC_H
double geo[6] ;
double eqt[2] ;
double eqn[2] ;
double hxt[2] ;
#endif
/*EquatorialCoordsWNP.s = IPS_BUSY;*/
char RAStr[32], DecStr[32];
fs_sexa(RAStr, newRA, 2, 3600);
fs_sexa(DecStr, newDEC, 2, 3600);
#ifdef INDI_DEBUG
IDLog("We received JNOW RA %g - DEC %g\n", newRA, newDEC);
IDLog("We received JNOW RA %s - DEC %s\n", RAStr, DecStr);
#endif
#if defined HAVE_NOVA_H || defined HAVE_NOVASCC_H
// Transfor the coordinates
/* Get the current time. */
geo[0]= geoNP.np[0].value ;
geo[1]= geoNP.np[1].value ;
geo[2]= geoNP.np[2].value ;
geo[3]= AirN[0].value ;
geo[4]= AirN[1].value ;
geo[5]= AirN[2].value ;
eqn[0]= newRA ;
eqn[1]= newDEC ;
hxt[0]= HourAxisN[0].value ;
hxt[1]= HourAxisN[1].value ;
if((ret = LDAppToX( getOnSwitch(&ApparentToObservedSP), eqn, ln_get_julian_from_sys(), geo, hxt, eqt)) != 0)
{
IDMessage( myapdev, "ISNewNumber: transformation %d failed", getOnSwitch(&ApparentToObservedSP)) ;
exit(1) ;
} ;
/*EquatorialCoordsWNP.s = IPS_BUSY;*/
targetRA= eqt[0];
targetDEC= eqt[1];
#else
targetRA= newRA;
targetDEC= newDEC;
#endif
if ( (ret = setAPObjectRA(fd, targetRA)) < 0 || ( ret = setAPObjectDEC(fd, targetDEC)) < 0)
{
DiffEquatorialCoordsNP.s= IPS_ALERT;
IDSetNumber(&DiffEquatorialCoordsNP, NULL);
handleError(&EquatorialCoordsRNP, err, "Setting RA/DEC");
return;
}
EquatorialCoordsWNP.s = IPS_OK;
IDSetNumber(&EquatorialCoordsWNP, NULL);
DiffEquatorialCoordsNP.np[0].value= targetRA - currentRA ;
DiffEquatorialCoordsNP.np[1].value= targetDEC - currentDEC;
DiffEquatorialCoordsNP.s= IPS_OK;
IDSetNumber(&DiffEquatorialCoordsNP, NULL);
// ToDo don't we need to stop the motion (:Q#)?
if (MovementNSSP.s == IPS_BUSY || MovementWESP.s == IPS_BUSY)
{
IUResetSwitch(&MovementNSSP);
IUResetSwitch(&MovementWESP);
MovementNSSP.s = MovementWESP.s = IPS_IDLE;
IDSetSwitch(&MovementNSSP, NULL);
IDSetSwitch(&MovementWESP, NULL);
}
handleEqCoordSet() ;
//ToDo : conversion to boolean {
// EquatorialCoordsWNP.s = IPS_ALERT;
// IDSetNumber(&EquatorialCoordsWNP, NULL);
// }
} // end nset
else
{
EquatorialCoordsWNP.s = IPS_ALERT;
IDSetNumber(&EquatorialCoordsWNP, "RA or Dec missing or invalid");
}
return ;
}
// =======================================
// Horizontal Coords - SET
// =======================================
if ( !strcmp (name, HorizontalCoordsWNP.name) )
{
int i=0, nset=0;
double newAz, newAlt ;
int ret ;
char altStr[64], azStr[64];
if (checkPower(&HorizontalCoordsWNP))
return;
for (nset = i = 0; i < n; i++)
{
np = IUFindNumber (&HorizontalCoordsWNP, names[i]);
if (np == &HorizontalCoordsWN[0])
{
newAz = values[i];
nset += newAz >= 0. && newAz <= 360.0;
}
else if (np == &HorizontalCoordsWN[1])
{
newAlt = values[i];
nset += newAlt >= -90. && newAlt <= 90.0;
}
}
if (nset == 2)
{
if ( (ret = setAPObjectAZ(fd, newAz)) < 0 || (ret = setAPObjectAlt(fd, newAlt)) < 0)
{
handleError(&HorizontalCoordsWNP, ret, "Setting Alt/Az");
return;
}
targetAZ= newAz;
targetALT= newAlt;
HorizontalCoordsWNP.s = IPS_OK;
IDSetNumber(&HorizontalCoordsWNP, NULL) ;
fs_sexa(azStr, targetAZ, 2, 3600);
fs_sexa(altStr, targetALT, 2, 3600);
//IDSetNumber (&HorizontalCoordsWNP, "Attempting to slew to Alt %s - Az %s", altStr, azStr);
handleAltAzSlew();
}
else
{
HorizontalCoordsWNP.s = IPS_ALERT;
IDSetNumber(&HorizontalCoordsWNP, "Altitude or Azimuth missing or invalid");
}
return;
}
// =======================================
// Geographical Location
// =======================================
if (!strcmp (name, geoNP.name))
{
// new geographic coords
double newLong = 0, newLat = 0;
int i, nset, err;
char msg[128];
if (checkPower(&geoNP))
return;
for (nset = i = 0; i < n; i++)
{
np = IUFindNumber (&geoNP, names[i]);
if (np == &geoNP.np[0])
{
newLat = values[i];
nset += newLat >= -90.0 && newLat <= 90.0;
} else if (np == &geoNP.np[1])
{
newLong = values[i];
nset += newLong >= 0.0 && newLong < 360.0;
}
}
if (nset == 2)
{
char l[32], L[32];
geoNP.s = IPS_OK;
fs_sexa (l, newLat, 3, 3600);
fs_sexa (L, newLong, 4, 3600);
if ( ( err = setAPSiteLongitude(fd, 360.0 - newLong) < 0) )
{
handleError(&geoNP, err, "Setting site coordinates");
return;
}
if ( ( err = setAPSiteLatitude(fd, newLat) < 0) )
{
handleError(&geoNP, err, "Setting site coordinates");
return;
}
geoNP.np[0].value = newLat;
geoNP.np[1].value = newLong;
snprintf (msg, sizeof(msg), "Site location updated to Lat %.32s - Long %.32s", l, L);
}
else
{
geoNP.s = IPS_IDLE;
strcpy(msg, "Lat or Long missing or invalid");
}
IDSetNumber (&geoNP, "%s", msg);
return;
}
LX200Generic::ISNewNumber (dev, name, values, names, n);
}
void LX200AstroPhysics::ISNewSwitch (const char *dev, const char *name, ISState *states, char *names[], int n)
{
int err=0;
// ignore if not ours //
if (strcmp (thisDevice, dev))
return;
// =======================================
// Connect
// =======================================
if (!strcmp (name, ConnectSP.name))
{
IUUpdateSwitch(&ConnectSP, states, names, n) ;
connectTelescope();
return;
}
// ============================================================
// Satisfy AP mount initialization, see AP key pad manual p. 76
// ============================================================
if (!strcmp (name, StartUpSP.name))
{
int ret ;
int switch_nr ;
static int mount_status= MOUNTNOTINITIALIZED ;
IUUpdateSwitch(&StartUpSP, states, names, n) ;
if( mount_status == MOUNTNOTINITIALIZED)
{
mount_status=MOUNTINITIALIZED;
if(( ret= setBasicDataPart0())< 0)
{
// ToDo do something if needed
StartUpSP.s = IPS_ALERT ;
IDSetSwitch(&StartUpSP, "Mount initialization failed") ;
return ;
}
if( StartUpSP.sp[0].s== ISS_ON) // do it only in case a power on (cold start)
{
if(( ret= setBasicDataPart1())< 0)
{
// ToDo do something if needed
StartUpSP.s = IPS_ALERT ;
IDSetSwitch(&StartUpSP, "Mount initialization failed") ;
return ;
}
}
// Make sure that the mount is setup according to the properties
switch_nr = getOnSwitch(&TrackModeSP);
if ( ( err = selectAPTrackingMode(fd, switch_nr) < 0) )
{
handleError(&TrackModeSP, err, "StartUpSP: Setting tracking mode.");
return;
}
TrackModeSP.s = IPS_OK;
IDSetSwitch(&TrackModeSP, NULL);
//ToDo set button swapping acording telescope east west
// ... some code here
switch_nr = getOnSwitch(&MoveToRateSP);
if ( ( err = selectAPMoveToRate(fd, switch_nr) < 0) )
{
handleError(&MoveToRateSP, err, "StartUpSP: Setting move to rate.");
return;
}
MoveToRateSP.s = IPS_OK;
IDSetSwitch(&MoveToRateSP, NULL);
switch_nr = getOnSwitch(&SlewRateSP);
if ( ( err = selectAPSlewRate(fd, switch_nr) < 0) )
{
handleError(&SlewRateSP, err, "StartUpSP: Setting slew rate.");
return;
}
SlewRateSP.s = IPS_OK;
IDSetSwitch(&SlewRateSP, NULL);
StartUpSP.s = IPS_OK ;
IDSetSwitch(&StartUpSP, "Mount initialized") ;
// Fetch the coordinates and set RNP and WNP
getLX200RA( fd, ¤tRA);
getLX200DEC(fd, ¤tDEC);
// make a IDSet in order the dome controller is aware of the initial values
targetRA= currentRA ;
targetDEC= currentDEC ;
EquatorialCoordsWNP.s = IPS_BUSY; /* dome controller sets target only if this state is busy */
IDSetNumber(&EquatorialCoordsWNP, "EquatorialCoordsWNP.s = IPS_BUSY after initialization");
// sleep for 100 mseconds
usleep(100000);
EquatorialCoordsWNP.s = IPS_OK;
IDSetNumber(&EquatorialCoordsWNP, NULL);
getLX200Az(fd, ¤tAZ);
getLX200Alt(fd, ¤tALT);
HorizontalCoordsRNP.s = IPS_OK ;
IDSetNumber (&HorizontalCoordsRNP, NULL);
VersionInfo.tp[0].text = new char[64];
getAPVersionNumber(fd, VersionInfo.tp[0].text);
VersionInfo.s = IPS_OK ;
IDSetText(&VersionInfo, NULL);
if(( getOnSwitch(&DomeControlSP))== DOMECONTROL)
{
//ToDo compare that with other driver, not the best way
IDSnoopDevice( MasterAlarmODTP.tp[0].text, MasterAlarmODTP.tp[1].text);
MasterAlarmODTP.s= IPS_OK ;
IDSetText (&MasterAlarmODTP, "SNOOPing %s on device %s", MasterAlarmODTP.tp[1].text, MasterAlarmODTP.tp[0].text);
IDSnoopDevice( ConnectionDCODTP.tp[0].text, ConnectionDCODTP.tp[1].text);
ConnectionDCODTP.s= IPS_OK ;
IDSetText (&ConnectionDCODTP, "SNOOPing %s on device %s", ConnectionDCODTP.tp[1].text, ConnectionDCODTP.tp[0].text);
IDSnoopDevice( ConnectionDCODTP.tp[0].text, ConnectionDCODTP.tp[1].text);
IDSnoopDevice( ModeDCODTP.tp[0].text, ModeDCODTP.tp[1].text);
ModeDCODTP.s= IPS_OK ;
IDSetText (&ModeDCODTP, "SNOOPing %s on device %s", ModeDCODTP.tp[1].text, ModeDCODTP.tp[0].text);
// once chosen no unsnooping is possible
DomeControlSP.s= IPS_OK ;
IDSetSwitch(&DomeControlSP, NULL) ;
}
else
{
IDMessage( myapdev, "Not operating in dome control mode") ;
}
#ifndef HAVE_NOVA_H
IDMessage( myapdev, "Libnova not compiled in, consider to install it (http://libnova.sourceforge.net/)") ;
#endif
#ifndef HAVE_NOVASCC_H
IDMessage( myapdev, "NOVASCC not compiled in, consider to install it (http://aa.usno.navy.mil/AA/)") ;
#endif
}
else
{
StartUpSP.s = IPS_ALERT ;
IDSetSwitch(&StartUpSP, "Mount is already initialized") ;
}
return;
}
// =======================================
// Park
// =======================================
if (!strcmp(name, ParkSP.name))
{
if (checkPower(&ParkSP))
return;
if (EquatorialCoordsWNP.s == IPS_BUSY)
{
// ToDo handle return value
abortSlew(fd);
// sleep for 200 mseconds
usleep(200000);
AbortSlewSP.s = IPS_OK;
IDSetSwitch(&AbortSlewSP, NULL);
}
if (setAPPark(fd) < 0)
{
ParkSP.s = IPS_ALERT;
IDSetSwitch(&ParkSP, "Parking Failed.");
return;
}
ParkSP.s = IPS_OK;
IDSetSwitch(&ParkSP, "The telescope is parked. Turn off the telescope. Disconnecting...");
// avoid sending anything to the mount controller
tty_disconnect( fd);
ConnectSP.s = IPS_IDLE;
ConnectSP.sp[0].s = ISS_OFF;
ConnectSP.sp[1].s = ISS_ON;
IDSetSwitch(&ConnectSP, NULL);
StartUpSP.s = IPS_IDLE ;
IDSetSwitch(&StartUpSP, NULL) ;
// ToDo reset all values
return;
}
// =======================================
// Tracking Mode
// =======================================
if (!strcmp (name, TrackModeSP.name))
{
if (checkPower(&TrackModeSP))
return;
IUResetSwitch(&TrackModeSP);
IUUpdateSwitch(&TrackModeSP, states, names, n);
trackingMode = getOnSwitch(&TrackModeSP);
if ( ( err = selectAPTrackingMode(fd, trackingMode) < 0) )
{
handleError(&TrackModeSP, err, "Setting tracking mode.");
return;
}
TrackModeSP.s = IPS_OK;
IDSetSwitch(&TrackModeSP, NULL);
if( trackingMode != 3) /* not zero */
{
AbortSlewSP.s = IPS_IDLE;
IDSetSwitch(&AbortSlewSP, NULL);
}
return;
}
// =======================================
// Swap Buttons
// =======================================
if (!strcmp(name, SwapSP.name))
{
int currentSwap ;
if (checkPower(&SwapSP))
return;
IUResetSwitch(&SwapSP);
IUUpdateSwitch(&SwapSP, states, names, n);
currentSwap = getOnSwitch(&SwapSP);
if(( err = swapAPButtons(fd, currentSwap) < 0) )
{
handleError(&SwapSP, err, "Swapping buttons.");
return;
}
SwapS[0].s= ISS_OFF ;
SwapS[1].s= ISS_OFF ;
SwapSP.s = IPS_OK;
IDSetSwitch(&SwapSP, NULL);
return ;
}
// =======================================
// Swap to rate
// =======================================
if (!strcmp (name, MoveToRateSP.name))
{
int moveToRate ;
if (checkPower(&MoveToRateSP))
return;
IUResetSwitch(&MoveToRateSP);
IUUpdateSwitch(&MoveToRateSP, states, names, n);
moveToRate = getOnSwitch(&MoveToRateSP);
if ( ( err = selectAPMoveToRate(fd, moveToRate) < 0) )
{
handleError(&MoveToRateSP, err, "Setting move to rate.");
return;
}
MoveToRateSP.s = IPS_OK;
IDSetSwitch(&MoveToRateSP, NULL);
return;
}
// =======================================
// Slew Rate
// =======================================
if (!strcmp (name, SlewRateSP.name))
{
int slewRate ;
if (checkPower(&SlewRateSP))
return;
IUResetSwitch(&SlewRateSP);
IUUpdateSwitch(&SlewRateSP, states, names, n);
slewRate = getOnSwitch(&SlewRateSP);
if ( ( err = selectAPSlewRate(fd, slewRate) < 0) )
{
handleError(&SlewRateSP, err, "Setting slew rate.");
return;
}
SlewRateSP.s = IPS_OK;
IDSetSwitch(&SlewRateSP, NULL);
return;
}
// =======================================
// Choose the appropriate sync command
// =======================================
if (!strcmp(name, SyncCMRSP.name))
{
int currentSync ;
if (checkPower(&SyncCMRSP))
return;
IUResetSwitch(&SyncCMRSP);
IUUpdateSwitch(&SyncCMRSP, states, names, n);
currentSync = getOnSwitch(&SyncCMRSP);
SyncCMRSP.s = IPS_OK;
IDSetSwitch(&SyncCMRSP, NULL);
return ;
}
#if defined HAVE_NOVA_H || defined HAVE_NOVASCC_H
// =======================================
// Set various transformations
// =======================================
if (!strcmp (name, ApparentToObservedSP.name))
{
int trans_to ;
if (checkPower(&ApparentToObservedSP))
return;
IUResetSwitch(&ApparentToObservedSP);
IUUpdateSwitch(&ApparentToObservedSP, states, names, n);
trans_to = getOnSwitch(&ApparentToObservedSP);
ApparentToObservedSP.s = IPS_OK;
IDSetSwitch(&ApparentToObservedSP, "Transformation %d", trans_to);
return;
}
#endif
if (!strcmp (name, DomeControlSP.name))
{
if((DomeControlSP.s== IPS_OK) &&( DomeControlSP.sp[0].s== ISS_ON))
{
#ifdef INDI_DEBUG
IDLog("Once in dome control mode no return is possible (INDI has no \"unsnoop\")\n") ;
#endif
DomeControlSP.s= IPS_ALERT ;
IDSetSwitch(&DomeControlSP, "Once in dome control mode no return is possible (INDI has no \"unsnoop\")") ;
}
else
{
int last_state= getOnSwitch(&DomeControlSP) ;
IUResetSwitch(&DomeControlSP);
IUUpdateSwitch(&DomeControlSP, states, names, n) ;
DomeControlSP.s= IPS_OK ;
IDSetSwitch(&DomeControlSP, NULL) ;
if(( DomeControlSP.s== IPS_OK) &&( last_state== NOTDOMECONTROL)) /* dome control mode after mount init. */
{
//ToDo compare that with other driver, not the best way
IDSnoopDevice( MasterAlarmODTP.tp[0].text, MasterAlarmODTP.tp[1].text);
MasterAlarmODTP.s= IPS_OK ;
IDSetText (&MasterAlarmODTP, "SNOOPing %s on device %s", MasterAlarmODTP.tp[1].text, MasterAlarmODTP.tp[0].text);
IDSnoopDevice( ConnectionDCODTP.tp[0].text, ConnectionDCODTP.tp[1].text);
ConnectionDCODTP.s= IPS_OK ;
IDSetText (&ConnectionDCODTP, "SNOOPing %s on device %s", ConnectionDCODTP.tp[1].text, ConnectionDCODTP.tp[0].text);
IDSnoopDevice( ConnectionDCODTP.tp[0].text, ConnectionDCODTP.tp[1].text);
IDSnoopDevice( ModeDCODTP.tp[0].text, ModeDCODTP.tp[1].text);
ModeDCODTP.s= IPS_OK ;
IDSetText (&ModeDCODTP, "SNOOPing %s on device %s", ModeDCODTP.tp[1].text, ModeDCODTP.tp[0].text);
}
}
return;
}
LX200Generic::ISNewSwitch (dev, name, states, names, n);
}
void LX200AstroPhysics::ISSnoopDevice (XMLEle *root)
{
int err ;
if (IUSnoopSwitch(root, &MasterAlarmSP) == 0)
{
//IDMessage( myapdev, "ISCollisionStatusS received new values %s: %d, %s: %d, %s: %d.", names[0], states[0],names[1], states[1],names[2], states[2]);
if( MasterAlarmS[1].s == ISS_ON) /* Approaching a critical situation */
{
/* Stop if possible any motion */
// ToDo
abortSlew(fd);
AbortSlewSP.s = IPS_OK;
IDSetSwitch(&AbortSlewSP, NULL);
if ( ( err = selectAPTrackingMode(fd, 3) < 0) ) /* Tracking Mode 3 = zero */
{
IDMessage( myapdev, "FAILED: Setting tracking mode ZERO.");
return;
}
IUResetSwitch(&TrackModeSP);
TrackModeSP.sp[0].s= ISS_OFF ; /* lunar */
TrackModeSP.sp[1].s= ISS_OFF ; /* solar */
TrackModeSP.sp[2].s= ISS_OFF ; /* sidereal */
TrackModeSP.sp[3].s= ISS_ON ; /* zero */
TrackModeSP.s = IPS_ALERT;
IDSetSwitch(&TrackModeSP, "Device %s MasterAlarm OFF: approaching a critical situation, avoided by apmount, stopped motors, no tracking!", MasterAlarmODT[0].text);
}
else if( MasterAlarmS[2].s == ISS_ON) /* a critical situation */
{
/* If Master Alarm is on it is "too" late. So we do the same as under MasterAlarmS[1].s == ISS_ON*/
/* The device setting up the Master Alarm should switch power off*/
// ToDo
abortSlew(fd);
AbortSlewSP.s = IPS_OK;
IDSetSwitch(&AbortSlewSP, NULL);
if ( ( err = selectAPTrackingMode(fd, 3) < 0) ) /* Tracking Mode 3 = zero */
{
IDMessage( myapdev, "FAILED: Setting tracking mode ZERO.");
return;
}
IUResetSwitch(&TrackModeSP);
TrackModeSP.sp[0].s= ISS_OFF ; /* lunar */
TrackModeSP.sp[1].s= ISS_OFF ; /* solar */
TrackModeSP.sp[2].s= ISS_OFF ; /* sidereal */
TrackModeSP.sp[3].s= ISS_ON ; /* zero */
TrackModeSP.s = IPS_ALERT;
IDSetSwitch(&TrackModeSP, "Device %s MasterAlarm ON: critical situation avoided, stopped motors, no tracking!", MasterAlarmODT[0].text);
}
else if((MasterAlarmS[2].s == ISS_OFF) && (MasterAlarmS[1].s == ISS_OFF) && (MasterAlarmS[0].s == ISS_OFF))
{
//ToDo make the mastar alarm indicator more visible!!
TrackModeSP.s = IPS_OK;
IDSetSwitch(&TrackModeSP, "MasterAlarm Status ok");
// values obtained via ISPoll
IDSetNumber(&EquatorialCoordsWNP, "Setting (sending) EquatorialCoordsRNP on reset MasterAlarm");
}
else
{
if ( ( err = selectAPTrackingMode(fd, 3) < 0) ) /* Tracking Mode 3 = zero */
{
IDMessage( myapdev, "FAILED: Setting tracking mode ZERO.");
return;
}
IUResetSwitch(&TrackModeSP);
TrackModeSP.sp[0].s= ISS_OFF ; /* lunar */
TrackModeSP.sp[1].s= ISS_OFF ; /* solar */
TrackModeSP.sp[2].s= ISS_OFF ; /* sidereal */
TrackModeSP.sp[3].s= ISS_ON ; /* zero */
TrackModeSP.s = IPS_ALERT;
TrackModeSP.s = IPS_ALERT;
IDSetSwitch(&TrackModeSP, "Device %s MASTER ALARM Unknown Status", MasterAlarmODT[0].text);
}
}
else if (IUSnoopSwitch(root, &ConnectionDCSP) == 0)
{
if( ConnectionDCS[0].s != ISS_ON)
{
// ToDo
abortSlew(fd);
AbortSlewSP.s = IPS_OK;
IDSetSwitch(&AbortSlewSP, NULL);
if ( ( err = selectAPTrackingMode(fd, 3) < 0) ) /* Tracking Mode 3 = zero */
{
IDMessage( myapdev, "FAILED: Setting tracking mode ZERO.");
return;
}
IUResetSwitch(&TrackModeSP);
TrackModeSP.sp[0].s= ISS_OFF ; /* lunar */
TrackModeSP.sp[1].s= ISS_OFF ; /* solar */
TrackModeSP.sp[2].s= ISS_OFF ; /* sidereal */
TrackModeSP.sp[3].s= ISS_ON ; /* zero */
TrackModeSP.s = IPS_ALERT;
IDSetSwitch(&TrackModeSP, "Driver %s disconnected: critical situation avoided, stopped motors, no tracking!", MasterAlarmODT[0].text);
}
}
else if (IUSnoopSwitch(root, &ModeSP) == 0)
{
if( ModeS[1].s == ISS_ON) /* late dome control mode */
{
getLX200RA( fd, ¤tRA);
getLX200DEC(fd, ¤tDEC);
targetRA= currentRA ;
targetDEC= currentDEC ;
EquatorialCoordsWNP.s = IPS_BUSY; /* dome controller sets target only if this state is busy */
IDSetNumber(&EquatorialCoordsWNP, "Setting (sending) EquatorialCoordsRNP on ModeS[1].s != ISS_ON");
// sleep for 100 mseconds
usleep(100000);
EquatorialCoordsWNP.s = IPS_OK;
IDSetNumber(&EquatorialCoordsWNP, NULL) ;
}
}
}
bool LX200AstroPhysics::isMountInit(void)
{
return (StartUpSP.s != IPS_IDLE);
}
void LX200AstroPhysics::ISPoll()
{
int ret ;
// int ddd, mm ;
if (!isMountInit())
return;
// #ifdef INDI_DEBUG
// getSiteLongitude(fd, &ddd, &mm) ;
// IDLog("longitude %d:%d\n", ddd, mm);
// getSiteLatitude(fd, &ddd, &mm) ;
// IDLog("latitude %d:%d\n", ddd, mm);
// getAPUTCOffset( fd, &APUTCOffsetN[0].value) ;
// IDLog("UTC offset %10.6f\n", APUTCOffsetN[0].value);
// #endif
//============================================================
// #1 Call LX200Generic ISPoll
//============================================================
LX200Generic::ISPoll();
//============================================================
// #2 Get Local Time
//============================================================
if(( ret= getLocalTime24( fd, &APLocalTimeN[0].value)) == 0)
{
APLocalTimeNP.s = IPS_OK ;
}
else
{
APLocalTimeNP.s = IPS_ALERT ;
}
IDSetNumber(&APLocalTimeNP, NULL);
// #ifdef INDI_DEBUG
// IDLog("localtime %f\n", APLocalTimeN[0].value) ;
// #endif
//============================================================
// #3 Get Sidereal Time
//============================================================
if(( ret= getSDTime( fd, &APSiderealTimeN[0].value)) == 0)
{
APSiderealTimeNP.s = IPS_OK ;
}
else
{
APSiderealTimeNP.s = IPS_ALERT ;
}
IDSetNumber(&APSiderealTimeNP, NULL);
// #ifdef INDI_DEBUG
// IDLog("siderealtime %f\n", APSiderealTimeN[0].value) ;
// #endif
//============================================================
// #4 Get UTC Offset
//============================================================
if(( ret= getAPUTCOffset( fd, &APUTCOffsetN[0].value)) == 0)
{
APUTCOffsetNP.s = IPS_OK ;
}
else
{
APUTCOffsetNP.s = IPS_ALERT ;
}
IDSetNumber(&APUTCOffsetNP, NULL);
//============================================================
// #5
//============================================================
if(( ret= getAPDeclinationAxis( fd, DeclinationAxisT[0].text)) == 0)
{
DeclinationAxisTP.s = IPS_OK ;
}
else
{
DeclinationAxisTP.s = IPS_ALERT ;
}
IDSetText(&DeclinationAxisTP, NULL) ;
/* LX200Generic should take care of this */
//getLX200RA(fd, ¤tRA );
//getLX200DEC(fd, ¤tDEC );
//EquatorialCoordsRNP.s = IPS_OK ;
//IDSetNumber (&EquatorialCoordsRNP, NULL);
/* Calculate the hour angle */
HourangleCoordsNP.np[0].value= 180. /M_PI/15. * LDRAtoHA( 15.* currentRA /180. *M_PI, -geoNP.np[1].value/180. *M_PI);
HourangleCoordsNP.np[1].value= currentDEC;
HourangleCoordsNP.s = IPS_OK;
IDSetNumber(&HourangleCoordsNP, NULL);
getLX200Az(fd, ¤tAZ);
getLX200Alt(fd, ¤tALT);
/* The state of RNP is coupled to the WNP
HorizontalCoordsRNP.s = IPS_OK ;
IDSetNumber (&HorizontalCoordsRNP, NULL);
*/
// LX200generic has no HorizontalCoords(R|W)NP
if( HorizontalCoordsWNP.s == IPS_BUSY) /* telescope is syncing or slewing */
{
double dx = fabs ( targetAZ - currentAZ);
double dy = fabs ( targetALT - currentALT);
if (dx <= (SlewAccuracyNP.np[0].value/(60.0*15.0)) && (dy <= SlewAccuracyNP.np[1].value/60.0))
{
#ifdef INDI_DEBUG
IDLog("Slew completed.\n");
#endif
HorizontalCoordsWNP.s = IPS_OK ;
IDSetNumber(&HorizontalCoordsWNP, "Slew completed") ;
}
else
{
#ifdef INDI_DEBUG
IDLog("Slew in progress.\n");
#endif
}
}
if(StartUpSP.s== IPS_OK) /* the dome controller needs to be informed even in case dc has been started long after lx200ap*/
{
StartUpSP.s = IPS_OK ;
IDSetSwitch(&StartUpSP, NULL) ;
}
else
{
StartUpSP.s = IPS_ALERT ;
IDSetSwitch(&StartUpSP, NULL) ;
}
}
int LX200AstroPhysics::setBasicDataPart0()
{
int err ;
#ifdef HAVE_NOVA_H
struct ln_date utm;
struct ln_zonedate ltm;
#endif
if(setAPClearBuffer( fd) < 0)
{
handleError(&ConnectSP, err, "Clearing the buffer");
return -1;
}
if(setAPLongFormat( fd) < 0)
{
IDMessage( myapdev, "Setting long format failed") ;
return -1;
}
// ToDo make a property
if(setAPBackLashCompensation(fd, 0,0,0) < 0)
{
handleError(&ConnectSP, err, "Setting back lash compensation");
return -1;
}
#if defined HAVE_NOVA_H
ln_get_date_from_sys( &utm) ;
ln_date_to_zonedate(&utm, <m, 3600);
if(( err = setLocalTime(fd, ltm.hours, ltm.minutes, (int) ltm.seconds) < 0))
{
handleError(&ConnectSP, err, "Setting local time");
return -1;
}
if ( ( err = setCalenderDate(fd, ltm.days, ltm.months, ltm.years) < 0) )
{
handleError(&ConnectSP, err, "Setting local date");
return -1;
}
#ifdef INDI_DEBUG
IDLog("UT time is: %04d/%02d/%02d T %02d:%02d:%02d\n", utm.years, utm.months, utm.days, utm.hours, utm.minutes, (int)utm.seconds);
IDLog("Local time is: %04d/%02d/%02d T %02d:%02d:%02d\n", ltm.years, ltm.months, ltm.days, ltm.hours, ltm.minutes, (int)ltm.seconds);
#endif
// ToDo: strange but true offset 22:56:07, -1:03:53 (valid for obs Vermes)
// Understand what happens with AP controller sidereal time, azimut coordinates
if((err = setAPUTCOffset( fd, -1.0647222)) < 0)
{
handleError(&ConnectSP, err,"Setting AP UTC offset") ;
return -1;
}
#else
IDMessage( myapdev, "Initialize %s manually or install libnova", myapdev) ;
#endif
return 0 ;
}
int LX200AstroPhysics::setBasicDataPart1()
{
int err ;
if((err = setAPUnPark( fd)) < 0)
{
handleError(&ConnectSP, err,"Unparking failed") ;
return -1;
}
#ifdef INDI_DEBUG
IDLog("Unparking successful\n");
#endif
if((err = setAPMotionStop( fd)) < 0)
{
handleError(&ConnectSP, err, "Stop motion (:Q#) failed, check the mount") ;
return -1;
}
#ifdef INDI_DEBUG
IDLog("Stopped any motion (:Q#)\n");
#endif
return 0 ;
}
void LX200AstroPhysics::connectTelescope()
{
static int established= NOTESTABLISHED ;
switch (ConnectSP.sp[0].s)
{
case ISS_ON:
if( ! established)
{
if (tty_connect(PortTP.tp[0].text, 9600, 8, 0, 1, &fd) != TTY_OK)
{
ConnectSP.sp[0].s = ISS_OFF;
ConnectSP.sp[1].s = ISS_ON;
IDSetSwitch (&ConnectSP, "Error connecting to port %s. Make sure you have BOTH write and read permission to your port.\n", PortTP.tp[0].text);
established= NOTESTABLISHED ;
return;
}
if (check_lx200ap_connection(fd))
{
ConnectSP.sp[0].s = ISS_OFF;
ConnectSP.sp[1].s = ISS_ON;
IDSetSwitch (&ConnectSP, "Error connecting to Telescope. Telescope is offline.");
established= NOTESTABLISHED ;
return;
}
established= ESTABLISHED ;
#ifdef INDI_DEBUG
IDLog("Telescope test successful\n");
#endif
// At this point e.g. no GEOGRAPHIC_COORD are available after the first client connects.
// Postpone set up of the telescope
// NO setBasicData() ;
// ToDo what is that *((int *) UTCOffsetN[0].aux0) = 0;
// Jasem: This is just a way to know if the client has init UTC Offset, and if he did, then we set aux0 to 1, otherwise it stays at 0. When
// the client tries to change UTC, but has not set UTFOffset yet (that is, aux0 = 0) then we can tell him to set the UTCOffset first. Btw,
// the UTF & UTFOffset will be merged in one property for INDI v0.6
ConnectSP.s = IPS_OK;
IDSetSwitch (&ConnectSP, "Telescope is online");
}
else
{
ConnectSP.s = IPS_OK;
IDSetSwitch (&ConnectSP, "Connection already established.");
}
break;
case ISS_OFF:
ConnectSP.sp[0].s = ISS_OFF;
ConnectSP.sp[1].s = ISS_ON;
ConnectSP.s = IPS_IDLE;
IDSetSwitch (&ConnectSP, "Telescope is offline.");
if (setAPPark(fd) < 0)
{
ParkSP.s = IPS_ALERT;
IDSetSwitch(&ParkSP, "Parking Failed.");
return;
}
ParkSP.s = IPS_OK;
IDSetSwitch(&ParkSP, "The telescope is parked. Turn off the telescope. Disconnecting...");
tty_disconnect(fd);
established= NOTESTABLISHED ;
#ifdef INDI_DEBUG
IDLog("The telescope is parked. Turn off the telescope. Disconnected.\n");
#endif
break;
}
}
// taken from lx200_16
void LX200AstroPhysics::handleAltAzSlew()
{
int i=0;
char altStr[64], azStr[64];
if (HorizontalCoordsWNP.s == IPS_BUSY)
{
abortSlew(fd);
AbortSlewSP.s = IPS_OK;
IDSetSwitch(&AbortSlewSP, NULL);
// sleep for 100 mseconds
usleep(100000);
}
// ToDo is it ok ?
// if ((i = slewToAltAz(fd)))
if ((i = Slew(fd)))
{
HorizontalCoordsWNP.s = IPS_ALERT;
IDSetNumber(&HorizontalCoordsWNP, "Slew is not possible.");
return;
}
HorizontalCoordsWNP.s = IPS_OK;
fs_sexa(azStr, targetAZ, 2, 3600);
fs_sexa(altStr, targetALT, 2, 3600);
IDSetNumber(&HorizontalCoordsWNP, "Slewing to Alt %s - Az %s", altStr, azStr);
return;
}
void LX200AstroPhysics::handleEqCoordSet()
{
int sync ;
int err;
char syncString[256];
char RAStr[32], DecStr[32];
double dx, dy;
int syncOK= 0 ;
double targetHA ;
#ifdef INDI_DEBUG
IDLog("In Handle AP EQ Coord Set(), switch %d\n", getOnSwitch(&OnCoordSetSP));
#endif
switch (getOnSwitch(&OnCoordSetSP))
{
// Slew
case LX200_TRACK:
lastSet = LX200_TRACK;
if (EquatorialCoordsWNP.s == IPS_BUSY)
{
#ifdef INDI_DEBUG
IDLog("Aborting Track\n");
#endif
// ToDo
abortSlew(fd);
AbortSlewSP.s = IPS_OK;
IDSetSwitch(&AbortSlewSP, NULL);
// sleep for 100 mseconds
usleep(100000);
}
if ((err = Slew(fd))) /* Slew reads the '0', that is not the end of the slew */
{
slewError(err);
// ToDo handle that with the handleError function
return ;
}
EquatorialCoordsWNP.s = IPS_BUSY;
fs_sexa(RAStr, targetRA, 2, 3600);
fs_sexa(DecStr, targetDEC, 2, 3600);
IDSetNumber(&EquatorialCoordsWNP, "Slewing to JNow RA %s - DEC %s", RAStr, DecStr);
#ifdef INDI_DEBUG
IDLog("Slewing to JNow RA %s - DEC %s\n", RAStr, DecStr);
#endif
break;
// Sync
case LX200_SYNC:
lastSet = LX200_SYNC;
/* Astro-Physics has two sync options. In order that no collision occurs, the SYNCCMR */
/* variant behaves for now identical like SYNCCM. Later this feature will be enabled.*/
/* Calculate the hour angle of the target */
targetHA= 180. /M_PI/15. * LDRAtoHA( 15.* targetRA/180. *M_PI, -geoNP.np[1].value/180. *M_PI);
if((sync=getOnSwitch(&SyncCMRSP))==SYNCCMR)
{
if (!strcmp("West", DeclinationAxisT[0].text))
{
if(( targetHA > 12.0) && ( targetHA <= 24.0))
{
syncOK= 1 ;
}
else
{
syncOK= 0 ;
}
}
else if (!strcmp("East", DeclinationAxisT[0].text))
{
if(( targetHA >= 0.0) && ( targetHA <= 12.0))
{
syncOK= 1 ;
}
else
{
syncOK= 0 ;
}
}
else
{
#ifdef INDI_DEBUG
IDLog("handleEqCoordSet(): SYNC NOK not East or West\n") ;
#endif
return ;
}
}
else if((sync=getOnSwitch(&SyncCMRSP))==SYNCCM)
{
syncOK = 1 ;
}
else
{
#ifdef INDI_DEBUG
IDLog("handleEqCoordSet(): SYNC NOK not SYNCCM or SYNCCMR\n") ;
#endif
return ;
}
if( syncOK == 1)
{
if( (sync=getOnSwitch(&SyncCMRSP))==SYNCCM)
{
if ( ( err = APSyncCM(fd, syncString) < 0) )
{
EquatorialCoordsWNP.s = IPS_ALERT ;
IDSetNumber( &EquatorialCoordsWNP , "Synchronization failed.");
// ToDo handle with handleError function
return ;
}
}
else if((sync=getOnSwitch(&SyncCMRSP))==SYNCCMR)
{
if ( ( err = APSyncCMR(fd, syncString) < 0) )
{
EquatorialCoordsWNP.s = IPS_ALERT ;
IDSetNumber( &EquatorialCoordsWNP, "Synchronization failed.");
// ToDo handle with handleError function
return ;
}
}
else
{
EquatorialCoordsWNP.s = IPS_ALERT ;
IDSetNumber( &EquatorialCoordsWNP , "SYNC NOK no valid SYNCCM, SYNCCMR");
#ifdef INDI_DEBUG
IDLog("SYNC NOK no valid SYNCCM, SYNCCMR\n") ;
#endif
return ;
}
/* get the property DeclinationAxisTP first */
if(( err = getAPDeclinationAxis( fd, DeclinationAxisT[0].text)) < 0)
{
//ToDo handleErr
DeclinationAxisTP.s = IPS_ALERT ;
IDSetText(&DeclinationAxisTP, "Declination axis undefined") ;
return ;
}
DeclinationAxisTP.s = IPS_OK ;
#ifdef INDI_DEBUG
IDLog("Declination axis is on the %s side\n", DeclinationAxisT[0].text) ;
#endif
IDSetText(&DeclinationAxisTP, NULL) ;
getLX200RA( fd, ¤tRA);
getLX200DEC(fd, ¤tDEC);
// The mount executed the sync command, now read back the values, make a IDSet in order the dome controller
// is aware of the new target
targetRA= currentRA ;
targetDEC= currentDEC ;
EquatorialCoordsWNP.s = IPS_BUSY; /* dome controller sets target only if this state is busy */
IDSetNumber(&EquatorialCoordsWNP, "EquatorialCoordsWNP.s = IPS_BUSY after SYNC");
}
else
{
#ifdef INDI_DEBUG
IDLog("Synchronization not allowed\n") ;
#endif
EquatorialCoordsWNP.s = IPS_ALERT;
IDSetNumber(&EquatorialCoordsWNP, "Synchronization not allowed" );
#ifdef INDI_DEBUG
IDLog("Telescope is on the wrong side targetHA was %f\n", targetHA) ;
#endif
DeclinationAxisTP.s = IPS_ALERT ;
IDSetText(&DeclinationAxisTP, "Telescope is on the wrong side targetHA was %f", targetHA) ;
return ;
}
#ifdef INDI_DEBUG
IDLog("Synchronization successful >%s<\n", syncString);
#endif
EquatorialCoordsWNP.s = IPS_OK; /* see above for dome controller dc */
IDSetNumber(&EquatorialCoordsWNP, "Synchronization successful, EquatorialCoordsWNP.s = IPS_OK after SYNC");
break;
}
return ;
}
// ToDo Not yet used
void LX200AstroPhysics::handleAZCoordSet()
{
int err;
char AZStr[32], AltStr[32];
switch (getOnSwitch(&OnCoordSetSP))
{
// Slew
case LX200_TRACK:
lastSet = LX200_TRACK;
if (HorizontalCoordsWNP.s == IPS_BUSY)
{
#ifdef INDI_DEBUG
IDLog("Aboring Slew\n");
#endif
// ToDo
abortSlew(fd);
AbortSlewSP.s = IPS_OK;
IDSetSwitch(&AbortSlewSP, NULL);
// sleep for 100 mseconds
usleep(100000);
}
if ((err = Slew(fd)))
{
slewError(err);
//ToDo handle it
return ;
}
HorizontalCoordsWNP.s = IPS_BUSY;
fs_sexa(AZStr, targetAZ, 2, 3600);
fs_sexa(AltStr, targetALT, 2, 3600);
IDSetNumber(&HorizontalCoordsWNP, "Slewing to AZ %s - Alt %s", AZStr, AltStr);
#ifdef INDI_DEBUG
IDLog("Slewing to AZ %s - Alt %s\n", AZStr, AltStr);
#endif
break;
// Sync
/* ToDo DO SYNC */
case LX200_SYNC:
IDMessage( myapdev, "Sync not supported in ALT/AZ mode") ;
break;
}
}
/*********Library Section**************/
/*********Library Section**************/
/*********Library Section**************/
/*********Library Section**************/
double LDRAtoHA( double RA, double longitude)
{
#ifdef HAVE_NOVA_H
double HA ;
double JD ;
double theta_0= 0. ;
JD= ln_get_julian_from_sys() ;
// #ifdef INDI_DEBUG
// IDLog("LDRAtoHA: JD %f\n", JD);
// #endif
theta_0= 15. * ln_get_mean_sidereal_time( JD) ;
// #ifdef INDI_DEBUG
// IDLog("LDRAtoHA:1 theta_0 %f\n", theta_0);
// #endif
theta_0= fmod( theta_0, 360.) ;
theta_0= theta_0 /180. * M_PI ;
HA = fmod(theta_0 - longitude - RA, 2. * M_PI) ;
if( HA < 0.)
{
HA += 2. * M_PI ;
}
return HA ;
#else
IDMessage( myapdev, "Initialize %s manually or install libnova", myapdev) ;
return 0 ;
#endif
}
// Transformation from apparent to various coordinate systems
int LDAppToX( int trans_to, double *star_cat, double tjd, double *loc, double *hxt, double *star_trans)
{
#if defined HAVE_NOVASCC_H
short int error = 0;
/* 'deltat' is the difference in time scales, TT - UT1. */
double deltat = 60.0;
double gst ;
/* Set x,y in case where sub arcsec precission is required */
double x=0. ;
double y=0. ;
short int ref_option ;
double ra_ar, dec_ar; /* apparent and refracted EQ coordinate system */
double az_ar, zd_ar ; /* apparent and refracted, AltAz coordinate system */
double ra_art, dec_art ; /* apparent, refracted and telescope EQ coordinate system */
double ha_ar ;
double ha_art ;
cat_entry star = {"FK5", "NONAME", 0, star_cat[0], star_cat[1], 0., 0., 0., 0.};
site_info geo_loc= {loc[0], loc[1], loc[2], loc[3], loc[4]} ;
/* A structure containing the body designation for Earth.*/
body earth ;
/* Set up the structure containing the body designation for Earth. */
if ((error = set_body (0,3,"Earth", &earth)))
{
IDMessage( myapdev, "LDAppToX: Error %d from set_body.\n", error);
return -1;
}
switch (trans_to)
{
case ATA: /* identity */
star_trans[0]= star.ra ;
star_trans[1]= star.dec ;
break ;
case ATR: /* T4, apparent to refracted */
/* Alt Azimut refraction */
ref_option= 2 ;
/* Set x,y in case where sub arcsec precission is required */
equ2hor(tjd, deltat, x, y, &geo_loc, star.ra, star.dec, ref_option, &zd_ar, &az_ar, &ra_ar, &dec_ar) ;
if(ra_ar <0.)
{
ra_ar += 24. ;
}
star_trans[0]= ra_ar ;
star_trans[1]= dec_ar ;
break ;
case ARTT: /* T4, apparent, refracted to telescope */
/* Alt Azimut refraction */
ref_option= 2 ;
/* Set x,y in case where sub arcsec precission is required */
equ2hor(tjd, deltat, x, y, &geo_loc, star.ra, star.dec, ref_option, &zd_ar, &az_ar, &ra_ar, &dec_ar) ;
/* Calculate the apparent refracted hour angle */
ha_ar= (gst + geo_loc.longitude/180. * 12. - ra_ar) ;
if( ha_ar < 0.)
{
ha_ar += 24. ;
}
/* Equatorial system of the telescope, these are ra_art, dec_art needed for the setting */
/* To be defined: sign of rotation theta= -7.5 ; */
/* The values of hxt are defined in the local hour system, ha [hour]*/
if(( error= LDEqToEqT( ha_ar, dec_ar, hxt, &ha_art, &dec_art)) != 0)
{
IDMessage( myapdev, "LDAppToX: \nError in calculation\n\n");
return -1 ;
}
ra_art = -ha_art + gst + geo_loc.longitude/180. * 12. ;
if(ra_art <0.)
{
ra_art += 24. ;
}
star_trans[0]= ra_art ;
star_trans[1]= dec_art ;
break ;
case ARTTO: /* T5, apparent, refracted, telescope to observed*/
IDMessage( myapdev, "LDAppToX: Not yet implemented, exiting...\n") ;
return -1;
break ;
default:
IDMessage(myapdev, "LDAppToX: No default, exiting\n") ;
return -1;
}
return 0;
#elif defined HAVE_NOVA_H
IDMessage( myapdev, "Only identity transformation is supported without HAVE_NOVASCC_H") ;
star_trans[0]= star_cat[0];
star_trans[1]= star_cat[1];
return 0 ;
#else
IDMessage( myapdev, "Install libnova to use this feature") ; // we never get here
return 0 ;
#endif
}
// Trans form to the ideal telescope coordinate system (no mount defects)
int LDEqToEqT( double ra_h, double dec_d, double *hxt, double *rat_h, double *dect_d)
{
int res ;
int i,j;
double ra = ra_h / 12. * M_PI ; /* novas-c unit is hour */
double dec= dec_d/180. * M_PI ;
double theta= hxt[0]/180. * M_PI ;
double gamma= hxt[1]/180. * M_PI ;
double unit_vector_in[3]= {cos(dec)*cos(ra), cos(dec)*sin(ra), sin(dec)} ;
double unit_vector_rot[3]= {0.,0.,0.} ;
double unit_vector_tmp[3]= {0.,0.,0.} ;
double rat ;
double dect ;
/* theta rotation around polar axis, gamma around y axis */
double rotation[3][3]=
{
{cos(gamma)*cos(theta),-(cos(gamma)*sin(theta)),-sin(gamma)},
{sin(theta),cos(theta),0},
{cos(theta)*sin(gamma),-(sin(gamma)*sin(theta)), cos(gamma)}
} ;
/* minus theta rotation around telescope polar axis */
/* Despite the above matrix is correct, no body has a telescope */
/* with fixed setting circles in RA - or a telescope is usually */
/* calibrated in RA/HA by choosing one star. The matrix below */
/* takes that into account */
double rotation_minus_theta[3][3]=
{
{ cos(theta), sin(theta), 0.},
{-sin(theta), cos(theta), 0.},
{ 0., 0., 1.}
} ;
unit_vector_in[0]= cos(dec)*cos(ra) ;
unit_vector_in[1]= cos(dec)*sin(ra) ;
unit_vector_in[2]= sin(dec) ;
if( gamma < 0 )
{
IDMessage(myapdev, "LDEqToEqT: gamma is the distance from the celestial pole and always positive\n") ;
return -1 ;
}
for( i=0; i < 3 ; i++)
{
for( j=0; j < 3 ; j++)
{
unit_vector_tmp[i] += rotation[i][j] * unit_vector_in[j] ;
}
}
for( i=0; i < 3 ; i++)
{
for( j=0; j < 3 ; j++)
{
unit_vector_rot[i] += rotation_minus_theta[i][j] * unit_vector_tmp[j] ;
}
}
if(( res= LDCartToSph( unit_vector_rot, &rat, &dect))!= 0)
{
return -1 ;
}
else
{
*rat_h = rat /M_PI * 12. ;
*dect_d= dect/M_PI * 180. ;
return 0 ;
}
}
int LDCartToSph( double *vec, double *ra, double *dec)
{
if( vec[0] !=0.)
{
*ra = atan2( vec[1], vec[0]) ;
}
else
{
return -1 ;
}
*dec= asin( vec[2]) ;
return 0 ;
}
|