You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Mermaid packet format insists on bit start -> bit end. This makes it very difficult to change your mind while generating a packet diagram, eg increasing one field from 16-32 bit.
As well as supporting <s>-<e>: "name"
where s is the start bit and e is the end bit
Also support <s>-<b>bits: "name" <s>-1bit: "name"
where s is the start bit, b is a bit count
Short form is the most valuable <b>bits: "name" follows on automatically from the previous bit. If this is the first field, it's assumed to start at bit 0.
Proposal
Mermaid packet format insists on bit start -> bit end. This makes it very difficult to change your mind while generating a packet diagram, eg increasing one field from 16-32 bit.
As well as supporting
<s>-<e>: "name"
where
s
is the start bit ande
is the end bitAlso support
<s>-<b>bits: "name"
<s>-1bit: "name"
where
s
is the start bit,b
is a bit countShort form is the most valuable
<b>bits: "name"
follows on automatically from the previous bit. If this is the first field, it's assumed to start at bit 0.Example
```mermaid
8bits: "Message Id"
16bits: "From Id"
32bits: "Command Data"
1bit: "write flag"
7bits: "reserved"
64-8bits: "new data"
```
Screenshots
No response
The text was updated successfully, but these errors were encountered: