Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/generator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
name: Generated artifacts
runs-on: ubuntu-24.04
container:
image: swiftnav/libsbp-build:2025-02-10
image: swiftnav/libsbp-build:2025-10-29
options: --user root
volumes:
- ${{ github.workspace }}:/mnt/workspace
Expand Down
2 changes: 1 addition & 1 deletion java/src/com/swiftnav/sbp/signing/MsgEcdsaSignature.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
public class MsgEcdsaSignature extends SBPMessage {
public static final int TYPE = 0x0C08;

/** Describes the format of the `signed\_messages` field below. */
/** Describes the format of the `signed_messages` field below. */
public int flags;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
public class MsgEcdsaSignatureDepA extends SBPMessage {
public static final int TYPE = 0x0C06;

/** Describes the format of the `signed\_messages` field below. */
/** Describes the format of the `signed_messages` field below. */
public int flags;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
public class MsgEcdsaSignatureDepB extends SBPMessage {
public static final int TYPE = 0x0C07;

/** Describes the format of the `signed\_messages` field below. */
/** Describes the format of the `signed_messages` field below. */
public int flags;

/**
Expand Down
6 changes: 3 additions & 3 deletions javascript/sbp/signing.js
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ MsgAesCmacSignature.prototype.fieldSpec.push(['signed_messages', 'array', 'write
* An ECDSA-256 signature using SHA-256 as the message digest algorithm.
*
* Fields in the SBP payload (`sbp.payload`):
* @field flags number (unsigned 8-bit int, 1 byte) Describes the format of the `signed\_messages` field below.
* @field flags number (unsigned 8-bit int, 1 byte) Describes the format of the `signed_messages` field below.
* @field stream_counter number (unsigned 8-bit int, 1 byte) Signature message counter. Zero indexed and incremented with each signature
* message. The counter will not increment if this message was in response to an
* on demand request. The counter will roll over after 256 messages. Upon
Expand Down Expand Up @@ -333,7 +333,7 @@ MsgEcdsaSignature.prototype.fieldSpec.push(['signed_messages', 'array', 'writeUI
* Deprecated.
*
* Fields in the SBP payload (`sbp.payload`):
* @field flags number (unsigned 8-bit int, 1 byte) Describes the format of the `signed\_messages` field below.
* @field flags number (unsigned 8-bit int, 1 byte) Describes the format of the `signed_messages` field below.
* @field stream_counter number (unsigned 8-bit int, 1 byte) Signature message counter. Zero indexed and incremented with each signature
* message. The counter will not increment if this message was in response to an
* on demand request. The counter will roll over after 256 messages. Upon
Expand Down Expand Up @@ -390,7 +390,7 @@ MsgEcdsaSignatureDepB.prototype.fieldSpec.push(['signed_messages', 'array', 'wri
* Deprecated.
*
* Fields in the SBP payload (`sbp.payload`):
* @field flags number (unsigned 8-bit int, 1 byte) Describes the format of the `signed\_messages` field below.
* @field flags number (unsigned 8-bit int, 1 byte) Describes the format of the `signed_messages` field below.
* @field stream_counter number (unsigned 8-bit int, 1 byte) Signature message counter. Zero indexed and incremented with each signature
* message. The counter will not increment if this message was in response to an
* on demand request. The counter will roll over after 256 messages. Upon
Expand Down
6 changes: 3 additions & 3 deletions rust/sbp/src/messages/signing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ pub mod msg_ecdsa_signature {
/// The message sender_id
#[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))]
pub sender_id: Option<u16>,
/// Describes the format of the `signed\_messages` field below.
/// Describes the format of the `signed_messages` field below.
#[cfg_attr(feature = "serde", serde(rename = "flags"))]
pub flags: u8,
/// Signature message counter. Zero indexed and incremented with each
Expand Down Expand Up @@ -825,7 +825,7 @@ pub mod msg_ecdsa_signature_dep_a {
/// The message sender_id
#[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))]
pub sender_id: Option<u16>,
/// Describes the format of the `signed\_messages` field below.
/// Describes the format of the `signed_messages` field below.
#[cfg_attr(feature = "serde", serde(rename = "flags"))]
pub flags: u8,
/// Signature message counter. Zero indexed and incremented with each
Expand Down Expand Up @@ -1001,7 +1001,7 @@ pub mod msg_ecdsa_signature_dep_b {
/// The message sender_id
#[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))]
pub sender_id: Option<u16>,
/// Describes the format of the `signed\_messages` field below.
/// Describes the format of the `signed_messages` field below.
#[cfg_attr(feature = "serde", serde(rename = "flags"))]
pub flags: u8,
/// Signature message counter. Zero indexed and incremented with each
Expand Down
Loading