Commit 8068ab52 authored by Jeremy Wood's avatar Jeremy Wood Committed by Carles Cufi
Browse files

samples: led_apa102: overlay and config for blueclover_plt_demo_v2



Added dts overlay and config to support using
samples/driver/apa201 with blueclover_plt_demo_v2_nrf52832.

Signed-off-by: default avatarJeremy Wood <jeremy@bcdevices.com>
parent 07056736
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
# Enable LED 5V Regulator
CONFIG_REGULATOR=y
+15 −0
Original line number Diff line number Diff line
/*
 * Copyright (c) 2021 Blue Clover
 *
 * SPDX-License-Identifier: Apache-2.0
 */

/ {
	led_pwr: led-pwr-ctrl {
		compatible = "regulator-fixed-sync", "regulator-fixed";
		label = "led-pwr-ctrl";
		regulator-name = "led-pwr-ctrl";
		enable-gpios = <&gpio0 25 GPIO_ACTIVE_HIGH>;
		regulator-boot-on;
	};
};