Ask questions, find answers, and share insights on STM32 products and their technical features.
Hi, guys!I'm using a board developed in my company that uses a STM32F413VGT3. It has a MCP2551 and I have to use CAN BUS to comunicate.The problem is that we're using PD0 and PD1 as CAN1_RX and CAN1_TX, because PA12 is used to USART1_RTS. I'm able to...
I have configured TIM2 to set CH1 to Force Active if x Pulses are reached. That's working fine.Is there are a way to set it to LOW again from code (main loop)?This seems not to work:HAL_GPIO_WritePin(GPIOA, GPIO_PIN_5, GPIO_PIN_RESET);
Hello,I´m working on a Project with a STM32F373CCT. I need to compensate the signal read from the SDADC Signal with the internal ADC Temprature sensor.The Problem is that I only get the Value 0xFFF from the internal Temprature Sensor and also the Ref...
Hi all, I am trying to setup SPI for the ADC AD7190. I am just attempting to reset the ADC after power up and then read the device ID register to check the communication. I have not been able to do that until now. I will summarize the code here and I...
Hi, I learned that when we flash a binary file to flash, we add the vector table with it. I want to know what is actually is a vector table. I am actually working on uploading a .bin file to flash using IAP. verify it and jump to it. let's say while ...
Hi,is here a way to toggle a GPIO pin if a timer detects a 300us dead time in a continous/clock signal?If so, how? I would like to use a timer only, so no "individual" coding, just CubeMX configuration.
If the ADC is used alone without using DMA, the data conversion will be performed in the cycle described in the data sheet.However, the conversion time is doubled when using DMA.Do you know why?Common conditions・Clock : 16MHz・Clock Prescaler : Asyn...