source: rtems/c/src/lib/libbsp/lm32/shared/startup/bspstart.c @ 9b4422a2

4.115
Last change on this file since 9b4422a2 was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • Property mode set to 100644
File size: 1.0 KB
RevLine 
[b1783062]1/*
2 *  This routine starts the application.  It includes application,
3 *  board, and monitor specific initialization and configuration.
4 *  The generic CPU dependent initialization has been performed
5 *  before this routine is invoked.
6 *
7 *  COPYRIGHT (c) 1989-1999.
8 *  On-Line Applications Research Corporation (OAR).
9 *
10 *  The license and distribution terms for this file may be
11 *  found in the file LICENSE in this distribution or at
12 *  http://www.rtems.com/license/LICENSE.
13 *
14 *  Jukka Pietarinen <jukka.pietarinen@mrf.fi>, 2008,
15 *  Micro-Research Finland Oy
16 */
17
18#include <string.h>
19
20#include <bsp.h>
21#include "../include/system_conf.h"
22#include "../console/uart.h"
23#include <rtems/score/heap.h>
24
25#include <rtems/system.h>
26#include <rtems/score/isr.h>
27#include <rtems/score/timespec.h>
28#include <rtems/score/tod.h>
29
30/*
31 *  bsp_start
32 *
33 *  This routine does the bulk of the system initialization.
34 */
35
[dce1032b]36void bsp_start(void)
[b1783062]37{
[dce1032b]38  /* Setup console baud rate */
[b1783062]39  BSP_uart_init(UART_BAUD_RATE);
40}
41
42void bsp_predriver_hook(void)
43{
44}
45
46
Note: See TracBrowser for help on using the repository browser.