Search found 1 match

by engine32
Fri May 20, 2022 6:56 pm
Forum: General Discussion
Topic: UART Interrupt without UART driver
Replies: 9
Views: 4791

UART Interrupt without UART driver

Hi there, ESP32-C3, VSCode. I am used to work with AT(X)mega and PIC32 microcontrollers in C. For ATXmega, all I need to do is to configure the UART by writing few registers and write the interrupt handler like this: ISR(USARTC1_RXC_vect) { // Interrupt handler code } As a beginner with ESP32, I wou...