gensh1/include/bsp.h: Add needed prototype

This commit is contained in:
Joel Sherrill
2015-03-08 13:50:56 -05:00
parent 52c56af032
commit 867a54a276

View File

@@ -28,6 +28,7 @@
#include <rtems.h> #include <rtems.h>
#include <rtems/clockdrv.h> #include <rtems/clockdrv.h>
#include <rtems/console.h> #include <rtems/console.h>
#include <termios.h> /* for tcflag_t */
#include <bspopts.h> #include <bspopts.h>
#include <bsp/default-initial-extension.h> #include <bsp/default-initial-extension.h>
@@ -74,6 +75,12 @@ extern void *CPU_Interrupt_stack_high;
*/ */
void bsp_hw_init(void); void bsp_hw_init(void);
extern int _sci_get_brparms(
tcflag_t cflag,
unsigned char *smr,
unsigned char *brr
);
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif #endif