Go to the source code of this file.
Namespaces | |
| namespace | python_ethernet_rmp::crc16 |
Functions | |
| def | python_ethernet_rmp::crc16.buffer_crc_is_valid |
| def | python_ethernet_rmp::crc16.calculate_crc_16 |
| def | python_ethernet_rmp::crc16.compute_buffer_crc |
| def | python_ethernet_rmp::crc16.generate_crc_table |
Variables | |
| int | python_ethernet_rmp::crc16.BITS_PER_BYTE = 8 |
| int | python_ethernet_rmp::crc16.CRC_ADJUSTMENT = 0xA001 |
| list | python_ethernet_rmp::crc16.crc_table = [0] |
| int | python_ethernet_rmp::crc16.CRC_TABLE_SIZE = 256 |
| int | python_ethernet_rmp::crc16.HIGH_BYTE_MASK = 0xFF00 |
| int | python_ethernet_rmp::crc16.INITIAL_CRC = 0 |
| int | python_ethernet_rmp::crc16.LOW_BYTE_MASK = 0x00FF |
| int | python_ethernet_rmp::crc16.LS_BIT = 0x0001 |
| int | python_ethernet_rmp::crc16.MOVE_BYTE_SHIFT = 8 |