From 2f35ca39ce6d178513a1c36961f240088df21fab Mon Sep 17 00:00:00 2001 From: Oscar Nelin Date: Tue, 2 Jul 2024 15:05:12 +0200 Subject: Attempt to change artifact name --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d74fb89..2d25e64 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -3,3 +3,5 @@ on: [push, pull_request, workflow_dispatch] jobs: build: uses: zmkfirmware/zmk/.github/workflows/build-user-config.yml@main + with: + archive_name: firmware_cradio_qwerty -- cgit v1.3 From 005f0db0d879d27bc3fd47a2e088f9b2ff738fb3 Mon Sep 17 00:00:00 2001 From: Oscar Nelin Date: Mon, 8 Jul 2024 16:04:53 +0200 Subject: Add battery reporting for both sides --- config/cradio.conf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config/cradio.conf b/config/cradio.conf index b21e4d7..8876d0a 100644 --- a/config/cradio.conf +++ b/config/cradio.conf @@ -9,3 +9,7 @@ CONFIG_ZMK_IDLE_SLEEP_TIMEOUT=1800000 # [source](https://zmk.dev/docs/features/debouncing#debounce-configuration) CONFIG_ZMK_KSCAN_DEBOUNCE_PRESS_MS=35 CONFIG_ZMK_KSCAN_DEBOUNCE_RELEASE_MS=35 + +# Provide battery level for both sides +CONFIG_ZMK_SPLIT_BLE_CENTRAL_BATTERY_LEVEL_PROXY=y +CONFIG_ZMK_SPLIT_BLE_CENTRAL_BATTERY_LEVEL_FETCHING=y -- cgit v1.3 From 7f2b7891a643cba4e175edd3f7121745d8f9a50e Mon Sep 17 00:00:00 2001 From: Oscar Nelin Date: Mon, 8 Jul 2024 16:07:25 +0200 Subject: Reduce debounce --- config/cradio.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/cradio.conf b/config/cradio.conf index 8876d0a..2787ef0 100644 --- a/config/cradio.conf +++ b/config/cradio.conf @@ -7,8 +7,8 @@ CONFIG_ZMK_IDLE_SLEEP_TIMEOUT=1800000 # Debouncing, lower to "reduce" input lag, raise to increase "reliability" # [source](https://zmk.dev/docs/features/debouncing#debounce-configuration) -CONFIG_ZMK_KSCAN_DEBOUNCE_PRESS_MS=35 -CONFIG_ZMK_KSCAN_DEBOUNCE_RELEASE_MS=35 +CONFIG_ZMK_KSCAN_DEBOUNCE_PRESS_MS=15 +CONFIG_ZMK_KSCAN_DEBOUNCE_RELEASE_MS=15 # Provide battery level for both sides CONFIG_ZMK_SPLIT_BLE_CENTRAL_BATTERY_LEVEL_PROXY=y -- cgit v1.3