771d68f3a6
refactor(board): Update to z3.2 Major update to underlying code requires change to the repo, brought in line with zmk pr for commonality, fixed indentation to comply with zmk pre-commit formatting reqs Update settings-reset, change RGB modes Add Update instructions, Assets folder
63 lines
794 B
Plaintext
63 lines
794 B
Plaintext
#
|
|
# Copyright (c) 2022 The ZMK Contributors
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
if BOARD_ADV360_LEFT
|
|
|
|
config ZMK_KEYBOARD_NAME
|
|
default "Adv360 Pro"
|
|
|
|
config ZMK_SPLIT_ROLE_CENTRAL
|
|
default y
|
|
endif # BOARD_ADV360_LEFT
|
|
|
|
if BOARD_ADV360_RIGHT
|
|
|
|
config ZMK_KEYBOARD_NAME
|
|
default "Adv360 Pro rt"
|
|
|
|
endif # BOARD_ADV360_RIGHT
|
|
|
|
|
|
if BOARD_ADV360_LEFT || BOARD_ADV360_RIGHT
|
|
|
|
config BOARD
|
|
default "adv360"
|
|
|
|
config ZMK_SPLIT
|
|
default y
|
|
|
|
config SPI
|
|
bool
|
|
default y
|
|
|
|
config BT_CTLR
|
|
default BT
|
|
|
|
config ZMK_BLE
|
|
default y
|
|
|
|
config ZMK_USB
|
|
default y
|
|
|
|
if USB
|
|
|
|
config USB_NRFX
|
|
default y
|
|
|
|
config USB_DEVICE_STACK
|
|
default y
|
|
|
|
endif # USB
|
|
|
|
config ZMK_BATTERY_VOLTAGE_DIVIDER
|
|
default y
|
|
|
|
config SPI
|
|
default y
|
|
|
|
|
|
|
|
endif # BOARD_ADV360_LEFT || BOARD_ADV360_RIGHT
|