Browse Source
Merge pull request #16 from osiemk/patch-1
small bug in beacon.c
pull/17/head
Piotr Wilkoń
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
Src/beacon.c
|
|
|
@ -112,7 +112,7 @@ void Beacon_check(void) |
|
|
|
for(uint8_t i = 0; i < 8; i++) |
|
|
|
{ |
|
|
|
if(beacon[i].enable == 0) |
|
|
|
return; |
|
|
|
continue; |
|
|
|
|
|
|
|
if((beacon[i].interval > 0) && ((ticks >= beacon[i].next) || (beacon[i].next == 0))) |
|
|
|
{ |
|
|
|
|