forked from M-Labs/zynq-rs
libboard_zynq: remove ps7_init for cora_z7_10
This commit is contained in:
parent
07fedddad9
commit
8fd317d580
File diff suppressed because it is too large
Load Diff
|
@ -5,18 +5,14 @@ use crate::println;
|
|||
mod zc706;
|
||||
#[cfg(feature = "target_redpitaya")]
|
||||
mod redpitaya;
|
||||
#[cfg(feature = "target_cora_z7_10")]
|
||||
mod cora_z7_10;
|
||||
#[cfg(not(any(feature = "target_zc706", feature = "target_redpitaya", feature = "target_cora_z7_10")))]
|
||||
#[cfg(not(any(feature = "target_zc706", feature = "target_redpitaya")))]
|
||||
mod none;
|
||||
|
||||
#[cfg(feature = "target_zc706")]
|
||||
use zc706 as target;
|
||||
#[cfg(feature = "target_redpitaya")]
|
||||
use redpitaya as target;
|
||||
#[cfg(feature = "target_cora_z7_10")]
|
||||
use cora_z7_10 as target;
|
||||
#[cfg(not(any(feature = "target_zc706", feature = "target_redpitaya", feature = "target_cora_z7_10")))]
|
||||
#[cfg(not(any(feature = "target_zc706", feature = "target_redpitaya")))]
|
||||
use none as target;
|
||||
|
||||
pub fn report_differences() {
|
||||
|
|
Loading…
Reference in New Issue