Changeset ac43f07 in rtems
- Timestamp:
- 12/18/01 14:10:54 (22 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- c2b12f2
- Parents:
- 90bc0568
- Location:
- c/src/lib/libbsp/sparc
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/sparc/erc32/ChangeLog
r90bc0568 rac43f07 1 2001-12-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * configure.ac: Add RTEMS_BSPOPTS*(CONSOLE_USE_INTERRUPTS). 4 Add RTEMS_BSPOPTS*(SIMSPARC_FAST_IDLE). 5 Remove RTEMS_OUTPUT_BUILD_SUBDIRS. 6 * include/bsp.h: include bspopts.h. 7 1 8 2001-11-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 9 -
c/src/lib/libbsp/sparc/erc32/configure.ac
r90bc0568 rac43f07 23 23 24 24 ## bsp-specific options 25 CONSOLE_USE_INTERRUPTS=${CONSOLE_USE_INTERRUPTS-0} 26 AC_DEFINE_UNQUOTED([CONSOLE_USE_INTERRUPTS], 27 [$CONSOLE_USE_INTERRUPTS], 28 [whether using console interrupts]) 25 RTEMS_BSPOPTS_SET([CONSOLE_USE_INTERRUPTS],[*],[0]) 26 RTEMS_BSPOPTS_HELP([CONSOLE_USE_INTERRUPTS], 27 [The erc32 console driver can operate in either polled or interrupt mode. 28 Under the simulator (especially when FAST_UART is defined), polled seems to operate 29 better. It is common for a task to print a line (like the end of test message) and 30 then exit. In this case, the program returns control to the simulator command line 31 before the program has even queued the output to the uart. Thus sis has no chance 32 of getting the data out.]) 29 33 34 RTEMS_BSPOPTS_SET([SIMSPARC_FAST_IDLE],[*],[]) 35 RTEMS_BSPOPTS_HELP([SIMSPARC_FAST_IDLE], 36 [If defined, speed up the clock ticks while the idle task is running so 37 time spent in the idle task is minimized. This significantly reduces 38 the wall time required to execute the RTEMS test suites.]) 30 39 31 40 # Explicitly list all Makefiles here … … 41 50 wrapup/Makefile]) 42 51 AC_OUTPUT 43 44 RTEMS_OUTPUT_BUILD_SUBDIRS(RTEMS_BUILD_SUBDIRS) -
c/src/lib/libbsp/sparc/erc32/include/bsp.h
r90bc0568 rac43f07 26 26 extern "C" { 27 27 #endif 28 29 #include <bspopts.h> 28 30 29 31 #include <rtems.h> -
c/src/lib/libbsp/sparc/leon/ChangeLog
r90bc0568 rac43f07 1 2001-12-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * configure.ac: Add RTEMS_BSPOPTS*(CONSOLE_USE_INTERRUPTS). 4 Add RTEMS_BSPOPTS*(SIMSPARC_FAST_IDLE). 5 Remove RTEMS_OUTPUT_BUILD_SUBDIRS. 6 * include/bsp.h: include bspopts.h. 7 1 8 2001-11-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 9 -
c/src/lib/libbsp/sparc/leon/configure.ac
r90bc0568 rac43f07 22 22 RTEMS_CONFIG_BUILD_SUBDIRS(tools) 23 23 24 ## bsp-specific options 25 RTEMS_BSPOPTS_SET([CONSOLE_USE_INTERRUPTS],[*],[0]) 26 RTEMS_BSPOPTS_HELP([CONSOLE_USE_INTERRUPTS], 27 [The erc32 console driver can operate in either polled or interrupt mode. 28 Under the simulator (especially when FAST_UART is defined), polled seems to operate 29 better. It is common for a task to print a line (like the end of test message) and 30 then exit. In this case, the program returns control to the simulator command line 31 before the program has even queued the output to the uart. Thus sis has no chance 32 of getting the data out.]) 33 34 RTEMS_BSPOPTS_SET([SIMSPARC_FAST_IDLE],[*],[]) 35 RTEMS_BSPOPTS_HELP([SIMSPARC_FAST_IDLE], 36 [If defined, speed up the clock ticks while the idle task is running so 37 time spent in the idle task is minimized. This significantly reduces 38 the wall time required to execute the RTEMS test suites.]) 24 39 25 40 # Explicitly list all Makefiles here … … 34 49 wrapup/Makefile]) 35 50 AC_OUTPUT 36 37 RTEMS_OUTPUT_BUILD_SUBDIRS(RTEMS_BUILD_SUBDIRS) -
c/src/lib/libbsp/sparc/leon/include/bsp.h
r90bc0568 rac43f07 27 27 extern "C" { 28 28 #endif 29 30 #include <bspopts.h> 29 31 30 32 #include <rtems.h>
Note: See TracChangeset
for help on using the changeset viewer.