#include <stdio.h> #include <stdint.h> typedef union { struct { uint8_t start; uint8_t command; uint16_t data; uint8_t crc; uint8_t end; } fields; uint8_t raw[6]; } Packet; void build_and_print_packet(uint8_t s, uint8_t c, uint16_t d, uint8_t crc, uint8_t e) { Packet a; a.raw[0]=s; a.raw[1]=c; a.raw[2]=(d&0xff); a.raw[3]=((d&0xff00)>>8); a.raw[4]=crc; a.raw[5]=e; for(int i=0;i<6;i++) printf("%u ",a.raw[i]); } int main() { uint8_t s, c, crc, e; uint16_t d; scanf("%hhu %hhu %hu %hhu %hhu", &s, &c, &d, &crc, &e); build_and_print_packet(s, c, d, crc, e); return 0; }
Test Cases
Test Results
Input
165 1 4660 119 90
Expected Output
165 1 52 18 119 90