Hi, I have a bunch of hex constants I'd like to define with new names for characters for an LCD driver I'm writing.
Can I just define them in hex in the header like this:
#define NINE 0x39
Do I have to force #define statements into char like this?
#define NINE (char)0x39
will the hex work in the #define declaration or do I have to use decimal numbers like this:
#define NINE (char)63
I'd like to keep it hex if possible.
Thanks for any help in advance, Glen.