24 lines
393 B
Plaintext
24 lines
393 B
Plaintext
# Copyright (c) 2021 Yonatan Schachter
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if BOARD_RPI_PICO || BOARD_RPI_PICO_W
|
|
|
|
config BOARD
|
|
default "rpi_pico" if BOARD_RPI_PICO
|
|
default "rpi_pico_w" if BOARD_RPI_PICO_W
|
|
|
|
config RP2_FLASH_W25Q080
|
|
default y
|
|
|
|
if I2C_DW
|
|
|
|
config I2C_DW_CLOCK_SPEED
|
|
default 125
|
|
|
|
endif #I2C_DW
|
|
|
|
config USB_SELF_POWERED
|
|
default n
|
|
|
|
endif # BOARD_RPI_PICO || BOARD_RPI_PICO_W
|