From f07e4970fe8bb7f6cee3bc7b00b1fcf3f7e81c44 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Sat, 2 Sep 2023 09:27:31 -0500 Subject: [PATCH] Bugfix: Mistakes in the FSS-000f Simple Packet specification. The "Size Block Structure" section has the wrong example. Fix the example to display the Size Block structure, which is a 32-bit digit. Change the "Control Block Structure" section to use "size" annotations rather than bit examples. --- specifications/fss-000f.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/specifications/fss-000f.txt b/specifications/fss-000f.txt index 685e6a4..1f4b973 100644 --- a/specifications/fss-000f.txt +++ b/specifications/fss-000f.txt @@ -28,7 +28,7 @@ Featureless Settings Specification: 000f - Simple Packet: Control Block Structure\: code:" [ Endianness Bit ] [ String / Binary Bit ] [ Remaining 6 bits (unused) ] - [ 0b0 ] [ 0b0 ] [ 0b000000 ] + [ size: 2^1 ] [ size: 2^1 ] [ size: 2^6 ] " The endianness bit designates whether or not the packet is in big endian or little endian format. @@ -48,8 +48,8 @@ Featureless Settings Specification: 000f - Simple Packet: Size Block Structure\: code:" - [ Endianness Bit ] [ String / Binary Bit ] [ Remaining 6 bits (unused) ] - [ 0b0 ] [ 0b0 ] [ 0b000000 ] + [ Size Block ] + [ size: 2^4 ] " The bold:"Size Block" is an unsigned 32-bit integer representing the size of the entire packet, including the bold:"Control Block" and bold:"Size Block". -- 1.8.3.1