Skip to content

Instantly share code, notes, and snippets.

@vlna
Created August 30, 2018 15:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vlna/e2542539099c644fbce33804d96a557b to your computer and use it in GitHub Desktop.
Save vlna/e2542539099c644fbce33804d96a557b to your computer and use it in GitHub Desktop.
automagic uint16 to 2xuint8
union {
uint16_t data;
struct {
uint8_t l;
uint8_t h;
} s;
} u;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment