Skip to content

Commit

Permalink
Driver for WandererCover V4-EC added (#1998)
Browse files Browse the repository at this point in the history
Co-authored-by: WandererAstro <[email protected]>
  • Loading branch information
WandererAstro and WandererAstro authored Feb 18, 2024
1 parent 0a63425 commit 5354d4a
Show file tree
Hide file tree
Showing 4 changed files with 552 additions and 0 deletions.
4 changes: 4 additions & 0 deletions drivers.xml
Original file line number Diff line number Diff line change
Expand Up @@ -753,6 +753,10 @@
<driver name="WandererBox Plus V3">indi_wandererbox_plus_v3</driver>
<version>1.0</version>
</device>
<device label="WandererCover V4-EC" manufacturer="Wanderer Astro">
<driver name="WandererCover V4-EC">indi_wanderercover_v4_ec</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()
# ########## WandererCover V4-EC###############
SET(indi_wanderercover_v4_ec_SRC
wanderer_cover_v4_ec.cpp)

add_executable(indi_wanderercover_v4_ec ${indi_wanderercover_v4_ec_SRC})
target_link_libraries(indi_wanderercover_v4_ec indidriver)
install(TARGETS indi_wanderercover_v4_ec RUNTIME DESTINATION bin)

# ########## Wanderer Box Plus V3 ###############
SET(indi_wandererbox_plus_v3_SRC
wandererbox_plus_v3.cpp)
Expand Down
Loading

0 comments on commit 5354d4a

Please sign in to comment.