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 SaddlePowerBox #1989

Merged
merged 4 commits into from
Jan 17, 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 @@ -645,6 +645,10 @@
<driver name="Pegasus FlatMaster">indi_pegasus_flatmaster</driver>
<version>1.2</version>
</device>
<device label="Pegasus SPB" manufacturer="Pegasus Astro">
knro marked this conversation as resolved.
Show resolved Hide resolved
<driver name="Pegasus SPB">indi_pegasus_spb</driver>
<version>1.2</version>
</device>
<device label="PlaneWave Delta-T" manufacturer="Planewave Instruments">
<driver name="PlaneWave Delta-T">indi_planewave_deltat</driver>
<version>1.1</version>
Expand Down
9 changes: 9 additions & 0 deletions drivers/auxiliary/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,15 @@ add_executable(indi_pegasus_ppba ${pegasus_ppba_SRC})
target_link_libraries(indi_pegasus_ppba indidriver)
install(TARGETS indi_pegasus_ppba RUNTIME DESTINATION bin)


# ########## Pegasus Saddle Power Box Driver ###############
SET(pegasus_spb_SRC
pegasus_spb.cpp)

add_executable(indi_pegasus_spb ${pegasus_spb_SRC})
target_link_libraries(indi_pegasus_spb indidriver)
install(TARGETS indi_pegasus_spb RUNTIME DESTINATION bin)

# ########## RB Focus Excalibur ###############
SET(Excalibur_SRC
Excalibur.cpp)
Expand Down
Loading
Loading