Hi,
I am trying to use the bit counter to get an indication about the length of the data I am sending.
After trying around for a while it turned out the value of the bit counter is always `8 * (4 + <packet size>) + 2` (one more bit and no match will be triggered). How does this weird number is formed? I have a shortcut to start the bit counter using `RADIO_SHORTS_ADDRESS_BCSTART_Enabled`, a preamble length of 1 octet, an access address length of 4 octets and a CRC of length 3 octets. Is it actually counting something like `<2 bit from the preamble> + <address length> + <packet size>`, or similar? How does this counter actually work?