User Activity

I am writing an LPTIM driver without HAL or LL drivers on the B-L072Z-LRWAN1 board. I have been getting a number of odd behaviours here that I am hoping someone here can shed some light on.1) cannot enable continuous start          -bit 2 of the CR r...
I am using the B-L072Z-LRWAN1 and trying to code LPTIM with interrupts and no HAL. The code seems to be getting stuck in the Infinite_Loop section in the startup.s file. The comments around this loop say that an unexpected interrupt was triggered. If...
I am writing my own SPI driver, and using two B-L072Z-LRWAN1 boards to test them; one as an SPI master and one as a slave. On the master device, whenever I enable the SPE bit in the function SPI_Transmit(), it never actually sets to '1', even though ...
I am trying to write interrupts bare-metal style. When I try to set the interrupt vector for LPTIM1 (using B-L071Z-LRWAN1) using this method, NVIC_SetVector(LPTIM1_IRQn, (uint32_t)&LPTIM1_IRQHandler); the compiler gives me this error:../Core/Src/main...
I am using the B-L072Z-LRWAN1 board. All global variables are their initialized values up until SystemClock_Config() executes HAL_RCC_OscConfig() which executes HAL_InitTick(). Once it reaches that point, all the global variables get filled with garb...