2007-05-11 Joel Sherrill <joel.sherrill@OARcorp.com>

* include/bsp.h, startup/bspstart.c, startup/spurious.c: hello and
	ticker now run using runtest.
This commit is contained in:
Joel Sherrill
2007-05-11 21:19:23 +00:00
parent 2f9e237f71
commit 6dacdf9db9
4 changed files with 8 additions and 9 deletions

View File

@@ -1,3 +1,8 @@
2007-05-11 Joel Sherrill <joel.sherrill@OARcorp.com>
* include/bsp.h, startup/bspstart.c, startup/spurious.c: hello and
ticker now run using runtest.
2007-05-11 Joel Sherrill <joel.sherrill@OARcorp.com> 2007-05-11 Joel Sherrill <joel.sherrill@OARcorp.com>
* startup/spurious.c: Fix typo from previous commit. * startup/spurious.c: Fix typo from previous commit.

View File

@@ -42,11 +42,6 @@ extern "C" {
#define CONFIGURE_NUMBER_OF_TERMIOS_PORTS 2 #define CONFIGURE_NUMBER_OF_TERMIOS_PORTS 2
#define CONFIGURE_INTERRUPT_STACK_MEMORY (16 * 1024) #define CONFIGURE_INTERRUPT_STACK_MEMORY (16 * 1024)
/* add a entry to the device driver table so that I can call rtems_io_register_driver */
#define CONFIGURE_NUMBER_OF_DRIVERS_LEON3 \
(((sizeof(Device_drivers) / sizeof(rtems_driver_address_table))) + 1)
#define CONFIGURE_MAXIMUM_DRIVERS CONFIGURE_NUMBER_OF_DRIVERS_LEON3
/* /*
* Network driver configuration * Network driver configuration
*/ */

View File

@@ -4,7 +4,7 @@
* The generic CPU dependent initialization has been performed * The generic CPU dependent initialization has been performed
* before any of these are invoked. * before any of these are invoked.
* *
* COPYRIGHT (c) 1989-2006. * COPYRIGHT (c) 1989-2007.
* On-Line Applications Research Corporation (OAR). * On-Line Applications Research Corporation (OAR).
* *
* Modified for LEON3 BSP. * Modified for LEON3 BSP.
@@ -24,8 +24,7 @@
#include <string.h> #include <string.h>
#include <bsp.h> #include <bsp.h>
#include <rtems/libio.h> #include <rtems/bspIo.h>
#include <rtems/libcsupport.h>
/* /*
* The original table from the application and our copy of it with * The original table from the application and our copy of it with

View File

@@ -70,7 +70,7 @@ rtems_isr bsp_spurious_handler(
case 0x09: case 0x09:
printk( "Unexpected trap (0x%2d) at address XXX\n", printk( "Unexpected trap (0x%2d) at address XXX\n",
real_trap real_trap
XXX FIXME isf->tpc */ /* XXX FIXME isf->tpc */
); );
break; break;
case 0x0A: case 0x0A: