source: rtems/c/src/lib/libbsp/arm/tms570/hwinit/fail_notification.c @ b2ed712

5
Last change on this file since b2ed712 was 29430a3, checked in by Pavel Pisa <pisa@…>, on 09/22/16 at 07:50:59

arm/tms570: include hardware initialization and selftest based on Ti HalCoGen? generated files.

The configuration is specific for TMS570LS3137 based HDK.
Pins configuration can be easily changed in

rtems/c/src/lib/libbsp/arm/tms570/hwinit/init_pinmux.c

file.

The list tms570_selftest_par_list in the file

rtems/c/src/lib/libbsp/arm/tms570/hwinit/bspstarthooks-hwinit.c

specifies peripherals which health status is examined
by parity self-test at BSP start-up. It can be easily
modified for other TMS570 family members variants same
as the selection of other tests in bspstarthooks-hwinit.c.

  • Property mode set to 100644
File size: 286 bytes
Line 
1#include <stdint.h>
2#include <stdbool.h>
3#include <bsp/tms570.h>
4#include "tms570_selftest.h"
5
6void bsp_selftest_fail_notification( uint32_t flag )
7{
8}
9
10void tms570_memory_port0_fail_notification(
11  uint32_t groupSelect,
12  uint32_t dataSelect,
13  uint32_t address,
14  uint32_t data
15)
16{
17}
Note: See TracBrowser for help on using the repository browser.