Hi @sbmd_1234!
I will be go deeper into it, the configuration can be done in device tree.
The fastest solution for this problem can be solved creating a service.
Create the service:
nano /etc/systemd/system/LPUART_CONFIG.service
Save the next content in the file:
[Unit]
Description="LPUART CONFIG"
[Service]
ExecStart=stty -F /dev/ttyLP1 115200
[Install]
WantedBy=multi-user.target
Enable the script in the startup/boot sequence following the
command:
systemctl enable LPUART_CONFIG.service
and reboot.
After that every time the LPUART should be configured in the correct baudrate.
Best Regards!
Chavira