Ask questions, find answers, and share insights on STM32 products and their technical features.
I have a sensor with analog data and I am connecting it to one of the ADC pins (STM32L152). I have no problem to read a single conversion data. However, I would like to one shot capture multiple ADC data (for example, 128) so it will be more consiste...
Hello, is there any MCU belongs to STM32L4 with FMC supporting SDRAM?Thanks!
Here are my codes and I confirmed that the chip went to standby mode, but could not get any sign of waking up.If you have some idea to wake the arduino up, it will be appreciative if you share me.Best regards,bool ActionRtcSleep() { int8_t i; ...
Beacons are advertising some data packets. From that data packet I have to extract the RSSI value. for that I used the following command.rssi = *(uint8_t*) (adv_report_data + le_advertising_event->Advertising_Report[0].Length_Data);It worked well for...
Hi, I've been looking to request a free sample for my uni coursework but I'm not sure who I can contact. Can someone point me in the right direction? Thanks
Hello ,I passed the confirmation e-mail to our purchasing Dept. in order to purchase the board, and they confirmed the purchasing.but I get an e-mail today from st indicating that my seat is re allocated to another participant .What should I do to co...
Hello,As described in the reference manual of STM32F746, it was found that bidirectional communication using one data line (SDA signal) in the figure can be realized by performing half-duplex communication using the SPI function.Please tell me the s...
Hi,I want to interface 3-phase DC motor's hall sensor with STM32H74x MCU. I found a timer's hall sensor mode in a document but I don't have any example code to get start with it.Can anyone please provide a reference or pseudo code for it.Thanks in ad...
Here is my source code: void CLOCK(void){ RCC_DeInit(); RCC_LSICmd(ENABLE); RCC_HSEConfig(RCC_HSE_ON); while(RCC_WaitForHSEStartUp()==ERROR); FLASH_PrefetchBufferCmd(FLASH_PrefetchBuffer_Enable); FLA...