Skip to content

Commit 4435735

Browse files
committed
add sig_gen_frequency_to_phase
1 parent 98be072 commit 4435735

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

driver/src/lib.rs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,16 @@ pub trait PicoDriver: fmt::Debug + Send + Sync {
235235
) -> PicoResult<SigGenArbitraryMinMaxValues> {
236236
unimplemented!();
237237
}
238+
239+
fn sig_gen_frequency_to_phase(
240+
&self,
241+
_handle: i16,
242+
_frequency: f64,
243+
_index_mode: PicoIndexMode,
244+
_buffer_length: u32,
245+
) -> PicoResult<u32> {
246+
unimplemented!();
247+
}
238248
}
239249

240250
pub type ArcDriver = Arc<dyn PicoDriver>;

0 commit comments

Comments
 (0)