Thomas Kindler

Results 10 comments of Thomas Kindler

I also have the same question. Without this feature, stm32f1xx-hal is not suited for motor control projects :/

I think I'll just go with low-level PAC access. I also need to set up Center-Aligned-PWM and synchronize ADC, DMA channels and IRQs to the PWM. I already have a...

P.S.: Is there a table to see which HW features are not/partially/fully supported by the HAL?

> [..] > ``` > sudo su > cd /sys > find | grep usb3_lpm_permit | xargs -I {} bash -c "echo 0 > {}" > ``` > [..] Is...

Thanks for your patch! Unfortunately, I don't have a system to test this on at the moment, so I will just leave this issue open for others to see. I...

The issue should have been fixed in kernel versions >= 6.0.17: * https://bugzilla.kernel.org/show_bug.cgi?id=207439 * https://bugzilla.kernel.org/show_bug.cgi?id=215856 So I think we can close the bug without any changes.

Follow up: I think `split_arg_string` and its newly-enabled comment handling should also be used before `handle_internal_commands`. Otherwise `:help` works, but `:help # call internal help` does not.

Hmm, ok. I see that came from the built-in shell_completion.py part of click. That's a special case, and parsing with `lex.commenters = ""` is probably correct there. Normally click does...

When you do ```bash myprogram foo bar # this is a comment ``` in `bash`, myprogram only ever sees `sys.argv = ["myprogram", "foo", "bar"]`. The comment is stripped by the...

Could this be a duplicate of #108 which was fixed in the merged PR #109 ?