diff options
Diffstat (limited to 'common/backlight.h')
-rw-r--r-- | common/backlight.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/common/backlight.h b/common/backlight.h index 685c422ae..525ec8bbe 100644 --- a/common/backlight.h +++ b/common/backlight.h @@ -24,18 +24,17 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. typedef union { uint8_t raw; struct { - bool enable:1; - uint8_t level:7; + bool enable :1; + uint8_t level :7; }; } backlight_config_t; void backlight_init(void); - void backlight_increase(void); void backlight_decrease(void); void backlight_toggle(void); void backlight_step(void); - void backlight_set(uint8_t level); +void backlight_level(uint8_t level); #endif |