URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [lib/] [libbsp/] [m68k/] [ods68302/] [include/] [m68302scc.h] - Rev 173
Compare with Previous | Blame | View Log
/*****************************************************************************/ /* $Id: m68302scc.h,v 1.2 2001-09-27 12:00:21 chris Exp $ M68302 Scc Polled Uart Support */ /*****************************************************************************/ #if !defined(_M68302SCC_H_) #define _M68302SCC_H_ #if __cplusplus extern "C" { #endif #define SCC_4800 (0) #define SCC_9600 (1) #define SCC_19200 (2) #define SCC_38400 (3) #define SCC_57600 (4) #define SCC_115700 (5) void scc_initialise(int channel, int baud_rate, int lf_translate); unsigned char scc_status(int channel, const unsigned char status); unsigned char scc_in(int channel); void scc_out(int channel, const unsigned char character); #if __cplusplus } #endif #endif