User Activity

Hi all,i have to readout temperature and humidity of a dhc3021 sensor. Therefore, an Arduino code section is already given: Wire.beginTransmission(HDC_ADDR); // Readout temp and rh data Wire.write(0xE0); Wire.write(0x00); Wire.endTransmission(fa...
Hi all,I got a strange issue. I'd like to use USART3 or UART5 on my STM32F446 chip. We have the chip on a pcb, so I am not talking about the nucleo board. The issue is when I do the system_clock_config(), the listed uarts does not work. void init() ...
Hi all!I got something new for you. We have a pcb with an STM32f446re chip on it. For stability reason, we put an 20Mhz external clock on it, but the problem is, we are still running on 16Mhz (measured it with a toggled gpio on the oscilloscope.) The...
Hi!I am operating on an STM32F446 chip and I have the following issue:I tested out a communication system where I attached a 912600 baud communication with another device via UART1 on a STM32f446 NUCLEO Board. All worked out well, no errors or other ...
Hi there!I want so offset the application in the flash at 0x08004000, so that I can use the first sector 0 for individual persistent data. I found out that I have to change the following lines:FLASH (rx)   : ORIGIN = 0x8004000, LENGTH = 496K (Linker ...