Skip to content

Instantly share code, notes, and snippets.

@valentyn-zaitsev
Created November 25, 2017 12:02
Show Gist options
  • Save valentyn-zaitsev/5b07d82d4afba83635c819a8ea839af4 to your computer and use it in GitHub Desktop.
Save valentyn-zaitsev/5b07d82d4afba83635c819a8ea839af4 to your computer and use it in GitHub Desktop.
Uint32_t to uint8_t
array[0] = (uint32_tValue & 0x000000ff);
array[1] = (uint32_tValue & 0x0000ff00) << 8;
array[2] = (uint32_tValue & 0x00ff0000) << 16;
array[3] = (uint32_tValue & 0xff000000) << 24;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment