1# Degu Evaluation Kit configuration 2 3# Copyright (c) 2019 Atmark Techno, Inc. 4# SPDX-License-Identifier: Apache-2.0 5 6if BOARD_DEGU_EVK 7 8config BOARD 9 default "degu_evk" 10 11if USB_DEVICE_STACK 12 13config USB_DEVICE_PRODUCT 14 default "Degu Evaluation Kit" 15 16config USB_UART_CONSOLE 17 default y 18 19config UART_INTERRUPT_DRIVEN 20 default y 21 22config UART_LINE_CTRL 23 default y 24 25endif # USB_DEVICE_STACK 26 27if DISK_DRIVER_FLASH 28 29config DISK_FLASH_DEV_NAME 30 default "NRF_FLASH_DRV_NAME" 31 32config DISK_FLASH_START 33 default 0xf8000 34 35config DISK_FLASH_MAX_RW_SIZE 36 default 4 37 38config DISK_ERASE_BLOCK_SIZE 39 default 0x1000 40 41config DISK_FLASH_ERASE_ALIGNMENT 42 default 0x1000 43 44config DISK_VOLUME_SIZE 45 default 0x8000 46 47endif # DISK_DRIVER_FLASH 48 49endif # BOARD_DEGU_EVK 50