forked from Firmware/Firmwares
23 lines
297 B
C
23 lines
297 B
C
|
/*
|
||
|
* bsp.h
|
||
|
*
|
||
|
* Created on: 30.07.2018
|
||
|
* Author: eyck
|
||
|
*/
|
||
|
|
||
|
#ifndef BSP_H_
|
||
|
#define BSP_H_
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
#include <fe300prci/fe300prci_driver.h>
|
||
|
#include <platform.h>
|
||
|
#include <encoding.h>
|
||
|
extern void trap_entry();
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* BSP_H_ */
|