79633409

Date: 2025-05-22 09:00:39
Score: 1.5
Natty:
Report link

maybe try a raw byte dump?

uint8_t data[16];
while (1) {
    for (int i = 0; i < 16; i++) {
        data[i] = UART1_Receive();
        debug_printf("0x%02X ", data[i]);
    }
    debug_printf("\n");
}

should let you check the structured packet headers

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: xvxvxvxzczxcvcx