Skip to content

Instantly share code, notes, and snippets.

@lomassubedi
Created July 11, 2022 10:10
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 lomassubedi/68b3ac6e949b4c41a67b3ee311976498 to your computer and use it in GitHub Desktop.
Save lomassubedi/68b3ac6e949b4c41a67b3ee311976498 to your computer and use it in GitHub Desktop.
software_versioning
#define v_major 4
#define v_minor 2
#define v_patch 3
uint32_t = (v_major << 16) | (v_minor << 8) | v_patch;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment