2022-04-13 01:07 PM
Hello all, basicly I want to transfer 32bit data bit-wise to a periphal address. Therefore I tried a 200 IQ move and fed the DMA with the bitband adress of the 32Bit data.But the DMA directly sets the error flag. I didn't found a hint in the data sheets, that it isn't allowed to use 0x2200_0000 as source adress for the DMA. Anyone who can help ?
Btw: I'm using a stm32L433
Solved! Go to Solution.
2022-04-13 04:38 PM
>> I didn't found a hint in the data sheets, that it isn't allowed to use 0x2200_0000 as source adress for the DMA.
> Bit-banding is a manifestation of the CPU core, not the memory buses outside of it.
This information is not that straightforwardly obvious, but it's there.
i.e. the translation between the "real" data on the bus system and the bit-band alias is performed here:
i.e. it's not in the path between DMA and any memory.
Some related writeup here.
JW
2022-04-13 01:13 PM
--
2022-04-13 01:34 PM
Bit-banding is a manifestation of the CPU core, not the memory buses outside of it.
2022-04-13 04:38 PM
>> I didn't found a hint in the data sheets, that it isn't allowed to use 0x2200_0000 as source adress for the DMA.
> Bit-banding is a manifestation of the CPU core, not the memory buses outside of it.
This information is not that straightforwardly obvious, but it's there.
i.e. the translation between the "real" data on the bus system and the bit-band alias is performed here:
i.e. it's not in the path between DMA and any memory.
Some related writeup here.
JW