Removing dead-code allowance

This commit is contained in:
Ryan Summers 2021-01-26 12:23:17 +01:00
parent e161f49822
commit 51085d175e
1 changed files with 0 additions and 2 deletions

View File

@ -328,7 +328,6 @@ macro_rules! adc_input {
} }
/// Enable the ADC DMA transfer sequence. /// Enable the ADC DMA transfer sequence.
#[allow(dead_code)]
pub fn start(&mut self) { pub fn start(&mut self) {
self.transfer.start(|spi| { self.transfer.start(|spi| {
spi.enable_dma_rx(); spi.enable_dma_rx();
@ -346,7 +345,6 @@ macro_rules! adc_input {
/// ///
/// # Returns /// # Returns
/// A reference to the underlying buffer that has been filled with ADC samples. /// A reference to the underlying buffer that has been filled with ADC samples.
#[allow(dead_code)]
pub fn acquire_buffer(&mut self) -> &[u16; SAMPLE_BUFFER_SIZE] { pub fn acquire_buffer(&mut self) -> &[u16; SAMPLE_BUFFER_SIZE] {
// Wait for the transfer to fully complete before continuing. Note: If a device // Wait for the transfer to fully complete before continuing. Note: If a device
// hangs up, check that this conditional is passing correctly, as there is no // hangs up, check that this conditional is passing correctly, as there is no