Changeset 2395a38 in rtems
- Timestamp:
- 06/22/07 14:07:55 (15 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 92b0eba
- Parents:
- 3aa0564
- Location:
- c/src/lib/libbsp/m68k/idp
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/m68k/idp/ChangeLog
r3aa0564 r2395a38 1 2007-06-22 Joel Sherrill <joel.sherrill@OARcorp.com> 2 3 * console/leds.c, console/mc68ec.c: Rename delay to rtems_bsp_delay to 4 avoid conflicts in application space. 5 1 6 2007-05-03 Joel Sherrill <joel@OARcorp.com> 2 7 -
c/src/lib/libbsp/m68k/idp/console/leds.c
r3aa0564 r2395a38 72 72 unsigned char *leds = (unsigned char *)LED_ADDR; 73 73 unsigned char curled = 0xfe; 74 void delay( int );74 void rtems_bsp_delay( int ); 75 75 76 76 while (1) … … 78 78 *leds = curled; 79 79 curled = (curled >> 1) | (curled << 7); 80 delay ( 8000 );80 rtems_bsp_delay ( 8000 ); 81 81 } 82 82 } -
c/src/lib/libbsp/m68k/idp/console/mc68ec.c
r3aa0564 r2395a38 9 9 10 10 /* 11 * delay -- delay execution. This is an ugly hack. It should11 * rtems_bsp_delay -- delay execution. This is an ugly hack. It should 12 12 * use the timer, but I'm waiting for docs. (sigh) 13 13 */ 14 void delay(num)14 void rtems_bsp_delay(num) 15 15 int num; 16 16 {
Note: See TracChangeset
for help on using the changeset viewer.