Merge pull request #2098 from xoviat/doc
stm32: fix opamp bug in docs build
This commit is contained in:
commit
e70c531d3d
@ -101,18 +101,22 @@ pub trait InvertingPin<T: Instance>: sealed::InvertingPin<T> {}
|
|||||||
#[cfg(opamp_f3)]
|
#[cfg(opamp_f3)]
|
||||||
macro_rules! impl_opamp_output {
|
macro_rules! impl_opamp_output {
|
||||||
($inst:ident, $adc:ident, $ch:expr) => {
|
($inst:ident, $adc:ident, $ch:expr) => {
|
||||||
impl<'d, 'p, P: NonInvertingPin<crate::peripherals::$inst>> crate::adc::sealed::AdcPin<crate::peripherals::$adc>
|
foreach_adc!(
|
||||||
for OpAmpOutput<'d, 'p, crate::peripherals::$inst, P>
|
($adc, $common_inst:ident, $adc_clock:ident) => {
|
||||||
{
|
impl<'d, 'p, P: NonInvertingPin<crate::peripherals::$inst>> crate::adc::sealed::AdcPin<crate::peripherals::$adc>
|
||||||
fn channel(&self) -> u8 {
|
for OpAmpOutput<'d, 'p, crate::peripherals::$inst, P>
|
||||||
$ch
|
{
|
||||||
}
|
fn channel(&self) -> u8 {
|
||||||
}
|
$ch
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
impl<'d, 'p, P: NonInvertingPin<crate::peripherals::$inst>> crate::adc::AdcPin<crate::peripherals::$adc>
|
impl<'d, 'p, P: NonInvertingPin<crate::peripherals::$inst>> crate::adc::AdcPin<crate::peripherals::$adc>
|
||||||
for OpAmpOutput<'d, 'p, crate::peripherals::$inst, P>
|
for OpAmpOutput<'d, 'p, crate::peripherals::$inst, P>
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
};
|
||||||
|
);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user