mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-14 03:30:02 +00:00
9 lines
251 B
Bash
Executable File
9 lines
251 B
Bash
Executable File
#!/bin/bash
|
|
cd `dirname $0`/src
|
|
if [ "$1" == -d ]; then
|
|
shift
|
|
gdb --args ../vendor/micropython/unix/micropython $* -O0 -X heapsize=100000 main_stick.py
|
|
else
|
|
../vendor/micropython/unix/micropython $* -O0 -X heapsize=100000 main_stick.py
|
|
fi
|