I am using a the nucleo32 with a stm32F303K8 for my project. I am using arduino and creating a TCP modbus and RTU modbus server.<br>I have set the pins as folows:| Description | Type | Arduino | STM32 | Pin Number ||--------------------|--------...
Hello i have removed the SB2 connection to sever the PA2 pin from the VCP_TX pin before testing the code. And i am getting UART output. The serial output stops when the Interrupt is triggered
I have written a simple program with just PA2 as interrupt. #include <Arduino.h>
const int interruptPin1 = PA2;
uint16_t interruptNumber1 = 0;
void setup() {
Serial.setTx(PA14);
Serial.setRx(PNUM_NOT_DEFINED);
Serial.begin(115200);
delay(...