User Activity

... ideally automatically as part of a normal Debug or Release build.
I'm trying to use the LL interface to read 2 ADC channels (0 & 1) using DMA. They're configured pretty much as default, 12-bit samples into 16-bit memory variables. I don't see any errors. The transfer completes, as does the EOS. There's data in t...
Shouldn't these be (Pin * 2U) , or (Pin + Pin)?__STATIC_INLINE void LL_GPIO_SetPinMode(GPIO_TypeDef *GPIOx, uint32_t Pin, uint32_t Mode) { MODIFY_REG(GPIOx->MODER, ((Pin * Pin) * GPIO_MODER_MODE0), ((Pin * Pin) * Mode)); }   __STATIC_INLINE uint32_...
What would be an efficient, low latency way to reflect the state of an input pin onto an output pin?Is there anything more automated than configuring the input pin as an EXTI, then in the interrupt handler, reading it and setting the state of the out...
I'm using both SPI1 and SPI2 on an STM32G071RBT Nucleo board, using STM32CubeIDE code generation and LL interface. Both SPIs are configured to use DMA for receive and transmit. SPI1 uses channels 2 & 3; SPI2 uses channels 4 & 5. The DMA transmit co...
Kudos from