boards: beaglev_fire: fix uart
uart1 is not connected to anything as far as I can tell. uart0 was the previous correctly selected uart, so this changes back to that. Signed-off-by: Alex Charlton <alex.n.charlton@gmail.com>
This commit is contained in:
parent
1caf683f81
commit
3190e9f1cd
4 changed files with 12 additions and 36 deletions
|
@ -14,6 +14,18 @@
|
|||
compatible = "beagle,beaglev-fire", "microchip,mpfs";
|
||||
aliases {
|
||||
};
|
||||
|
||||
chosen {
|
||||
zephyr,console = &uart0;
|
||||
zephyr,shell-uart = &uart0;
|
||||
zephyr,sram = &sram1;
|
||||
};
|
||||
};
|
||||
|
||||
&uart0 {
|
||||
status = "okay";
|
||||
current-speed = <115200>;
|
||||
clock-frequency = <150000000>;
|
||||
};
|
||||
|
||||
&gpio2 {
|
||||
|
|
|
@ -21,16 +21,4 @@
|
|||
status = "disabled";
|
||||
};
|
||||
};
|
||||
|
||||
chosen {
|
||||
zephyr,console = &uart0;
|
||||
zephyr,shell-uart = &uart0;
|
||||
zephyr,sram = &sram1;
|
||||
};
|
||||
};
|
||||
|
||||
&uart0 {
|
||||
status = "okay";
|
||||
current-speed = <115200>;
|
||||
clock-frequency = <150000000>;
|
||||
};
|
||||
|
|
|
@ -5,21 +5,9 @@
|
|||
model = "beagle,beaglev-fire";
|
||||
compatible = "beagle,beaglev-fire", "microchip,mpfs";
|
||||
|
||||
chosen {
|
||||
zephyr,console = &uart1;
|
||||
zephyr,shell-uart = &uart1;
|
||||
zephyr,sram = &sram1;
|
||||
};
|
||||
|
||||
cpus {
|
||||
cpu@0 {
|
||||
status = "disabled";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
&uart1 {
|
||||
status = "okay";
|
||||
current-speed = <115200>;
|
||||
clock-frequency = <150000000>;
|
||||
};
|
||||
|
|
|
@ -4,16 +4,4 @@
|
|||
/ {
|
||||
model = "beagle,beaglev-fire";
|
||||
compatible = "beagle,beaglev-fire", "microchip,mpfs";
|
||||
|
||||
chosen {
|
||||
zephyr,console = &uart1;
|
||||
zephyr,shell-uart = &uart1;
|
||||
zephyr,sram = &sram1;
|
||||
};
|
||||
};
|
||||
|
||||
&uart1 {
|
||||
status = "okay";
|
||||
current-speed = <115200>;
|
||||
clock-frequency = <150000000>;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue