Browse Source

transmit: added comment regarding bit order

Fabian Peter Hammerle 3 years ago
parent
commit
ffbdd522a5
1 changed files with 3 additions and 0 deletions
  1. 3 0
      cc1101/__init__.py

+ 3 - 0
cc1101/__init__.py

@@ -447,6 +447,9 @@ class CC1101:
         self._command_strobe(StrobeAddress.SFTX)
 
     def transmit(self, payload: bytes) -> None:
+        """
+        The most significant bit is transmitted first.
+        """
         # see "15.2 Packet Format"
         # > In variable packet length mode, [...]
         # > The first byte written to the TXFIFO must be different from 0.