ZMK bluetooth device name and ability to view keymap #116
-
I need help to figure out how to change device bluetooth name. Specifying CONFIG_ZMK_KEYBOARD_NAME="Device name" in kconfig field causing a build error (also tried without quotes). CONFIG_ZMK_KEYBOARD_NAME="Device name" give me this error: Aborting due to Kconfig warnings
[178](https://github.com/xbladesub/miryoku_zmk/runs/7714358748?check_suite_focus=true#step:6:180)
[179](https://github.com/xbladesub/miryoku_zmk/runs/7714358748?check_suite_focus=true#step:6:181)
CMake Error at /__w/miryoku_zmk/miryoku_zmk/zmk/zephyr/cmake/kconfig.cmake:272 (message):
[180](https://github.com/xbladesub/miryoku_zmk/runs/7714358748?check_suite_focus=true#step:6:182)
command failed with return code: 1
[181](https://github.com/xbladesub/miryoku_zmk/runs/7714358748?check_suite_focus=true#step:6:183)
Call Stack (most recent call first):
[182](https://github.com/xbladesub/miryoku_zmk/runs/7714358748?check_suite_focus=true#step:6:184)
/__w/miryoku_zmk/miryoku_zmk/zmk/zephyr/cmake/app/boilerplate.cmake:543 (include)
[183](https://github.com/xbladesub/miryoku_zmk/runs/7714358748?check_suite_focus=true#step:6:185)
/__w/miryoku_zmk/miryoku_zmk/zmk/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:24 (include)
[184](https://github.com/xbladesub/miryoku_zmk/runs/7714358748?check_suite_focus=true#step:6:186)
/__w/miryoku_zmk/miryoku_zmk/zmk/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:35 (include_boilerplate)
[185](https://github.com/xbladesub/miryoku_zmk/runs/7714358748?check_suite_focus=true#step:6:187)
CMakeLists.txt:15 (find_package)
[186](https://github.com/xbladesub/miryoku_zmk/runs/7714358748?check_suite_focus=true#step:6:188)
[187](https://github.com/xbladesub/miryoku_zmk/runs/7714358748?check_suite_focus=true#step:6:189)
[188](https://github.com/xbladesub/miryoku_zmk/runs/7714358748?check_suite_focus=true#step:6:190)
-- Configuring incomplete, errors occurred!
[189](https://github.com/xbladesub/miryoku_zmk/runs/7714358748?check_suite_focus=true#step:6:191)
FATAL ERROR: command exited with status 1: /usr/local/bin/cmake -DWEST_PYTHON=/usr/bin/python3 -B/__w/miryoku_zmk/miryoku_zmk/zmk/app/build -S/__w/miryoku_zmk/miryoku_zmk/zmk/app -GNinja -DBOARD=nice_nano_v2 -DSHIELD=corne_left -DZMK_CONFIG=/__w/miryoku_zmk/miryoku_zmk/miryoku_zmk/config
[190](https://github.com/xbladesub/miryoku_zmk/runs/7714358748?check_suite_focus=true#step:6:192)
Error: Build failed with exit code 1.
[191](https://github.com/xbladesub/miryoku_zmk/runs/7714358748?check_suite_focus=true#step:6:193)
Error: Process completed with exit code 1. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
It looks like there's a bug in the workflow where quotes aren't being escaped. Thanks for finding it! I'll fix it, but in the mean time you'd need to edit the keyboard's .conf file, e.g.
You can see the layers at https://github.com/manna-harbour/miryoku/tree/master/docs/reference#layers, and for alternative layout options, at https://github.com/manna-harbour/miryoku_babel#alternative-layouts. Also see #72. There are a lot of macros and conditionals involved, so to see the final keycodes you'd need to work through them manually. See https://github.com/manna-harbour/miryoku_zmk#keyboard-keymaps for the starting point. |
Beta Was this translation helpful? Give feedback.
It looks like there's a bug in the workflow where quotes aren't being escaped. Thanks for finding it! I'll fix it, but in the mean time you'd need to edit the keyboard's .conf file, e.g.
config/corne_left.conf
and add the line there. See https://github.com/manna-harbour/miryoku_zmk#kconfig-configuration. Note it'd be best to usecorne_left.conf
and notcorne.conf
(or when using Build Inputs after the bug is fixed, buildingcorne_left
andcorne_right
separately and only setting kconfig on thecorne_left
build)…