From 1b696b9bc8a13ff233bdc6ce5c2eae498c579917 Mon Sep 17 00:00:00 2001 From: bruno-f-cruz <7049351+bruno-f-cruz@users.noreply.github.com> Date: Sat, 28 Jun 2025 16:26:54 -0700 Subject: [PATCH 1/2] Fix exponent notation --- BinaryProtocol-8bit.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BinaryProtocol-8bit.md b/BinaryProtocol-8bit.md index 7fe97a2..9f0e49c 100644 --- a/BinaryProtocol-8bit.md +++ b/BinaryProtocol-8bit.md @@ -127,7 +127,7 @@ This field is optional. In order to indicate that this field is available, the b > **Note** > > The full timestamp information can thus be retrieved using the formula: -> Timestamp(s) = [`Seconds`] + [`Microseconds`] * 32 * 10-6 +> Timestamp(s) = [`Seconds`] + [`Microseconds`] * 32 * 10⁻⁶ ### Checksum (1 byte) From 9bbcccb02e94de9f7c52a299353b472c56b89f43 Mon Sep 17 00:00:00 2001 From: bruno-f-cruz <7049351+bruno-f-cruz@users.noreply.github.com> Date: Sun, 3 Aug 2025 20:45:13 -0700 Subject: [PATCH 2/2] Favor "e" notation for exponent --- BinaryProtocol-8bit.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BinaryProtocol-8bit.md b/BinaryProtocol-8bit.md index 9f0e49c..d420d2f 100644 --- a/BinaryProtocol-8bit.md +++ b/BinaryProtocol-8bit.md @@ -127,7 +127,7 @@ This field is optional. In order to indicate that this field is available, the b > **Note** > > The full timestamp information can thus be retrieved using the formula: -> Timestamp(s) = [`Seconds`] + [`Microseconds`] * 32 * 10⁻⁶ +> Timestamp = Seconds + Microseconds * 32e-6 ### Checksum (1 byte)