Fex-II/inc/config.h

19 lines
371 B
C
Raw Normal View History

2024-02-22 23:34:30 -06:00
//
// Created by auric on 2/22/24.
//
#ifndef CONFIG_H
#define CONFIG_H
/* 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