2024-02-22 23:34:30 -06:00
|
|
|
//
|
|
|
|
// Created by auric on 2/22/24.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef CONFIG_H
|
|
|
|
#define CONFIG_H
|
|
|
|
|
2024-02-29 13:42:06 -06:00
|
|
|
/* Run `make clean` after changing this file, or it won't reflect in the binary */
|
|
|
|
|
|
|
|
#define debugEnabled // Uncomment to enable debug output
|
|
|
|
// #define silentOutput // Uncomment to remove output
|
|
|
|
|
|
|
|
enum status { // define status output for more readable code
|
|
|
|
OK,
|
|
|
|
ERROR
|
|
|
|
};
|
2024-02-22 23:34:30 -06:00
|
|
|
|
|
|
|
#endif //CONFIG_H
|