Comment by Jeremy on Cortex-M0+ not responding to PendSV
@cooperised - I suspect you might be right. According to the reference manual, stepping can occur with or without interrupts disabled. I'm pretty sure I've successfully stepped through identical code...
View ArticleComment by Jeremy on How to program the bootloader area with JLink in an ARM...
Have you asked on the Segger forum? In my experience their engineers are responsive, and Segger releases software and firmware updates (including Beta versions) pretty regularly....
View ArticleComment by Jeremy on Segger RTT control block is not identified by RTT viewer
I've found that using RTT (via Segger SysView) while JLinkGdbServer is running works very intermittently (<10%) - but if I quit GdbServer (leaving the target running) then SysView works perfectly....
View ArticleComment by Jeremy on Overeager struct packing warnings with...
This question is quite old, but I had a similar problem with GCC 10.3. Despite the warning indicating [-Wattributes], I found that it was controlled by the -Wpacked option: "Warn if a structure is...
View ArticleComment by Jeremy on Atmel SAMD21 DMAC writeback failure?
@gOnZo - Kind of. I stopped using that device.
View ArticleComment by Jeremy on Clang-15 vs Clang-14 local static init guards
You're right, I cheated on the source code. Updated with the real example. The generated code is, however, verbatim.
View ArticleComment by Jeremy on Clang-15 vs Clang-14 local static init guards
I guess it's more an academic question - although one important practical difference is that the second case actually requires an implementation of __atomic_load_1 to be provided from somewhere (e.g....
View ArticleComment by Jeremy on Clearing or preventing pending interrupts in an ISR
In addition to disabling the external interrupt, you also need to clear the interrupt condition that invoked the isr in the first place (by writing to INTFLAG).
View ArticleComment by Jeremy on How to avoid clang-format from formatting the curly...
BreakBeforeBraces: Custom (with BraceWrapping.*) doesn't give you sufficient control?
View ArticleComment by Jeremy on Atmel SAMD21 DMA Abort issue
Possibly the same issue as stackoverflow.com/questions/62833342/…
View ArticleComment by Jeremy on Where does GDB store its general register layout?
Your question is really "where does GDB document its general register layout, right? GDB's own handling of this is found in github.com/bminor/binutils-gdb/blob/master/gdb/arm-tdep.c
View ArticleComment by Jeremy on Calculate Symbol-Size From Linker-Map-File
Your analysis seems reasonable - I suspect amap is not doing its calculations correctly.
View ArticleComment by Jeremy on Where to find documentation on earlier version of GDB?
This question isn't asking for a recommendation. It's asking for the location of a specific version of a specific document. Bizarre to close it.
View ArticleAnswer by Jeremy for Embedding constant at specific memory location
Assuming the bootloader and main app are both under your control, you could have the bootloader jump to the application entry point with a pointer to the version information (and any other information...
View ArticleAnswer by Jeremy for How to calculate expected core file size
I use the following script, seems to work quite well. As the comment explains, we simply find the largest LOAD section end offset in the file. (Note that it accounts for sparse files.)If I remember...
View ArticleAnswer by Jeremy for HDLC - Purpose of PF bit in Asynchronous Balanced Mode...
As described in section 5.4.3.1.3 of ISO13239:In ARM and ABM, the P bit set to "1" shall be used to solicit a response, at the earliest respond opportunity, with the F bit set to"1".NOTE : For example,...
View ArticleAnswer by Jeremy for Writing uint32 to uint64 is not atomic. Why?
As Peter Cordes points out, the atomic instructions would be required for the per-thread increments. The reason is given in the text, but the superfluous 'however' clouds it slightly:That said, atomic...
View ArticleAnswer by Jeremy for How to test Bit-Banged communication's assembly routines
I thought about toggling a "debug pin" to indicate when the sampling is actually happening, but this introduces delays in the sampling procedure, hence I wouldn't be testing my original routine.Test...
View ArticleAnswer by Jeremy for How to implement preemptive scheduling using HAL in...
If you're seeing tail chaining rather than preemption, then it's possible that NVIC priority grouping isn't configured as you expect - and thus configuring the two interrupts into priority groups 0 and...
View ArticleAnswer by Jeremy for Encoding Log Message to improve storage space on...
One quite effective approach to handling log string literals in a C/C++ environment is to allocate them to a distinct linker section, which is stripped from the final binary.The log statements are...
View Article