mirror of
https://xff.cz/git/pinephone-keyboard/
synced 2024-11-09 14:05:43 +01:00
firmware: Post-revert fixup
This commit is contained in:
parent
4e89074513
commit
c55f0a44d5
3 changed files with 3 additions and 4 deletions
|
@ -45,9 +45,6 @@ General ranges:
|
||||||
|
|
||||||
0x20: System configuration
|
0x20: System configuration
|
||||||
bit 0: disable KB scanning (1: scanning disabled, 0: scanning enabled)
|
bit 0: disable KB scanning (1: scanning disabled, 0: scanning enabled)
|
||||||
bit 1: enable USB debug interface
|
|
||||||
1: enabled
|
|
||||||
0: disabled
|
|
||||||
|
|
||||||
0x21: Charger register address
|
0x21: Charger register address
|
||||||
0x22: Charger register value
|
0x22: Charger register value
|
||||||
|
|
|
@ -1932,6 +1932,9 @@ void main(void)
|
||||||
if (jump_to_usb_bootloader)
|
if (jump_to_usb_bootloader)
|
||||||
__asm__ ("ljmp _usb_bootloader_jump");
|
__asm__ ("ljmp _usb_bootloader_jump");
|
||||||
|
|
||||||
|
// get current system config
|
||||||
|
uint8_t cfg = REG_SYS(CONFIG);
|
||||||
|
|
||||||
// if the 20ms timer did not expire yet, check if we can
|
// if the 20ms timer did not expire yet, check if we can
|
||||||
// powerdown, otherwise busyloop
|
// powerdown, otherwise busyloop
|
||||||
if (!run_timed_tasks) {
|
if (!run_timed_tasks) {
|
||||||
|
|
|
@ -41,7 +41,6 @@
|
||||||
|
|
||||||
#define REG_SYS_CONFIG 0x20
|
#define REG_SYS_CONFIG 0x20
|
||||||
#define REG_SYS_CONFIG_SCAN_BLOCK BIT(0)
|
#define REG_SYS_CONFIG_SCAN_BLOCK BIT(0)
|
||||||
#define REG_SYS_CONFIG_USB_DEBUG_EN BIT(1)
|
|
||||||
|
|
||||||
#define REG_SYS_I2CA_ADDR 0x21
|
#define REG_SYS_I2CA_ADDR 0x21
|
||||||
#define REG_SYS_I2CA_DATA 0x22
|
#define REG_SYS_I2CA_DATA 0x22
|
||||||
|
|
Loading…
Reference in a new issue