EXTI interrupt abstraction feature complete

This commit is contained in:
2025-09-08 02:24:02 -07:00
parent a02ec044ce
commit a599aa5a4e
6 changed files with 20 additions and 32 deletions

View File

@@ -17,13 +17,13 @@ class UART{
public:
//begins Tx and Usart TODO either modify this function or add a new one that supports Rx
void begin(uint32_t baudRate);
void begin(uint32_t baudRate) volatile;
//Sends a string
void sendString(const char* s);
void sendString(const char* s) volatile;
//Sends a char
void sendChar(char c);
void sendChar(char c) volatile;
private: