Skip to content

Instantly share code, notes, and snippets.

@AndreiCherniaev
Created February 15, 2024 04:59
Show Gist options
  • Save AndreiCherniaev/0b18f1608af8c9774322879b88e58915 to your computer and use it in GitHub Desktop.
Save AndreiCherniaev/0b18f1608af8c9774322879b88e58915 to your computer and use it in GitHub Desktop.
union uint8_16_t
typedef union{
uint16_t u16;
uint8_t u8s[2];
}uint8_16_t;
const uint8_16_t val= {.u8s={0xAA, 0xBB}};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment