Skip to content

Commit

Permalink
rtk: encode RTCM data in base64 (#344)
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 authored Jul 15, 2024
1 parent 4fb7d97 commit 1cd12e9
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_base64 = 1; // The data encoded as a base64 string
}

message SendRtcmDataRequest {
Expand Down

0 comments on commit 1cd12e9

Please sign in to comment.