orbea / cross / slibtool

Forked from cross/slibtool 4 years ago
Clone

fea1b8 driver: added context initialization for --debug.

Authored and Committed by midipix 9 years ago
    driver: added context initialization for --debug.
    
        
file modified
+1 -0
include/slibtool/slibtool.h CHANGED
@@ -36,6 +36,7 @@ extern "C" {
36
36
#define SLBT_DRIVER_VERSION 0x0010
37
37
#define SLBT_DRIVER_DRY_RUN 0x0020
38
38
#define SLBT_DRIVER_CONFIG 0x0040
39
+ #define SLBT_DRIVER_DEBUG 0x0080
39
40
40
41
/* execution modes */
41
42
enum slbt_mode {
file modified
+3 -0
src/driver/slbt_driver_ctx.c CHANGED
@@ -167,6 +167,9 @@ int slbt_get_driver_ctx(
167
167
cctx.drvflags |= SLBT_DRIVER_CONFIG;
168
168
break;
169
169
170
+ case TAG_DEBUG:
171
+ cctx.drvflags |= SLBT_DRIVER_DEBUG;
172
+ break;
170
173
}
171
174
} else
172
175
nunits++;