Skip to content
Snippets Groups Projects
Select Git revision
  • 974a8a8b51a8e49cfb57e501dd3d7fb278536445
  • main default protected
  • next
  • chore/update-static-data
  • renovate/main-redis-5.x
  • feat/gnupg
  • fix/36615b-branch-reuse-no-cache
  • chore/punycode
  • refactor/pin-new-value
  • feat/36219--git-x509-signing
  • feat/structured-logger
  • hotfix/39.264.1
  • feat/skip-dangling
  • gh-readonly-queue/next/pr-36034-7a061c4ca1024a19e2c295d773d9642625d1c2be
  • hotfix/39.238.3
  • refactor/gitlab-auto-approve
  • feat/template-strings
  • gh-readonly-queue/next/pr-35654-137d934242c784e0c45d4b957362214f0eade1d7
  • fix/32307-global-extends-merging
  • fix/32307-global-extends-repositories
  • gh-readonly-queue/next/pr-35009-046ebf7cb84ab859f7fefceb5fa53a54ce9736f8
  • 41.55.3
  • 41.55.2
  • 41.55.1
  • 41.55.0
  • 41.54.0
  • 41.53.1
  • 41.53.0
  • 41.52.3
  • 41.52.2
  • 41.52.1
  • 41.52.0
  • 41.51.2
  • 41.51.1
  • 41.51.0
  • 41.50.0
  • 41.49.1
  • 41.49.0
  • 41.48.1
  • 41.48.0
  • 41.47.1
41 results

.python-version

Blame
  • Flashing the firmware with GDB and Black Magic Probe (BMP)

    Enter the following command into GDB:

    target extended-remote /dev/ttyACM0
    monitor swdp_scan
    attach 1
    file ./pinetime-app-full.hex
    load
    run

    Example :

    $ /home/jf/nrf52/gcc-arm-none-eabi-8-2019-q3-update/bin/arm-none-eabi-gdb
    
    (gdb) target extended-remote /dev/ttyACM0
    Remote debugging using /dev/ttyACM0
    (gdb) monitor swdp_scan
    Target voltage: ABSENT!
    Available Targets:
    No. Att Driver
     1      Nordic nRF52 M3/M4
     2      Nordic nRF52 Access Port
    
    (gdb) attach 1
    Attaching to Remote target
    warning: No executable has been specified and target does not support
    determining executable automatically.  Try using the "file" command.
    0xfffffffe in ?? ()
    (gdb) file ./pinetime-app-full.hex
    A program is being debugged already.
    Are you sure you want to change the file? (y or n) y
    Reading symbols from ./pinetime-app-full.hex...
    (No debugging symbols found in ./pinetime-app-full.hex)
    (gdb) load
    Loading section .sec1, size 0xb00 lma 0x0
    Loading section .sec2, size 0xf000 lma 0x1000
    Loading section .sec3, size 0x10000 lma 0x10000
    Loading section .sec4, size 0x5150 lma 0x20000
    Loading section .sec5, size 0xa000 lma 0x26000
    Loading section .sec6, size 0x10000 lma 0x30000
    Loading section .sec7, size 0xdf08 lma 0x40000
    Start address 0x0, load size 314200
    Transfer rate: 45 KB/sec, 969 bytes/write.