Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix error: function declaration isn't a prototype #15

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sapi/include/rsi_hal.h
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ uint32_t GetTickCount(void);

void rsi_interrupt_handler(void);
void ABRD(void);
short int rsi_uart_iface_int();
short int rsi_uart_iface_int(void);

void Error_Handler(void);

Expand Down
2 changes: 1 addition & 1 deletion sapi/include/rsi_uart.h
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ extern void rsi_enter_critical_sec(void);
extern void rsi_exit_critical_sec(void);
extern void rsi_platform_based_init(void);
extern int32_t rsi_uart_deinit(void);
extern short int rsi_uart_iface_int();
extern short int rsi_uart_iface_int(void);
extern void uart_init(void);
#endif

Expand Down