Raphael Lehmann
Raphael Lehmann
From my point of view the device cache should be recomputed as soon as any input changes. That means modm-devices as well as all scripts involved in the computation. Otherwise...
Nice! :+1: Isn't this somehow the same feature as the "Flash driver" added by @salkinium in #417? Wouldn't it be nice to make the interface for STM32 and SAM the...
@salkinium Is it ok to copy `span.hpp` into the modm repository or should I add [span-lite](https://github.com/martinmoene/span-lite) as a git submodule?
DMA and SPI with DMA support exists for all STM32 chips, see #371, #608, #629 and #772.
Oh, I see. STM32H7 family completely is missing a SPI driver currently, see [peripheral matrix](https://modm.io/#microcontrollers). (Not sure if that is just not tested/enabled, but identical to the SPI peripherals in...
Both objdumps from blink example with added `modm:platform:heap` (for better comparison): `arm-none-eabi-objdump -d blink.elf` (ARM Toolchain; WITH heap module enabled) ``` /home/user/modm2/build/nucleo_f411re/blink/release/blink.elf: file format elf32-littlearm Disassembly of section .text: 080001a0...
> The Ubuntu Toolchain starts working if you add this module? Yes. I added ~`modm:build:scons`~ `modm:platform:heap` to the `project.xml` file, then ran `lbuild build` and `scons -j4` again.
Sorry, if miss-copy-pasted `modm:platform:scons` instead of `modm:platform:heap` in my issue and comments. Of course I enabled the heap module. (Comments above updated)
> I'm also seeing some other weird things like the TLSF implementation being part of both listings, even though that module only gets pulled in via :platform:heap? Both objdumps are...
> Can you give me the listing without the heap module? I updated my comment above and added a listing from the ARM toolchain without heap module enabled. > I...