diff options
author | Michael J. Chudobiak <mjc@avtechpulse.com> | 2012-08-24 13:09:48 -0400 |
---|---|---|
committer | Michael J. Chudobiak <mjc@avtechpulse.com> | 2012-08-24 13:09:48 -0400 |
commit | 6289747b35eef38cca5d5d3076b4ec6d33f9053f (patch) | |
tree | 12b1a38708e4d5e15e8712e4e469eb626a925692 /globals.c | |
parent | badac819cb07b684197295f2b516a023a4725a62 (diff) |
set flags to default values upon reset
Diffstat (limited to 'globals.c')
-rw-r--r-- | globals.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1,8 +1,11 @@ #include "globals.h" #include <time.h> + GlobalStruct globals = { .Flags.do_check_settings = 1, + .DefaultFlags.do_check_settings = 1, + .Registers.last_rise_time_relay_setting = 99 }; |