Skip to content

Commit 97b8ac8

Browse files
authored
bump fixposition-sdk (#101)
1 parent 1bb1c39 commit 97b8ac8

File tree

4 files changed

+14
-11
lines changed

4 files changed

+14
-11
lines changed

fixposition_driver_lib/src/fixposition_driver.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -304,6 +304,7 @@ bool FixpositionDriver::Worker() {
304304
case parser::Protocol::UBX:
305305
case parser::Protocol::RTCM3:
306306
case parser::Protocol::UNI_B:
307+
case parser::Protocol::SBF:
307308
case parser::Protocol::SPARTN:
308309
case parser::Protocol::OTHER:
309310
break;

fixposition_driver_msgs/include/fixposition_driver_msgs/data_to_ros.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -652,6 +652,7 @@ inline int ParserProtocolToMsg(const RosMsgT& msg, const fpsdk::common::parser::
652652
case fpsdk::common::parser::Protocol::RTCM3: return msg.PROTOCOL_RTCM3;
653653
case fpsdk::common::parser::Protocol::UNI_B: return msg.PROTOCOL_UNI_B;
654654
case fpsdk::common::parser::Protocol::NOV_B: return msg.PROTOCOL_NOV_B;
655+
case fpsdk::common::parser::Protocol::SBF: return msg.PROTOCOL_SBF;
655656
case fpsdk::common::parser::Protocol::SPARTN: return msg.PROTOCOL_SPARTN;
656657
case fpsdk::common::parser::Protocol::OTHER: return msg.PROTOCOL_OTHER;
657658
}

fixposition_driver_msgs/msg/ParserMsg.msg

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,17 @@
66
# !!! fpsdk_{ros1,ros2}/msg/ParserMsg.msg should be kept in sync !!!
77

88
int8 protocol # Protocol
9-
int8 PROTOCOL_UNSPECIFIED = 0
10-
int8 PROTOCOL_FP_A = 1
11-
int8 PROTOCOL_FP_B = 2
12-
int8 PROTOCOL_NMEA = 3
13-
int8 PROTOCOL_UBX = 4
14-
int8 PROTOCOL_RTCM3 = 5
15-
int8 PROTOCOL_UNI_B = 6
16-
int8 PROTOCOL_NOV_B = 7
17-
int8 PROTOCOL_SPARTN = 8
18-
int8 PROTOCOL_OTHER = 9
9+
int8 PROTOCOL_UNSPECIFIED = 0
10+
int8 PROTOCOL_FP_A = 1
11+
int8 PROTOCOL_FP_B = 2
12+
int8 PROTOCOL_NMEA = 3
13+
int8 PROTOCOL_UBX = 4
14+
int8 PROTOCOL_RTCM3 = 5
15+
int8 PROTOCOL_UNI_B = 6
16+
int8 PROTOCOL_NOV_B = 7
17+
int8 PROTOCOL_SPARTN = 8
18+
int8 PROTOCOL_OTHER = 9
19+
int8 PROTOCOL_SBF = 10
1920
uint8[] data # Message data
2021
string name # Message name
2122
uint64 seq # Message counter

0 commit comments

Comments
 (0)