0
mirror of https://github.com/OneOfEleven/uv-k5-firmware-custom.git synced 2025-06-19 14:48:03 +03:00

Renamed lots more

This commit is contained in:
OneOfEleven
2023-10-08 20:23:37 +01:00
parent 1ab74dcba1
commit 0bb34d230c
68 changed files with 3748 additions and 3765 deletions

View File

@ -20,7 +20,7 @@
#include "settings.h"
// this is decremented once every 500ms
uint16_t gBacklightCountdown = 0;
uint16_t g_backlight_count_down = 0;
void backlight_turn_on(void)
{
@ -34,27 +34,27 @@ void backlight_turn_on(void)
{
default:
case 1: // 5 sec
gBacklightCountdown = 5;
g_backlight_count_down = 5;
break;
case 2: // 10 sec
gBacklightCountdown = 10;
g_backlight_count_down = 10;
break;
case 3: // 20 sec
gBacklightCountdown = 20;
g_backlight_count_down = 20;
break;
case 4: // 1 min
gBacklightCountdown = 60;
g_backlight_count_down = 60;
break;
case 5: // 2 min
gBacklightCountdown = 60 * 2;
g_backlight_count_down = 60 * 2;
break;
case 6: // 4 min
gBacklightCountdown = 60 * 4;
g_backlight_count_down = 60 * 4;
break;
case 7: // always on
gBacklightCountdown = 0;
g_backlight_count_down = 0;
break;
}
gBacklightCountdown *= 2;
g_backlight_count_down *= 2;
}