Forum Posts
Is it necessary to test all GPIO for class B compliance?
Hi Is it necessary to test all GPIO(output ports)(STM32G070KB)for class B compliance? writing data to outputs ports make problem in my product.
The SWD and Trace ports on STM32H7
The SWD port appears to be dedicated to CM7 core. My first question is whether it can be dedicated to CM4 and second question is how to use Trace port on CM4?Thanks
Where is the source for the factory-installed demo application for NUCLEO-F446ZE ?
I have a NUCLEO-144 board and it has a factory-installed application that flashes the LEDs and uses push button 1 to change which LED is flashing.This is described in section 5.1 "Getting started" in UM1974 for the NUCLEO-144 boards.I have found some...
USART4 does not work receiving data. It works only on USAR2. Sending data works on both. 1) polling on USART4: always timeout 2) Interrupt on USART4 --> Interrupt not thrown
/* Private variables ---------------------------------------------------------*/ UART_HandleTypeDef huart2; UART_HandleTypeDef huart4; ... //#define UART_MODE 1 #define UART_MODE 2 ... #define USARTX USART4 #define huartX huart4 uint8_t UART_rxBuff...
Measuring external Pulse Width and Height/Voltage
Hi all,Im wanting to measure both the width and height of input pulses using ADC and Timers.To get the width I can use a Timer with Input Capture and __HAL_TIM_GetCounterBut to get the height I'm unsure the best way. Currently I'm using the Input Cap...