Loading...
/* * Copyright (c) 2019 The Chromium OS Authors * * SPDX-License-Identifier: Apache-2.0 */ /dts-v1/; #include <st/f0/stm32f098Xc.dtsi> / { model = "Google Kukui EC"; compatible = "st,stm32f098rc", "st,stm32f098"; chosen { zephyr,console = &usart1; zephyr,shell-uart = &usart1; zephyr,sram = &sram0; zephyr,flash = &flash0; }; }; &usart1 { current-speed = <115200>; status = "okay"; }; &flash0 { partitions { compatible = "fixed-partitions"; #address-cells = <1>; #size-cells = <1>; /* Set 6Kb of storage at the end of the 256Kb of flash */ storage_partition: partition@3e800 { label = "storage"; reg = <0x0003e800 0x00001800>; }; }; }; &i2c1 { status = "okay"; clock-frequency = <I2C_BITRATE_FAST>; }; &i2c2 { status = "okay"; clock-frequency = <I2C_BITRATE_FAST>; }; |