The physical nRF51dk / nRF51dongle hardware contains a nRF51422 SoC. In Zephyr, only the nRF51822 SoC, is implemented. In Zephyr, the nRF51422 SoC is build as a nRF51822, therefore use the nRF51822 SoC model for those kits instead on the non-existing nRF51422. Signed-off-by: Torsten Rasmussen <Torsten.Rasmussen@nordicsemi.no>
15 lines
280 B
Plaintext
15 lines
280 B
Plaintext
/*
|
|
* Copyright (c) 2019 Peter Bigot Consulting, LLC
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
&i2c0 { /* SDA 30, SCL 7 */
|
|
status = "okay";
|
|
ds3231: ds3231@68 {
|
|
compatible = "maxim,ds3231";
|
|
reg = <0x68>;
|
|
isw-gpios = <&gpio0 0 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
|
|
};
|
|
};
|