1set pagination off 2# Connect to a running instance of OpenOCD 3target remote 127.0.0.1:3333 4# Reset and halt the target 5mon reset halt 6# Run to a specific point in ROM code, 7# where most of initialization is complete. 8thb *0x4000f6e2 9c 10# Load the application into RAM 11load 12# Run till app_main 13tb app_main 14c 15