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

Driver For WandererBox Plus V3 added #1997

Merged
merged 11 commits into from
Feb 17, 2024
4 changes: 4 additions & 0 deletions drivers.xml
Original file line number Diff line number Diff line change
Expand Up @@ -749,6 +749,10 @@
<driver name="WandererBox Pro V3">indi_wandererbox_pro_v3</driver>
<version>1.0</version>
</device>
<device label="WandererBox Plus V3" manufacturer="Wanderer Astro">
<driver name="WandererBox Plus V3">indi_wandererbox_plus_v3</driver>
<version>1.0</version>
</device>
</devGroup>
<devGroup group="Domes">
<device label="ScopeDome Dome" manufacturer="ScopeDome">
Expand Down
8 changes: 8 additions & 0 deletions drivers/auxiliary/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
IF(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
INSTALL(FILES 99-indi_auxiliary.rules DESTINATION ${UDEVRULES_INSTALL_DIR})
ENDIF()
# ########## Wanderer Box Plus V3 ###############
SET(indi_wandererbox_plus_v3_SRC
wandererbox_plus_v3.cpp)

add_executable(indi_wandererbox_plus_v3 ${indi_wandererbox_plus_v3_SRC})
target_link_libraries(indi_wandererbox_plus_v3 indidriver)
install(TARGETS indi_wandererbox_plus_v3 RUNTIME DESTINATION bin)

# ########## Wanderer Box Pro V3 ###############
SET(indi_wandererbox_pro_v3_SRC
wandererbox_pro_v3.cpp)
Expand Down
Loading
Loading