source: rtems/c/src/lib/libbsp/arm/raspberrypi/startup/bspreset.c @ f074a4d

4.115
Last change on this file since f074a4d was c32b1ef, checked in by Alan Cudmore <alan.cudmore@…>, on 03/23/13 at 18:13:07

bsp/raspberrypi: New BSP

  • Property mode set to 100644
File size: 548 bytes
Line 
1/**
2 * @file
3 *
4 * @ingroup raspberrypi
5 *
6 * @brief Reset code.
7 */
8
9/*
10 * Copyright (c) 2013 by Alan Cudmore
11 * Based on work by:
12 * Copyright (c) 2009
13 * embedded brains GmbH
14 * Obere Lagerstr. 30
15 * D-82178 Puchheim
16 * Germany
17 * <rtems@embedded-brains.de>
18 *
19 *  The license and distribution terms for this file may be
20 *  found in the file LICENSE in this distribution or at
21 *
22 *  http://www.rtems.com/license/LICENSE
23 *
24 */
25
26#include <rtems.h>
27
28#include <bsp/bootcard.h>
29
30void bsp_reset( void)
31{
32  while (true) {
33    /* Do nothing */
34  }
35}
Note: See TracBrowser for help on using the repository browser.