Changeset 6279149 in rtems for c/src/lib/libbsp/mips/csb350
- Timestamp:
- Oct 8, 2014, 9:04:56 PM (6 years ago)
- Branches:
- 4.11, 5, master
- Children:
- 6adacd89
- Parents:
- 8536b67
- git-author:
- Joel Sherrill <joel.sherrill@…> (10/08/14 21:04:56)
- git-committer:
- Joel Sherrill <joel.sherrill@…> (10/10/14 15:17:09)
- Location:
- c/src/lib/libbsp/mips/csb350
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/mips/csb350/Makefile.am
r8536b67 r6279149 17 17 nodist_include_HEADERS = include/bspopts.h 18 18 nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h 19 nodist_include_bsp_HEADERS += ../../shared/include/console-polled.h 19 20 DISTCLEANFILES = include/bspopts.h 20 21 nodist_include_HEADERS += ../../shared/include/coverhd.h -
c/src/lib/libbsp/mips/csb350/console/console-io.c
r8536b67 r6279149 2 2 * This file contains the hardware specific portions of the TTY driver 3 3 * for the serial ports on the csb350. 4 * 5 * Logic based on the jmr3904-io.c file in newlib 1.8.2 6 4 */ 5 6 /* 7 7 * COPYRIGHT (c) 1989-2000. 8 8 * On-Line Applications Research Corporation (OAR). … … 14 14 15 15 #include <bsp.h> 16 #include <bsp/console-polled.h> 16 17 #include <rtems/libio.h> 17 18 #include <libcpu/au1x00.h> … … 81 82 } 82 83 83 int csb250_get_char(void)84 static int csb250_get_char(void) 84 85 { 85 86 return console_inbyte_nonblocking(0); -
c/src/lib/libbsp/mips/csb350/preinstall.am
r8536b67 r6279149 70 70 PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/bootcard.h 71 71 72 $(PROJECT_INCLUDE)/bsp/console-polled.h: ../../shared/include/console-polled.h $(PROJECT_INCLUDE)/bsp/$(dirstamp) 73 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/console-polled.h 74 PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/console-polled.h 75 72 76 $(PROJECT_INCLUDE)/coverhd.h: ../../shared/include/coverhd.h $(PROJECT_INCLUDE)/$(dirstamp) 73 77 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/coverhd.h
Note: See TracChangeset
for help on using the changeset viewer.