Advertisement
Guest User

falcon1988 - dps5005 make flash

a guest
Aug 9th, 2018
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.65 KB | None | 0 0
  1. falcon1988@Maru-VirtualBox:~/opendps$ make -C opendps flash
  2. make: Entering directory '/home/falcon1988/opendps/opendps'
  3.   FLASH   opendps.elf
  4. (echo "halt; program /home/falcon1988/opendps/opendps/opendps.elf verify reset" | nc -4 localhost 4444 2>/dev/null) || \
  5.     openocd -f interface/stlink-v2.cfg \
  6.     -f target/stm32f1x.cfg \
  7.     -c "program opendps.elf verify reset exit" \
  8.     2>/dev/null
  9. ��������Open On-Chip Debugger
  10. > halt; program /home/falcon1988/opendps/opendps/opendps.elf verify reset
  11. target halted due to debug-request, current mode: Handler HardFault
  12. xPSR: 0x00000003 pc: 00000000 msp: 0x464c455c
  13. target halted due to debug-request, current mode: Thread
  14. xPSR: 0x01000000 pc: 0x00010100 msp: 0x464c457c
  15. ** Programming Started **
  16. auto erase enabled
  17. target halted due to breakpoint, current mode: Thread
  18. xPSR: 0x61000000 pc: 0x2000003a msp: 0x464c457c
  19. wrote 56320 bytes from file /home/falcon1988/opendps/opendps/opendps.elf in 13.189932s (4.170 KiB/s)
  20. ** Programming Finished **
  21. ** Verify Started **
  22. target halted due to breakpoint, current mode: Thread
  23. xPSR: 0x61000000 pc: 0x2000002e msp: 0x464c457c
  24. target halted due to breakpoint, current mode: Thread
  25. xPSR: 0x61000000 pc: 0x2000002e msp: 0x464c457c
  26. verified 55500 bytes in 1.804864s (30.030 KiB/s)
  27. ** Verified OK **
  28. ** Resetting Target **
  29. > ^C../libopencm3.rules.mk:241: recipe for target 'opendps.flash' failed
  30. make: *** [opendps.flash] Interrupt
  31.  
  32. falcon1988@Maru-VirtualBox:~/opendps$ make -C dpsboot flash
  33. make: Entering directory '/home/falcon1988/opendps/dpsboot'
  34.   FLASH   dpsboot.elf
  35. (echo "halt; program /home/falcon1988/opendps/dpsboot/dpsboot.elf verify reset" | nc -4 localhost 4444 2>/dev/null) || \
  36.     openocd -f interface/stlink-v2.cfg \
  37.     -f target/stm32f1x.cfg \
  38.     -c "program dpsboot.elf verify reset exit" \
  39.     2>/dev/null
  40. ��������Open On-Chip Debugger
  41. > halt; program /home/falcon1988/opendps/dpsboot/dpsboot.elf verify reset
  42. target halted due to debug-request, current mode: Handler HardFault
  43. xPSR: 0x00000003 pc: 00000000 msp: 0x464c455c
  44. target halted due to debug-request, current mode: Thread
  45. xPSR: 0x01000000 pc: 0x00010100 msp: 0x464c457c
  46. ** Programming Started **
  47. auto erase enabled
  48. wrote 6144 bytes from file /home/falcon1988/opendps/dpsboot/dpsboot.elf in 2.145476s (2.797 KiB/s)
  49. ** Programming Finished **
  50. ** Verify Started **
  51. target halted due to breakpoint, current mode: Thread
  52. xPSR: 0x61000000 pc: 0x2000002e msp: 0x464c457c
  53. verified 5180 bytes in 1.090318s (4.640 KiB/s)
  54. ** Verified OK **
  55. ** Resetting Target **
  56. > ^C../libopencm3.rules.mk:241: recipe for target 'dpsboot.flash' failed
  57. make: *** [dpsboot.flash] Interrupt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement