Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PegasusAstro FalconV2 Driver #2079

Merged
merged 1 commit into from
Jul 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading