Skip to content

Commit

Permalink
Add missing init/deinit function declarations in PSDKWrapper class
Browse files Browse the repository at this point in the history
  • Loading branch information
amoramar committed Feb 6, 2024
1 parent 7d55552 commit e358f81
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion psdk_wrapper/include/psdk_wrapper/psdk_wrapper.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,6 @@ class PSDKWrapper : public rclcpp_lifecycle::LifecycleNode
* @return true/false
*/
bool deinit_gimbal_manager();

/**
* @brief Initialize the liveview streaming module
* @return true/false
Expand All @@ -337,6 +336,16 @@ class PSDKWrapper : public rclcpp_lifecycle::LifecycleNode
* @return true/false
*/
bool deinit_liveview();
/**
* @brief Initialize the health monitoring system (HMS) module
* @return true/false
*/
bool init_hms();
/**
* @brief Deinitialize the health monitoring system (HMS) module
* @return true/false
*/
bool deinit_hms();

/**
* @brief Get the DJI frequency object associated with a certain frequency
Expand Down

0 comments on commit e358f81

Please sign in to comment.