Changeset 13975 for trunk/FACT++
- Timestamp:
- 05/30/12 11:40:06 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/drivectrl.cc
r13933 r13975 985 985 "|Az[deg]:Azimuth"); 986 986 987 T::AddEvent("TRACK", "D:2", State::kArmed ) // ->RADEC/GRB987 T::AddEvent("TRACK", "D:2", State::kArmed, State::kTracking) // ->RADEC/GRB 988 988 (bind(&StateMachineDrive::SendCoordinates, this, placeholders::_1, kTrackSlow)) 989 989 ("Move the telescope to the given sky coordinates and start tracking them" … … 991 991 "|Dec[deg]:Declination"); 992 992 993 T::AddEvent("WOBBLE", "D:4", State::kArmed ) // ->RADEC/GRB993 T::AddEvent("WOBBLE", "D:4", State::kArmed, State::kTracking) // ->RADEC/GRB 994 994 (bind(&StateMachineDrive::Wobble, this, placeholders::_1)) 995 995 ("Move the telescope to the given wobble position around the given sky coordinates and start tracking them" … … 999 999 "|Angle[deg]:Wobble angle"); 1000 1000 1001 T::AddEvent("TRACK_SOURCE", "D:2;C", State::kArmed ) // ->RADEC/GRB1001 T::AddEvent("TRACK_SOURCE", "D:2;C", State::kArmed, State::kTracking) // ->RADEC/GRB 1002 1002 (bind(&StateMachineDrive::Track, this, placeholders::_1)) 1003 1003 ("Move the telescope to the given wobble position around the given source and start tracking" … … 1006 1006 "|Name[string]:Source name"); 1007 1007 1008 T::AddEvent("MOON", State::kArmed )1008 T::AddEvent("MOON", State::kArmed, State::kTracking) 1009 1009 (bind(&StateMachineDrive::SendCommand, this, "MOON 0 0", true)) 1010 1010 ("Start tracking the moon"); 1011 T::AddEvent("VENUS", State::kArmed )1011 T::AddEvent("VENUS", State::kArmed, State::kTracking) 1012 1012 (bind(&StateMachineDrive::SendCommand, this, "CELEST 2 0 0", true)) 1013 1013 ("Start tracking Venus"); 1014 T::AddEvent("MARS", State::kArmed )1014 T::AddEvent("MARS", State::kArmed, State::kTracking) 1015 1015 (bind(&StateMachineDrive::SendCommand, this, "CELEST 4 0 0", true)) 1016 1016 ("Start tracking Mars"); 1017 T::AddEvent("JUPITER", State::kArmed )1017 T::AddEvent("JUPITER", State::kArmed, State::kTracking) 1018 1018 (bind(&StateMachineDrive::SendCommand, this, "CELEST 5 0 0", true)) 1019 1019 ("Start tracking Jupiter"); 1020 T::AddEvent("SATURN", State::kArmed )1020 T::AddEvent("SATURN", State::kArmed, State::kTracking) 1021 1021 (bind(&StateMachineDrive::SendCommand, this, "CELEST 6 0 0", true)) 1022 1022 ("Start tracking Saturn");
Note:
See TracChangeset
for help on using the changeset viewer.