Skip to content

Commit

Permalink
fix merge errors
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRealMoeder committed Mar 4, 2019
1 parent d44686b commit c5304b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ void EventLoop()
if(Transmitter.music_shutdown) {
#if HAS_EXTENDED_AUDIO
MUSIC_Play(MUSIC_SHUTDOWN);
while (CLOCK_getms()<audio_queue_time); {
while (CLOCK_getms() < audio_queue_time) {
// Wait for voice to finished
CLOCK_ResetWatchdog();
}
Expand Down
2 changes: 1 addition & 1 deletion src/telemetry.c
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ void TELEMETRY_Alarm()
unsigned telem_prec = 0;
switch (TELEMETRY_Type()) {
case TELEM_DEVO:
switch (alarm->src]) {
switch (alarm->src) {
case TELEM_DEVO_VOLT1:
case TELEM_DEVO_VOLT2:
case TELEM_DEVO_VOLT3: telem_unit = VOICE_UNIT_VOLT; telem_prec = 1; break;
Expand Down

0 comments on commit c5304b2

Please sign in to comment.