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

5
Last change on this file since c4ccf26c was c4ccf26c, checked in by Sebastian Huber <sebastian.huber@…>, on 04/17/18 at 04:57:46

bsps: Convert all bsp_predriver_hook()

Use RTEMS_SYSINIT_ITEM() instead.

Update #2408.

  • Property mode set to 100644
File size: 881 bytes
Line 
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.org/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 <bsp/bootcard.h>
22#include "../include/system_conf.h"
23#include "../console/uart.h"
24
25/*
26 *  bsp_start
27 *
28 *  This routine does the bulk of the system initialization.
29 */
30
31void bsp_start(void)
32{
33  /* Setup console baud rate */
34  BSP_uart_init(UART_BAUD_RATE);
35}
Note: See TracBrowser for help on using the repository browser.