Fex-II/inc/config.h

19 lines
371 B
C

//
// 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
};
#endif //CONFIG_H