I2C GPIO PINS
HiMy understanding is that possible to use the i2c interface on any GPIO pin. Is this statement correct?BR Gilberto
Ask questions, find answers, and share insights on STM32 products and their technical features.
HiMy understanding is that possible to use the i2c interface on any GPIO pin. Is this statement correct?BR Gilberto
Hi,I'm looking at replacing a STM32F103 with a STM32F151 in my design and couldn't find the PM0062 referenced in the AN3422 migration application note.Is there some steps I need to go through to get the flash / eeprom programming manual ?from the ANT...
#include "main.h"UART_HandleTypeDef huart3;uint8_t data[]="Hello world\n";void SystemClock_Config(void);static void MX_GPIO_Init(void);static void MX_USART3_UART_Init(void);int main(void){ HAL_Init(); SystemClock_Config(); MX_GPIO_Init(); MX_USART3_U...
Hi,In my project two 16 bit timers chained together to achieve 32bit capture resolution. TIM3 as master timer and TIM4 as slave timer clocked by TIM3 overflow event (TIM4 works in external clock mode 1). Capture signal is connected to both timers inp...
Hello, I am trying to make communicate a NUCLEO STM3F030 with a STM32F030K6T6 mounted on a custom pcb.Tx sends from NUCLEO is ok when i check it on an oscilloscope but when i connect the power supply of my pcb on the NUCLEO (or even on an external p...
Hello,I have a STM32F769I-EVAL board, where the Firm.Ver is V1.2.0In the package I download, I only have the 1.0.0 Hex version file.Before doing any test and erase the current version, to be able to load back the 1.2 version, I would like to downloa...
I am using an STM32F429VGT6 with SWD debugger, and OpenOCD software 0.10.0.I am trying to dump the contents of the flash memory at 0x08000000 through debugger.If I don't use any WFE/WFI in my code, this works fine.If I put a WFE at the beginning of t...
I am having issues interfacing with the B-L475E-IOT01A's on-board SPBTLE-RF bluetooth chip. I am able to send header packets inquiring about the the bluetooth chip's write and read buffers. I have confirmed that I am doing this correctly, because I g...