libboard_zynq: remove ps7_init for cora_z7_10

pull/74/head
Astro 2020-11-11 14:21:48 +01:00
parent 07fedddad9
commit 8fd317d580
2 changed files with 2 additions and 3987 deletions

File diff suppressed because it is too large Load Diff

View File

@ -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() {