Make it work

This commit is contained in:
Attila Body 2025-06-10 21:57:59 +02:00
parent 8e9b69b87a
commit 4e1f01c4d4
Signed by: abody
GPG key ID: BD0C6214E68FB5CF
25 changed files with 772 additions and 180 deletions

View file

@ -14,7 +14,7 @@
extern "C" {
#endif
void MainLoop(void) __attribute__((noreturn));
void app_main(void) __attribute__((noreturn));
#ifdef __cplusplus
} // extern "C" {

View file

@ -0,0 +1,13 @@
#pragma once
#if defined(__cplusplus)
extern "C" {
#endif
void usart2_rx_dma_isr(void);
void usart2_tx_dma_isr(void);
void usart2_isr(void);
#if defined(__cplusplus)
}
#endif