Hi, I have a STM32G030J6 with a trimpot connected to PA0 (NRST), but I need to disable NRST function. Based on pdf (UM2568) I write this:<code>uint32_t nrstmode; /* Enable Flash access anyway */ __HAL_RCC_FLASH_CLK_ENABLE(); /* Unlock flash */ FLASH-...
When I use the STM32F405RG to send and receive CAN message, it can send message successfully and trigger the tx interrupt, but it cannot trigger the RX0 and RX1 interrupts, the code was generated with STM32CUBEIDE. The relative code is as follows:1 ....
Hi I'm developing an application which I tested on the nucleo board and I want to make my custom board. I went through the datasheet of STM32Go71kb(32 pin version) and I could not find the ADC external trigger input pin. Additonally I cannot provide ...
Hello, I am writing a project with STM32H7. The project contains RTC, SPI, USART, SD Card, timers, and I2C. In order to have more RAM, I have brough the data and bss to RAM_D1. As next steps I want to implement Ethernet. However, I realized that in o...
Hi Sir,In STM32L0 ADC, there is a feature call ADC calibration.I would like to know, after performing ADC calibration, do I have to do factoring using the CALFACT (calibration factor obtained after running ADC calibration) in the result I obtained fr...
I'm adding external SDRAM to a project and I'm trying to decide which data bus width to choose, 8, 16, or 32 bits. Do the wider bus width options significantly affect external SDRAM performance? I have been poring over the AN4891 app note but it ...
hi expertsi generated a project using cubemx and started programming using keil uvision 5.28 IDE and my program used RTOS after days of programming and testing I faced some unusual problems that made me think that my keil had issues and caused those ...
Hello, I am following " MOOC - MOOC - STM32F7 hands-on workshop" from STM official YouTube channel . In workshop there is example code to measure number of clock cycle spent for piece of code with TIM_MEASURE_START and TIM_MEASURE_END. As there are...