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

4.115
Last change on this file since db5cb262 was db5cb262, checked in by Sebastian Huber <sebastian.huber@…>, on 11/15/12 at 10:57:59

bsps/lm32: Include <bsp/bootcard.h>

  • 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>
[db5cb262]21#include <bsp/bootcard.h>
[b1783062]22#include "../include/system_conf.h"
23#include "../console/uart.h"
24#include <rtems/score/heap.h>
25
26#include <rtems/system.h>
27#include <rtems/score/isr.h>
28#include <rtems/score/timespec.h>
29#include <rtems/score/tod.h>
30
31/*
32 *  bsp_start
33 *
34 *  This routine does the bulk of the system initialization.
35 */
36
[dce1032b]37void bsp_start(void)
[b1783062]38{
[dce1032b]39  /* Setup console baud rate */
[b1783062]40  BSP_uart_init(UART_BAUD_RATE);
41}
42
43void bsp_predriver_hook(void)
44{
45}
46
47
Note: See TracBrowser for help on using the repository browser.