Resolved! Can't download the software: there is no "Get Software" button
hello,I want to download software from ST Website ,but there is not button to supply.thank you.
Ask questions, find answers, and share insights on STM32 products and their technical features.
hello,I want to download software from ST Website ,but there is not button to supply.thank you.
I have configured LPUART with 9600 baud rate and enable receiver interrupt with MCU 65Khz low power mode and my uart handler likevoid LPUART1_IRQHandler(void){ uint32_t isrflags = READ_REG(hlpuart1.Instance->ISR); uint32_t cr1its = READ_REG(hlpuar...
Hi,I am using LPUART for sending data to the GSM. I wrote own uart transmit driver without timeout, like void LPUART1_Send_Data(uint8_t *string){ while(*string) { if((LPUART1->ISR & USART_ISR_TC)==USART_ISR_TC) { LPUART1->TDR=*string; ...
Hello,When using SRAM without DMA I find several group of APIs for read/write, depending on bus width:HAL_SRAM_Write_8b HAL_SRAM_Write_16b HAL_SRAM_Write_32band also read APIs of course.But for DMA there is only: HAL_SRAM_Read_DMAHAL_SRAM_Read_DMAIs ...
I am new to FDCAN on STM32H7.Using STM32H753VIT6, STM32CubeMX , and HAL, I configured both FDCAN1 (master) and FDCAN2 (slave) at 250 kbps, and all seems to work fine.To check it, I used a MicroChip CAN Bus Analyzer Tool (BTW a very limited and buggy ...
Hello there,I am working on STM32L4's ADC and wants to measure internal temperature sensor's readings.But somehow, I am facing some issues here.1. Calculated Temperature is incorrect:I used below equation, provided in reference manual RM0393's 16.4....
Hi guys,I have to store some data on a sd-card. (The data will be a huge number of bytes)I want to save them in a high frequency (now about 5kHz) in a buffer on the chip (RAM) and then store them in a lower frequency (1Hz) on the sd card.So I have se...
i want to interface sim900/800 with STM32(Nucleo-L053R8) ,Kindly help me .I am new in STM world
Hello,I learned to blink a led as well as using the user's button to make interrupt using HAL library and CubeMXHowever I learnt that through tutorials.I tried to learn more thanks to the datasheet but it doesn't really help. For instance, the ReadPi...
Hello,i interface the STEVAL-IDP005V1 with STM32F401RE programmer (ST-LINK V2-1) with needed connections so when i drop the .bin into drive no errors come but the device resets and it doesnt show any parameters on serial display. i follow the attac...