Forum Posts
STM32F413 CAN BUS Problem
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...
Is there a way to set timer CH1 pin (PA5) to LOW from code?
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);
Resolved! STM32F373 ADC internal channels only measure 0xFFF
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...
Setting up SPI for AD7190 with STM32G474CE
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...
Resolved! What is a vector table and what information it contained while flashed with a OTA user application?
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 ...
Is there a way to detect a dead time of 300us using "only" a timer?
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.
Hello everyone. I'm using a ADC with DMA. The device is stm32l073.
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...