forked from esl-epfl/x-heep
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pull Request Review: X-HEEP on ZCU104 (#1)
* Fixed GPIO vendorization. * Removed constraints file for ZCU104. * Updated FPGA wrapper for ZCU104. * Added sw target for ZCU104. * Updated clk wizard script. * Updated pin assignment.
- Loading branch information
1 parent
557fc83
commit 60e5cc9
Showing
7 changed files
with
135 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// Copyright EPFL contributors. | ||
// Licensed under the Apache License, Version 2.0, see LICENSE for details. | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
#ifndef X_HEEP | ||
#define X_HEEP | ||
|
||
#pragma message ( "the x-heep.h for ZCU104 is used" ) | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif // __cplusplus | ||
|
||
#define REFERENCE_CLOCK_Hz 15*1000*1000 | ||
#define UART_BAUDRATE 9600 | ||
#define TARGET_ZCU104 1 | ||
|
||
/** | ||
* As the hw is configurable, we can have setups with different number of | ||
* Gpio pins | ||
*/ | ||
#define MAX_PIN 32 | ||
|
||
#ifdef __cplusplus | ||
} // extern "C" | ||
#endif // __cplusplus | ||
|
||
#endif // X_HEEP |