Skip to content

Commit 7c77ebc

Browse files
HPS Device Support ( C102-f9r) (#182)
* implemented support for HPS c102-f9r Co-authored-by: Philipp Polterauer <[email protected]>
1 parent 56a3a0b commit 7c77ebc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ublox_gps/src/node.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,10 +225,13 @@ void UbloxNode::addProductInterface(const std::string & product_category,
225225
components_.push_back(std::make_shared<AdrUdrProduct>(nav_rate_, meas_rate_, frame_id_, updater_, this));
226226
} else if (product_category == "FTS") {
227227
components_.push_back(std::make_shared<FtsProduct>());
228+
} else if (product_category == "HPS") {
229+
components_.push_back(std::make_shared<AdrUdrProduct>(nav_rate_, meas_rate_, frame_id_, updater_, this));
230+
components_.push_back(std::make_shared<HpgRovProduct>(nav_rate_, updater_, this));
228231
} else {
229232
RCLCPP_WARN(this->get_logger(), "Product category %s %s from MonVER message not recognized %s",
230233
product_category.c_str(), ref_rov.c_str(),
231-
"options are HPG REF, HPG ROV, HPG #.#, TIM, ADR, UDR, FTS");
234+
"options are HPG REF, HPG ROV, HPG #.#, TIM, ADR, UDR, FTS, HPS");
232235
}
233236
}
234237

0 commit comments

Comments
 (0)