Skip to content

Commit ef8553b

Browse files
committed
Fix width of status_flags
1 parent 12acdb7 commit ef8553b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

firmware/nRF51/tag-proximity/inc/main.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#define __MAIN_H__
2828

2929
extern uint8_t hibernate;
30-
extern uint8_t status_flags;
30+
extern uint16_t status_flags;
3131
extern uint8_t boot_count;
3232
extern uint32_t reset_reason;
3333

firmware/nRF51/tag-proximity/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
#endif
3636

3737
uint8_t hibernate = 0;
38-
uint8_t status_flags = 0;
38+
uint16_t status_flags = 0;
3939
uint8_t boot_count;
4040
uint32_t reset_reason;
4141

0 commit comments

Comments
 (0)