<PaulFertser>
RolfNoot: it checks the last commit by default. BTW, you shouldn't push "fix-up" commits anyway, so you might need to squash the last one with the previous one anyway.
<PaulFertser>
RolfNoot: you can run tools/checkpatch.sh HEAD~3"
<PaulFertser>
to check more than the last commit.
Hammdist has joined #openocd
ahorvat has joined #openocd
bvernoux has quit [Read error: Connection reset by peer]
<RolfNoot>
I have 3 commits which address different cases. Currently I commit new changed and use fixup (git rebase -i origin/master) to squash the new commit into the original one.
<RolfNoot>
I hope this is the right way
<PaulFertser>
OK
<PaulFertser>
Different things go to different commits, right
<PaulFertser>
It's just that your last paste had "contrib/loaders/flash/psoc6: remove empty lines at the end of the .inc" commit message and that doesn't seem to be good if it's for a file that you add in previous commit.
<RolfNoot>
I noted that as well. I started off a bit messy, sorry for that. It's more and more clear now
<PaulFertser>
No problem at all :)
<RolfNoot>
Thank you. I'm now using tools/checkpatch.sh HEAD~3 which is great to check the different commits.
<RolfNoot>
Okay, looks like all patches are done & okay now from my side (7983, 7984 & 7986). This means a working implementation for PSoC6 (tested from my side).
<RolfNoot>
I still want to apply the implementation for Infineon KitProg3 debugger (also based on Infineon's OpenOCD fork) and also implement a progress bar for programming (if there's interest)
<karlp>
you can probably use quite a bit higher than 1000 for the speed too, should be faster.
Hammdist has joined #openocd
nathanhi has joined #openocd
Hammdist has quit [Client Quit]
Hammdist has joined #openocd
nathanhi has quit [Ping timeout: 256 seconds]
nathanhi has joined #openocd
<sdewan>
Hello all, I'm wondering if anyone else has been unable to use CMSIS-DAP v2 probes on macOS since fd75e9e542700e40f11d79532d19e311cf437de1 went in? The CMSIS-DAP USB bulk backend now relies on libusb_dev_mem_alloc(), but this function is not implemented on macOS (in fact as far as I can tell it is only implemented on Linux and will always return
<sdewan>
NULL on all other platforms including Windows).