picotool
picotool copied to clipboard
Feature request: Target devices by their unique ID, so that I can work with multiple devices connected at the same time, while allowing the USB port connections to change. The...
I added udev rules for devices in boot and in application mode. Probably not exhaustive.
I just installed LibUSB, then ran `PICO_SDK_PATH=[path_to_sdk] cmake ..` just like the README says. I then received the following error: ``` Using PICO_SDK_PATH from environment ('/home/reinier/code/badgeteam/rpi-pico-sdk') -- Could NOT find...
The [findLIBUSB.cmake](https://github.com/raspberrypi/picotool/blob/master/cmake/FindLIBUSB.cmake) file points to folders that existed in "libusb-1.0.24" ```cmake FIND_PATH(LIBUSB_INCLUDE_DIR libusb.h ***HINTS $ENV{LIBUSB_ROOT}/include/libusb-1.0*** PATHS ${PC_LIBUSB_INCLUDEDIR} ${PC_LIBUSB_INCLUDE_DIRS}) FIND_LIBRARY(LIBUSB_LIBRARIES NAMES libusb-1.0 usb-1.0 usb ***HINTS $ENV{LIBUSB_ROOT}/VS2019/MS32/static*** ``` libusb1.0.24 path to "libusb-1.0.lib"...
```console $ cargo build --example pico_blinky Compiling pico v0.1.0 (/home/jonathan/rp-hal/boards/pico) Finished dev [unoptimized + debuginfo] target(s) in 0.91s $ ../picotool/build/picotool info ./target/thumbv6m-none-eabi/debug/examples/pico_blinky ERROR: filename './target/thumbv6m-none-eabi/debug/examples/pico_blinky' does not have a recognized...
I ran into some errors trying to build `picotool` on linux with `cmake`. It looks like there is a missing destination on the `install` command. I added `RUNTIME DESTINATION` based...
Disabled by default, since reading flash takes about 7% extra time if no sectors can be skipped. For my use case it saves more than 50% time.
This depends on raspberrypi/pico-sdk#329.