Skip to content
Snippets Groups Projects
Commit fdbf28fd authored by Ludwig Knüpfer's avatar Ludwig Knüpfer Committed by Oleg Hahm
Browse files

moved native internal functions declarations

parent 5b696d03
Branches
No related tags found
No related merge requests found
......@@ -15,6 +15,8 @@
#include <stdio.h>
#include "board.h"
#include "board_internal.h"
/**
* Nothing to initialize at the moment.
* Turns the red LED on and the green LED off.
......
......@@ -17,7 +17,7 @@ int _native_uart_out;
fd_set _native_uart_rfds;
static inline int uart0_puts(char *astring, int length)
inline int uart0_puts(char *astring, int length)
{
return puts(astring);
}
......
......@@ -21,9 +21,3 @@ void LED_GREEN_TOGGLE(void);
void LED_RED_OFF(void);
void LED_RED_ON(void);
void LED_RED_TOGGLE(void);
#ifdef MODULE_UART0
#include <sys/select.h>
extern fd_set _native_uart_rfds;
extern void _native_handle_uart0_input(void);
#endif
#ifdef MODULE_UART0
#include <sys/select.h>
extern fd_set _native_uart_rfds;
void _native_handle_uart0_input(void);
void _native_init_uart0(void);
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment