Skip to content

Commit

Permalink
PegasusAstro FalconV2 Driver (#2079)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrysikos committed Jul 7, 2024
1 parent a267430 commit 716f366
Show file tree
Hide file tree
Showing 4 changed files with 551 additions and 0 deletions.
4 changes: 4 additions & 0 deletions drivers.xml
Original file line number Diff line number Diff line change
Expand Up @@ -437,6 +437,10 @@
<driver name="Pegasus Falcon">indi_falcon_rotator</driver>
<version>1.0</version>
</device>
<device label="Pegasus FalconV2" manufacturer="Pegasus Astro">
<driver name="Pegasus FalconV2">indi_falconv2_rotator</driver>
<version>1.0</version>
</device>
<device label="Integra 85" manufacturer="Gemini Telescope">
<driver name="Integra85">indi_integra_focus</driver>
<version>1.1</version>
Expand Down
8 changes: 8 additions & 0 deletions drivers/rotator/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,14 @@ add_executable(indi_falcon_rotator ${falcon_SRC})
target_link_libraries(indi_falcon_rotator indidriver)
install(TARGETS indi_falcon_rotator RUNTIME DESTINATION bin)

# ############### Falcon V2 Rotator ################
SET(falconv2_SRC
pegasus_falconv2.cpp)

add_executable(indi_falconv2_rotator ${falconv2_SRC})
target_link_libraries(indi_falconv2_rotator indidriver)
install(TARGETS indi_falconv2_rotator RUNTIME DESTINATION bin)

# ############### Wanderer Rotator Lite ################
SET(WandererRotatorLite_SRC
wanderer_rotator_lite.cpp)
Expand Down
Loading

0 comments on commit 716f366

Please sign in to comment.