2008-09-22 Joel Sherrill <joel.sherrill@oarcorp.com>

* Makefile.am, startup/bspstart.c: Use standardized bsp_cleanup() which
	can optionally print a message, poll for user to press key, and call
	bsp_reset(). Using this eliminates the various bsp_cleanup()
	implementations which had their own implementation and variety of
	string constants.
This commit is contained in:
Joel Sherrill
2008-09-22 21:49:23 +00:00
parent bf7e13f3a1
commit b23d8953d7
3 changed files with 9 additions and 5 deletions

View File

@@ -1,3 +1,11 @@
2008-09-22 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am, startup/bspstart.c: Use standardized bsp_cleanup() which
can optionally print a message, poll for user to press key, and call
bsp_reset(). Using this eliminates the various bsp_cleanup()
implementations which had their own implementation and variety of
string constants.
2008-09-22 Joel Sherrill <joel.sherrill@oarcorp.com>
* .cvsignore, include/bspopts.h.in: New files.

View File

@@ -51,6 +51,7 @@ dist_project_lib_DATA = ../shared/startup/linkcmds.base \
shared_SOURCES = ../../shared/bootcard.c \
../../shared/bspclean.c \
../../shared/bspreset.c \
../../shared/bspgetworkarea.c \
../../shared/bsplibc.c \
../../shared/bsppost.c \

View File

@@ -63,11 +63,6 @@ void bsp_start( void)
}
}
void bsp_reset( void)
{
/* Do nothing */
}
#define ULSR_THRE 0x00000020U
static void my_BSP_output_char( char c)