Skip to content

Commit

Permalink
rtk: encode RTCM data in base64
Browse files Browse the repository at this point in the history
This makes it possible to use this via other languages like Python where
binary data in a string is not an option.
  • Loading branch information
julianoes committed Jun 4, 2024
1 parent 34bce6d commit e8cbcb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion protos/rtk/rtk.proto
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ service RtkService {

// RTCM data type
message RtcmData {
string data = 1; // The data encoded as a string
string data = 1; // The data encoded as a base64 string
}

message SendRtcmDataRequest {
Expand Down

0 comments on commit e8cbcb2

Please sign in to comment.