Hi there,From testing it's quite jarring to me to discover that after every 16bit write u need to wait ~5ms before the EEPROM will accept after write. After a more detail reading of the manual I found that after SPI write cmd the EEPROM will trigger ...
I am trying to init the can tx and rx, what i see from the tutorial there should be a CanMsgTypedef in the stm32 driver for the specific mcu. now I am using the stm32l4xx_hal_can.h since I am using the stm32l4a6zg mcu that comes with the nucluos 144 ...
MX_RTC_Init(); if (HAL_RTCEx_BKUPRead(&hrtc, RTC_BKP_DRX) != 0X2233) { printf(" Set Date and Time \r\n"); SetDateTime(); }void SetDateTime(void) { RTC_TimeTypeDef sTime = { 0 }; RTC_DateTypeDef sDate = { 0 }; /* USER CODE BEGIN Check_RTC_BKUP */ /*...
The RTC program is tested with LSE
void SA_USART_config(void){USART_InitTypeDef USART_InitStructure; // USART_DeInit(USART2); /*************RCC_configuration*******************/ RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART2, ENABLE); RCC->CFGR3 |= RCC_CFGR3_USART2SW_0; USART_InitStru...
I am new to STM32, and I am using a STM32L152c discovery board to run a sample blinking light program. I am using HAL_Delay to control the frequency of the blinking light. However, the frequency does not change when I change the argument to HAL_Delay...
7 years ago I made a personal project, which generates video via vga, now I would like to do it via HDMl, I have only found with fpga, but the code is not clear to me, I suppose it is vhl, or vhdl, but I would like to do it with stm32f0,will anyone h...
I've just tried on an 'L031 - after writing LSEDRV to 0b00 (using debugger), I can rewrite it freely to any other value, and the oscillator's behaviour follows the value written.Can ST please comment.JW
Hi everyone,I am currently migrating from STM32F303x to STM32G431x microcontroller (48-pin package) and started testing the GPIOs in reset state, without any firmware on-board. Also, there are no external HW circuitries connected to the pins (I meant...