Is your code full of "#define" statements? If so, you should consider switching to the const keyword.Old school C: #define MYVAL 7Better approach: const uint32_t myVal = 7;Here are some reasons you should use const instead of #define:#define has global scope, so you're...