Resolved! STM32L462 delay in a microsecond(us)
HAL Library provide the HAL_Delay() for millisecond delay. I want to use micro second delay in STM32L4 so how I do it? Is it available in HAL library?
HAL Library provide the HAL_Delay() for millisecond delay. I want to use micro second delay in STM32L4 so how I do it? Is it available in HAL library?
Hi all,I config the SDIO & FATFS by cubeMx for my STM32F429BI board.When I config the SDIO to SDIO_BUS_WIDE_1B, everything is work well; Even the generated MX_SDIO_SD_Init() is NOT calling the HAL_SD_Init() function. (Why don't need HAL_SD_Init() , i...
Hello Team,I have an STM32F469NIHX and I am trying to implement a use case where I want Timer8_ch1 to be a slave to an external signal that I apply on pin D2 (PG7), which is not a source of timer at all. Upon reading the DS, I understood that I cann...
Hi All, I am trying to generate variable frequency using TIM1 on STM32G070. I use TIM1 in output compare mode and PC8 as an output for channel 1. Pre-scaler is set to 0 and ARR to divider for whatever frequency I want. When checking registers I see C...
Hi All I working on a data logger code. It is basic at the moment. 1, set a an ISRTimmer for 1sec. 2, When ISR triggered set a read bit in Datalogger register i set up. 3, Next loop thru main i test Datalogger register, if set go to a function and...
Hi.In X-CUBE-USB-AUDIO, You wrote:1. Does it mean that playback and recording can work simultaneously, and at different sampling rates? For example, playback at 44,1k, and recording at 96k?2. Does it mean that playback and recording may by governed b...
The HAL_GetUID functions return the same value on different chips of the same series. I am using an STM32L0 series chip. This is my code:uint32_t serialw0 = HAL_GetUIDw0(); uint32_t serialw1 = HAL_GetUIDw1(); uint32_t serialw2 = HAL_GetUIDw2();Whic...
Hello, I hope you are well.I'm working with a project, where the base code is the example "STM32CubeExpansion_Cloud_AWS_H5_V1.0.0", I need the current time somehow. So I thought about SNTP, however, I don't have much knowledge on the subject, I would...
Hi,I'm encountering several issues with my timers. Firstly, my timers, specifically Timer3 which is connected to APB1, aren't functioning as expected. I've also attempted to use Timer16, which operates on a clock derived from another peripheral commu...
I am using 4 TIMs for updated interrupts functions. in the main while loop, I will call start the timer. and if the timer reaches its full-period and call the callback function. A Flag will be setted in the callback function and print a timeout meass...