Return a two byte string representing the word value. (little endian).
(self, word)
| 6835 | ## |
| 6836 | |
| 6837 | def get_data_from_word(self, word): |
| 6838 | """Return a two byte string representing the word value. (little endian).""" |
| 6839 | return struct.pack("<H", word) |
| 6840 | |
| 6841 | def get_word_from_data(self, data, offset): |
| 6842 | """Convert two bytes of data to a word (little endian) |
no test coverage detected