STM32L4 RTC [LL driver]: Bug in LL_RTC_ALMB_SetDay(), should be RTCx->ALRMBR, not RTC->ALRMBR
The HAL file, stm32l4xx_ll_rtc.h has a bug in LL_RTC_ALMB_SetDay(). It should be using RTCx->ALRMBR instead of RTC->ALRMBR that is in the code.
Ask questions and find answers on STM32Cube packages, including HAL, LL and middleware, and expansion software.
The HAL file, stm32l4xx_ll_rtc.h has a bug in LL_RTC_ALMB_SetDay(). It should be using RTCx->ALRMBR instead of RTC->ALRMBR that is in the code.
I've been messing with the LL drivers for SPI and have run into some confusion.I have HCLK set to 100 Mhz and PCLK1 set to 25 Mhz.I set up the bus using the code generated from STM32cubeMX:static void MX_SPI1_Init(void) { /* USER CODE BEGIN SPI1_...
As the title says, I am trying to migrate some code that once was running on an STM32F7 over to STM32H7 (nucleo boards). I have had all sorts of learning hurdles switching over to the H7 which most have been resolved. The issues in general were due t...
I use stm32h743zi microcontroller and nucleo board.When I wanted to use ethernet communication on cubemx,LWIP is not enable.
Occasionally I get a crash - I think when stack meets heap in certain circumstances but I'm still working on that and it's not the issue I'm asking about.The problem is that when the processor crashes I use the boot loader to reload another code buil...
I have used SDADC RTD temperature measurement example from \STM32Cube\Repository\STM32Cube_FW_F3_V1.10.0\Projects\STM32373C_EVAL\Examples\SDADC\SDADC_TempMeasurementwith the same micro STM32F373 and I am getting huge noise in raw ADC and RTD temperat...
HAL_StatusTypeDef HAL_Init( void ){ HAL_StatusTypeDef statue; /* Configure Instruction cache through ART accelerator */ #if (ART_ACCLERATOR_ENABLE != 0) __HAL_FLASH_ART_ENABLE();#endif /* ART_ACCLERATOR_ENABLE */ /* Configure Flash prefetch */#if (P...
In this function call the package mode check wrong buffer alignment,should check tx buffer not rx buffer.FYI.Typhoon
Good morning,HAL_UART_Transmit(&huart2,myRxData,11,10);HAL_UART_Receive(&huart2,myRxData,11,100);My question is: only to make a test of sending and receiving data is enough to use the previous functions and make the connection of the pins tx with rx ...