* Move away from DT_LABEL. * Move to DEVICE_DT_GET for non-behavior device access. * Move various drivers to `gpio_spec_dt` and `DT` related macros. * Remove mcp23017 while at it, since better upstream driver is available.
28 lines
489 B
Text
28 lines
489 B
Text
# SPDX-License-Identifier: MIT
|
|
|
|
CONFIG_BOARD_FERRIS=y
|
|
CONFIG_SOC_SERIES_STM32F0X=y
|
|
CONFIG_SOC_STM32F072XB=y
|
|
# 48MHz system clock
|
|
CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC=48000000
|
|
|
|
# enable PINMUX
|
|
CONFIG_PINCTRL=y
|
|
|
|
# enable GPIO
|
|
CONFIG_GPIO=y
|
|
|
|
# Enable i2c
|
|
CONFIG_I2C=y
|
|
|
|
# ZMK Settings
|
|
CONFIG_ZMK_USB=y
|
|
CONFIG_ZMK_KSCAN_MATRIX_POLLING=y
|
|
CONFIG_USB_SELF_POWERED=n
|
|
|
|
# Needed to reduce this to size that will fit on F072
|
|
CONFIG_HEAP_MEM_POOL_SIZE=1024
|
|
|
|
# clock configuration
|
|
CONFIG_CLOCK_CONTROL=y
|
|
|