mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-29 00:11:49 -05:00
58 lines
1.5 KiB
Bash
Executable File
58 lines
1.5 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (c) 2017-2020, Mudita Sp. z.o.o. All rights reserved.
|
|
# For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
declare -A OPTS=( ['continous']=' -singlerun ' ['verify']=' ' ['speed']=' -speed 25000 ')
|
|
|
|
help()
|
|
{
|
|
cat << EOF
|
|
For basic run with default values:
|
|
./StartJLinkServer.sh
|
|
Params:
|
|
continous - run in continous mode
|
|
verify - verify data loaded
|
|
speed - change speed (please mind 30000 is max by docs)
|
|
EOF
|
|
}
|
|
while [[ $# -gt 0 ]]; do
|
|
case $1 in
|
|
"continous")
|
|
echo "change to continous mode"
|
|
OPTS[$1]=' ';
|
|
;;
|
|
"verify")
|
|
OPTS[$1]=' -vf ';
|
|
;;
|
|
"speed")
|
|
OPTS[$1]=" -speed $2 "
|
|
shift
|
|
;;
|
|
*)
|
|
help
|
|
;;
|
|
esac;
|
|
shift
|
|
done
|
|
CMD="JLinkGDBServerCLExe -if SWD -device MCIMXRT1051 \
|
|
-jlinkscriptfile evkbimxrt1050_sdram_init.jlinkscript -strict -ir \
|
|
-rtos GDBServer/RTOSPlugin_FreeRTOS \
|
|
${OPTS[@]}"
|
|
|
|
echo "RUN: ${CMD}"
|
|
|
|
if [ "${OPTS['continous']}" == " " ]; then
|
|
|
|
notify-send 'DEBUG WARNING!' "
|
|
When using continous mode, after full reset please remember to set PS_EN pin high. GDB command:
|
|
|
|
monitor memU32 0x401BC000 = 128;
|
|
|
|
This will set PS_EN high so that after core reset power circuit would work while loading software
|
|
ps. you can copy it from .gdbinit-rt1051
|
|
" \
|
|
--icon=dialog-information
|
|
fi
|
|
|
|
eval ${CMD}
|