feat(backlight): initial split support

This commit is contained in:
ReFil
2021-12-20 09:40:19 +00:00
committed by Pete Johanson
parent f8bf8bffd5
commit 5614a8bb80
6 changed files with 128 additions and 72 deletions

View File

@@ -4,8 +4,16 @@
* SPDX-License-Identifier: MIT
*/
#define BL_TOG 0
#define BL_ON 1
#define BL_OFF 2
#define BL_INC 3
#define BL_DEC 4
#define BL_TOG_CMD 0
#define BL_ON_CMD 1
#define BL_OFF_CMD 2
#define BL_INC_CMD 3
#define BL_DEC_CMD 4
#define BL_SET_CMD 5
#define BL_TOG BL_TOG_CMD 0
#define BL_ON BL_ON_CMD 0
#define BL_OFF BL_OFF_CMD 0
#define BL_INC BL_INC_CMD 0
#define BL_DEC BL_DEC_CMD 0
#define BL_SET BL_SET_CMD