I have an application where I want to use the serial console for booting but the speed must be 19200 or less.
The documented loader.conf options for this don't work. Since the ARM architecture looks to be using U-Boot I thought I could configure the console via the /boot/msdos/config.txt:
But this did not change things. I have run into a couple of threads about the u-boot serial console, but nothing that explains how to set a non-default serial speed.
As things sit, the u-boot loader detects the presence of the RxD it seems, and enables the console (at 115200 I guess) and will not recognize the USB keyboard, instead wanting input from the serial keyboard. This will be a problem since the connected device is 19200 or less. If I could prevent u-boot from detecting the serial console, or disable it entirely during the loader, that would be okay. Best would be to get it to run at 19200 and have it work normally.
Any experts on u-boot, RPi and FreeBSD 11.1 know what I'm missing?
The documented loader.conf options for this don't work. Since the ARM architecture looks to be using U-Boot I thought I could configure the console via the /boot/msdos/config.txt:
Code:
console=serial0,19200
As things sit, the u-boot loader detects the presence of the RxD it seems, and enables the console (at 115200 I guess) and will not recognize the USB keyboard, instead wanting input from the serial keyboard. This will be a problem since the connected device is 19200 or less. If I could prevent u-boot from detecting the serial console, or disable it entirely during the loader, that would be okay. Best would be to get it to run at 19200 and have it work normally.
Any experts on u-boot, RPi and FreeBSD 11.1 know what I'm missing?