show/hide this revision's text 2 added 31 characters in body

%x reads an unsigned int, not a uint16_t (thought they may be the same on your particular platform).

To read only one byte, try this:

uint8_t byte

uint32_t byteTmp;
scanf("%2x", &byte);
&byteTmp);
uint8_t byte = byteTmp;

This reads an unsigned int, but stops after reading two characters (two hex characters equals eight bits, or one byte).

show/hide this revision's text 1

%x reads an unsigned int, not a uint16_t (thought they may be the same on your particular platform).

To read only one byte, try this:

uint8_t byte;
scanf("%2x", &byte);

This reads an unsigned int, but stops after reading two characters (two hex characters equals eight bits, or one byte).