Make it work
This commit is contained in:
parent
8e9b69b87a
commit
4e1f01c4d4
25 changed files with 772 additions and 180 deletions
|
@ -14,7 +14,7 @@
|
|||
extern "C" {
|
||||
#endif
|
||||
|
||||
void MainLoop(void) __attribute__((noreturn));
|
||||
void app_main(void) __attribute__((noreturn));
|
||||
|
||||
#ifdef __cplusplus
|
||||
} // extern "C" {
|
13
components/app/inc/irq_bridge.h
Normal file
13
components/app/inc/irq_bridge.h
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue