linuxOS_AP06/app/lvgl_demo/rk_demo/S10lv_demo

22 lines
243 B
Plaintext
Raw Normal View History

2025-06-03 04:28:32 +00:00
#! /bin/sh
start() {
set -a
export LV_DRIVERS_SET_PLANE=CURSOR
ulimit -n 1024
set +a
rk_demo &
sleep 1 # All processer help rk_demo output first UI.
}
case "$1" in
start)
start
;;
*)
echo "Usage: $0 {start}"
exit 1
esac
exit $?