Jonathan Hettwer
Jonathan Hettwer
I think I've found an issue with https://github.com/pR0Ps/grafana-trackmap-panel/blob/974b0d29078696c2990c96f502e6bddca78c80df/src/trackmap_ctrl.js#L375-L380 ` this.leafMap.setView([0, 0], 1);` is never called if data is present, this leads to no map appearing, even if you have correct...
This seems to be caused by the implementation of the cursor (bin/getty.lua unblink and reblink function) in plan9k (but the bug might still be in ocvm). Commenting both functions out...
Oh, no, `0x1FF0 0000` is correct, taken from the RM0432 Rev 9 Reference Manual. I mixed it up with Flash Size Register that I'm also debugging for this particular microcontroller.
@Nightwalker-87 What code would be missing ? I don't have a STM32L496 / STM32L4R5 available to test right now, but looking at the code, there is already `stlink_write_option_bytes_l4` which should...
@Nightwalker-87 The method `stlink_write_option_bytes_l4` should probably be called `stlink_write_option_bytes_l4_l4p`. The L4 / L4P have the same flash type and the same magic dance for updating the option bytes. Because the...
@Nightwalker-87 It was tested on a nucleo development board (https://www.st.com/en/evaluation-tools/nucleo-l4r5zi.html) and an in-house developed board with a stm32l4r5zi .
@Nightwalker-87 You mean another L4P device ? Because nothing changed for the L4 devices, though I could test that with an STM32L496ZI
Aptitude has a hardcoded check against the Origin field, and will only show/download a changelog if it believes the repository to come from debian: https://sources.debian.org/src/aptitude/0.8.13-4/src/generic/apt/pkg_changelog.cc/#L687-L705 A bug has already been...
Minimal reproducer: ```dockefile FROM debian:unstable RUN apt-get update \ && apt-get install -y --no-install-recommends \ expect \ && rm -rf /var/lib/apt/lists/* RUN expect -c 'spawn echo 1' ``` Build with:...
It seems that the code responsible is here https://sources.debian.org/src/expect/5.45.4-2/pty_termios.c/#L390 And a (horrible) C code reproducer: ```c #include #include #include #define __USE_XOPEN_EXTENDED 1 #include int main(int argc, char *argv[]) { int...