File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 17
17
18
18
#if DEVICE_LOWPOWERTIMER
19
19
20
- static ticker_event_queue_t events ;
20
+ static ticker_event_queue_t events = { 0 } ;
21
21
22
22
static const ticker_interface_t lp_interface = {
23
23
.init = lp_ticker_init ,
Original file line number Diff line number Diff line change 15
15
*/
16
16
#include "hal/us_ticker_api.h"
17
17
18
- static ticker_event_queue_t events ;
18
+ static ticker_event_queue_t events = { 0 } ;
19
19
20
20
static const ticker_interface_t us_interface = {
21
21
.init = us_ticker_init ,
@@ -27,7 +27,7 @@ static const ticker_interface_t us_interface = {
27
27
28
28
static const ticker_data_t us_data = {
29
29
.interface = & us_interface ,
30
- .queue = & events ,
30
+ .queue = & events
31
31
};
32
32
33
33
const ticker_data_t * get_us_ticker_data (void )
You can’t perform that action at this time.
0 commit comments