Tim Nordell

Results 40 comments of Tim Nordell

Looking more closely at the LaTeX writer's internal logic, I did find another way to mask the LaTeX issue: ``` --- a/sphinx_needs/api/need.py +++ b/sphinx_needs/api/need.py @@ -197,7 +197,7 @@ def add_need(...

Hi @iSOLveIT - Basically any label/reference should be only once in the outbound `.tex` file. You can find the `\label{\detokenize{...}}` inside the `.tex` output from a project. There should only...

I'm using the `latexpdf` build (e.g. `sphinx-build -M latexpdf source build` - but it's observable just with `sphinx-build -M latex ...`) along with the default need layout of `clean`.

Yep, no problem! I'll note I added a test case for it in PR https://github.com/useblocks/sphinx-needs/pull/814, too, and the potential fix from above. Edit: The test case doesn't cover the duplicate...

The first patch in this series is probably related to the intent behind the suggestions within #87 although solves it in a different manner that doesn't introduce delays.

> Given how `-M` is implemented I'd prefer to do this avoiding adding `-M` to argparse here. I'll look at refactoring this sometime later this week if I get a...

I spent some time yesterday/today and figured out how to dump out the code for CPU2 for these encrypted firmware binaries so that I could properly debug this. This is...

I got some follow-up answers within the community forum that: 1. The stm32wb5x_BLE_HCI_AdvScan_fw.bin variant does not support HCI ACL packets, but requires the ACL buffer allocation as the firmware checks...

Hello @RJMSTM - **I do not see a fix in the current tip for this.** The community link is related, but not this exact issue. If you invoke `SHCI_GetWirelessFwInfo(...)` (but...

@judge2005 , @igrr - I'll also add a note that a virtual function reads the vtable entry out of flash, so you're reading flash within the ISR. The documentation here...