Kevin Day [Wed, 31 Jul 2024 02:45:29 +0000 (21:45 -0500)]
Refactor: Change bit-wise enumerations into defines.
I did some reviewing of how the enumerations used for flags are used.
These generally are not being used as a type.
An enumeration slightly increases the resulting binary size.
Enumeration values might be limited to just type of int.
This seems like an easy (small) optimization to just use defines rather than enumerations for flags and other bit-wise numbers.
Kevin Day [Mon, 29 Jul 2024 02:49:33 +0000 (21:49 -0500)]
Progress: Continue migrating the project.
This is already mostly done.
I have the stand alone config.h file to setup still.
I do have some strings that are being passed to print functions.
These should be moved into the print files but I am uncertain as to how I want to go about doing this.
I might create an enumeration like I do with the function print string macros.