moved FPGA config GPIO initialization into init_fpga.c to enable external JTAG FPGA configuration

This commit is contained in:
Markus Fröschle
2014-06-20 12:02:11 +00:00
parent dd3a3e9da4
commit 453c974c4f
5 changed files with 61 additions and 102 deletions

View File

@@ -28,13 +28,17 @@
#ifndef __SYSINIT_H__
#define __SYSINIT_H__
#include <stdbool.h>
/* function(s) from init_fpga.c */
extern void init_fpga(void);
extern bool init_fpga(void);
extern void init_usb(void);
/* fault_vectors */
extern void setup_vectors(void);
extern bool fpga_configured;
#endif /* __SYSINIT_H__ */