Hello, @sdx111
Thanks for your confirmation.
I have checked the BSP35, your automatically started application may be run with the assist of the following method
vi /etc/systemd/system/startup.service
Put the following contents into the file that created above.
[Unit]
Description=Startup
After=network.target
[Service]
Type=oneshot
ExecStart=$PATH_TO_YOUR_APP
RemainAfterExit=yes
[Install]
WantedBy=multi-user.target
Saved and run the following command:
systemctl daemon-reload
systemctl enable mystartup.service
systemctl start mystartup.service
I have tested it on the BSP35, and the application could be correctly brought up, note it is only a reference sample, you may implement it according to different requirements.
I hope it will help.
BR
Chenyin