Browse Source
Converts the board to hwmv2 Signed-off-by: Jamie McCrae <jamie.mccrae@nordicsemi.no>pull/69687/head
19 changed files with 23 additions and 53 deletions
@ -1,33 +0,0 @@ |
|||||||
# SPDX-License-Identifier: Apache-2.0 |
|
||||||
|
|
||||||
CONFIG_SOC_SERIES_NRF52X=y |
|
||||||
CONFIG_SOC_NRF52840_QIAA=y |
|
||||||
CONFIG_BOARD_XIAO_BLE=y |
|
||||||
|
|
||||||
# Enable MPU |
|
||||||
CONFIG_ARM_MPU=y |
|
||||||
|
|
||||||
# Enable hardware stack protection |
|
||||||
CONFIG_HW_STACK_PROTECTION=y |
|
||||||
|
|
||||||
# enable GPIO |
|
||||||
CONFIG_GPIO=y |
|
||||||
|
|
||||||
# enable uart driver |
|
||||||
CONFIG_SERIAL=y |
|
||||||
|
|
||||||
# enable console |
|
||||||
CONFIG_CONSOLE=y |
|
||||||
|
|
||||||
# Logger cannot use itself to log |
|
||||||
CONFIG_USB_CDC_ACM_LOG_LEVEL_OFF=y |
|
||||||
|
|
||||||
# enable USB |
|
||||||
CONFIG_USB_DEVICE_STACK=y |
|
||||||
|
|
||||||
# Build UF2 by default, supported by the Adafruit nRF52 Bootloader |
|
||||||
CONFIG_BUILD_OUTPUT_UF2=y |
|
||||||
CONFIG_USE_DT_CODE_PARTITION=y |
|
||||||
|
|
||||||
# required to enable LSM6DS3TR-C power |
|
||||||
CONFIG_REGULATOR=y |
|
@ -1,3 +1,5 @@ |
|||||||
board: |
board: |
||||||
name: qemu_cortex_m0 |
name: qemu_cortex_m0 |
||||||
vendor: Nordic Semiconductor |
vendor: Nordic Semiconductor |
||||||
|
socs: |
||||||
|
- name: nrf51822 |
||||||
|
@ -0,0 +1,5 @@ |
|||||||
|
board: |
||||||
|
name: xiao_ble |
||||||
|
vendor: Seeed Studio |
||||||
|
variants: |
||||||
|
- name: 'sense' |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
@ -1,28 +1,24 @@ |
|||||||
# SPDX-License-Identifier: Apache-2.0 |
# SPDX-License-Identifier: Apache-2.0 |
||||||
|
|
||||||
CONFIG_SOC_SERIES_NRF52X=y |
|
||||||
CONFIG_SOC_NRF52840_QIAA=y |
|
||||||
CONFIG_BOARD_XIAO_BLE=y |
|
||||||
|
|
||||||
# Enable MPU |
# Enable MPU |
||||||
CONFIG_ARM_MPU=y |
CONFIG_ARM_MPU=y |
||||||
|
|
||||||
# Enable hardware stack protection |
# Enable hardware stack protection |
||||||
CONFIG_HW_STACK_PROTECTION=y |
CONFIG_HW_STACK_PROTECTION=y |
||||||
|
|
||||||
# enable GPIO |
# Enable GPIO |
||||||
CONFIG_GPIO=y |
CONFIG_GPIO=y |
||||||
|
|
||||||
# enable uart driver |
# Enable UART driver |
||||||
CONFIG_SERIAL=y |
CONFIG_SERIAL=y |
||||||
|
|
||||||
# enable console |
# Enable console |
||||||
CONFIG_CONSOLE=y |
CONFIG_CONSOLE=y |
||||||
|
|
||||||
# Logger cannot use itself to log |
# Logger cannot use itself to log |
||||||
CONFIG_USB_CDC_ACM_LOG_LEVEL_OFF=y |
CONFIG_USB_CDC_ACM_LOG_LEVEL_OFF=y |
||||||
|
|
||||||
# enable USB |
# Enable USB |
||||||
CONFIG_USB_DEVICE_STACK=y |
CONFIG_USB_DEVICE_STACK=y |
||||||
|
|
||||||
# Build UF2 by default, supported by the Adafruit nRF52 Bootloader |
# Build UF2 by default, supported by the Adafruit nRF52 Bootloader |
Loading…
Reference in new issue