openocd icon indicating copy to clipboard operation
openocd copied to clipboard

Results 34 openocd issues
Sort by recently updated
recently updated
newest added

I am stuck with the following screen state on rpi5: ``` sh sudo openocd -f interface/raspberrypi-swd.cfg -f target/rp2040.cfg Open On-Chip Debugger 0.11.0-g8e3c38f (2023-12-23-19:52) Licensed under GNU GPL v2 For bug...

I'm trying to build openocd on fresh repository clone. Bootstrap script fails as follows: ``` marcin@marcin-VirtualBox:~/pico$ sudo apt install make libtool pkg-config autoconf automake texinfo Reading package lists... Done Building...

New to hardware and MCUs in general; apologies in advance if there's something obvious going on here. I have a Picoprobe with the latest firmware which is ostensibly connected correctly...

Is there a reset-init script for the rp2040 microcontroller in the pico? This is in the Openocd documentation... Terminal 1 openocd -s /home/penta/.arduino15/packages/rp2040/hardware/rp2040/3.6.2/lib/ -f picoprobe_cmsis_dap.tcl Terminal 2 gdb-multiarch /tmp/arduino/sketches/8CF8FC96861539E476DC0E8FD09DD06D/sha1.ino.elf target...

Testing a 1.5MByte file ``` dd if=/dev/zero of=test.bin bs=1500000 count=1 ``` and using the Picoprobe setup (two Picos, one flashed with https://github.com/raspberrypi/picoprobe, latest 1.0.3 firmware), gives extremely slow speeds of...

I followed steps from Getting Started with Pi Pico, and[https://github.com/raspberrypi/openocd/issues/7]( https://github.com/raspberrypi/openocd/issues/7). Also [https://hackaday.io/page/13821-building-openocd-for-picoprobe-on-m1-mac](https://hackaday.io/page/13821-building-openocd-for-picoprobe-on-m1-mac) MacOS Sonoma M1 Max (Mac Studio) ```brew install open-ocd --only-dependencies brew install automake brew install autoconf pkg-config...

I edited the blink example to write some semihosting messages, but a `target halted due to debug-request...` message is displayed with each semihosting command, making the output unreadable: ``` ilg@berry:~/pico/pico-examples/build/blink...

Jimtcl has a new home: https://github.com/msteveb/jimtcl And recently fixed the whitespace compilation issue: https://github.com/msteveb/jimtcl/commit/bcd4434161897da5203cdfaef8b2227e15d82c45

There is a `calloc` warning/error returned from line `1476` in `src/jtag/drivers/ulink.c`: ```c tdo_buffer_start = calloc(sizeof(uint8_t), scan_size_bytes); ``` The error causes a warning message but this can and is treated as...

Fixes #101 - `calloc` warning error returned from line `1476` in `src/jtag/drivers/ulink.c` # Before fix: ```c tdo_buffer_start = calloc(sizeof(uint8_t), scan_size_bytes); ``` # After fix: ```c tdo_buffer_start = calloc(scan_size_bytes, sizeof(uint8_t)); ```