Hi, I'm not being able to make LPUART work.What I tried:Use HAL drivers.Clock LPUART with LSE.Use different board.I also configured PB11 as output and it toggles normally.PB11: TX(output)PB10: RX(input)This is my code:LL_IOP_GRP1_EnableClock( LL_IOP_...
Posted on March 29, 2014 at 02:21
Hi,
I'm entering in STOP mode with the command:
PWR_EnterSTOPMode(PWR_Regulator_LowPower, PWR_STOPEntry_WFI);
But, when it resume from STOP, I cannot write to EEPROM anymore.
I'm unlock...
Posted on January 10, 2014 at 15:49
Hi,
I'm coding a bootloader using the STM32L151VB, this bootloader read chunks of 128 bytes from a SD Card and put into the STM32L flash through FLASH_ProgramHalfPage ram function from ST Standard libr...
Posted on September 13, 2013 at 00:42I'm a little bit confused with clocking scheme of the USB peripheral in STM32L151.On the datasheet, we see this affirmation, below the general clocking scheme of the microcontroller:''For the USB function to be a...
Posted on March 30, 2014 at 18:25solved, I was forgetting to clear the flags:FLASH_ClearFlag(FLASH_FLAG_EOP|FLASH_FLAG_WRPERR | FLASH_FLAG_PGAERR | FLASH_FLAG_SIZERR | FLASH_FLAG_OPTVERR | FLASH_FLAG_OPTVERRUSR);In normal Run mode it doesn't matter....
Posted on January 10, 2014 at 19:45
Yes, the TIM7 interrupt is running every 1ms. It is really necessary turning off all the interrupts?
Anyway, I tried it and it seems to be worked:
while
(actualPage < (APPLICATION_PAGE + pag...