diff options
Diffstat (limited to 'globals.h')
-rw-r--r-- | globals.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -5,6 +5,7 @@ #include <string.h> #include <stdlib.h> #include <glib.h> +#include <stdbool.h> #define DEBUG_ON - uncomment this to have debug messages @@ -823,8 +824,9 @@ typedef struct { typedef struct { - int beaglebone; - int gpib; + bool beaglebone; + bool olimex; + bool gpib; } HWDetectStruct; |