// SPDX-FileCopyrightText: 2023 Kent Gibson <warthog618@gmail.com>
//// SPDX-License-Identifier: Apache-2.0 OR MIT
usestd::time::Duration;// max time to allow events to propagate from the sim to cdev
pubconstPROPAGATION_DELAY: Duration =Duration::from_millis(10);pubfnwait_propagation_delay(){std::thread::sleep(PROPAGATION_DELAY);}