forked from M-Labs/artiq
firmware: fix non-DRTIO build
This commit is contained in:
parent
ec7b2bea12
commit
fb0ade77a9
|
@ -158,12 +158,14 @@ pub fn init() {
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(has_drtio)]
|
#[cfg(has_drtio)]
|
||||||
unsafe {
|
{
|
||||||
csr::drtio_transceiver::stable_clkin_write(1);
|
unsafe {
|
||||||
}
|
csr::drtio_transceiver::stable_clkin_write(1);
|
||||||
clock::spin_us(1500); // wait for CPLL/QPLL lock
|
}
|
||||||
unsafe {
|
clock::spin_us(1500); // wait for CPLL/QPLL lock
|
||||||
csr::drtio_transceiver::txenable_write(0xffffffffu32 as _);
|
unsafe {
|
||||||
|
csr::drtio_transceiver::txenable_write(0xffffffffu32 as _);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(has_rtio_crg)]
|
#[cfg(has_rtio_crg)]
|
||||||
|
|
Loading…
Reference in New Issue