WRansohoff
WRansohoff
It does seem a little strange - let me know if there are any debug flags or something that I should turn on to provide more information.
I'll take a look - I've been meaning to learn how to flash .bin files instead of uploading .elf's with a debugger, anyways. The code was one of ST's examples,...
Alright, I tried flashing the L0 test program (specifically, ST's LSI initialization example) to an L031K6 Nucleo-32 board, and that works fine. On the L051K8, however, I still observe the...
I'm not convinced that that F103 issue is the same as what I've been seeing; it seems fairly well-supported by this tool, and the L0 issue occurs even on a...
The following diff appears to completely resolve this issue for me (with an STM32L052K8), but I am guessing that it is not an ideal solution: ``` diff --git a/src/common.c b/src/common.c...
Sure, happy to check whether this still happens with STM32L0 category-2 chips. Most of my boards are in storage atm though, so I probably won't be able to do it...
I had the same question; I'm not sure if this is right, but I think you can just write a testbench which runs the operations from the assembly files under...
I don't think that this test can succeed if it is executing from read-only memory, because instructions in a read-only `.text` section cannot be written to. Would it be possible...
Good questions, thanks for bringing them up. I'm still very new to the ESP32 SoC, so please keep in mind that I don't have a complete understanding of how the...
It's not supposed to reset every second, but it might if your chip has its watchdog set up. The example program only increments one variable - it does not 'pet...