User Activity

Hi,I'm trying to get SPI_B on the NUCLEO-H7A3ZI-Q to work with low level drivers. But I have no output:This is my code:   LL_AHB4_GRP1_EnableClock(LL_AHB4_GRP1_PERIPH_GPIOA);   LL_AHB4_GRP1_EnableClock(LL_AHB4_GRP1_PERIPH_GPIOB);    /* SPI1 /CS */   ...
I'm trying to get a nucleo-H7A4 getting to run my code.Only I got this message now:     -------------------------------------------------------------------                      STM32CubeProgrammer v2.4.0                      -------------------------...
When I start the debug environment in stm32CubeIde. I got the following error message:STMicroelectronics ST-LINK GDB server. Version 5.5.0Copyright (c) 2019, STMicroelectronics. All rights reserved.Starting server with the following options:       Pe...
Is there an LL example to enable the backup ram. This doesn't work:    // Enable PWR clock   LL_APB1_GRP1_EnableClock(LL_APB1_GRP1_PERIPH_PWR);   // Enable Backup ram clock   LL_APB1_GRP1_EnableClock(LL_AHB1_GRP1_PERIPH_BKPSRAM);   LL_APB1_GRP1_Enabl...
I'm making my own low level CAN driver. I have a problem releasing the CANperipheral from sleep mode. So there are more requirements then I found so far. LL_AHB1_GRP1_EnableClock(LL_APB1_GRP1_PERIPH_CAN1); LL_AHB3_GRP1_ForceReset(LL_APB1_GRP1_P...