forked from M-Labs/thermostat
channels: remove unneccessary pub qualifiers
This commit is contained in:
parent
e6e150dac3
commit
d326517453
|
@ -14,10 +14,10 @@ pub const CHANNELS: usize = 2;
|
||||||
|
|
||||||
// TODO: -pub
|
// TODO: -pub
|
||||||
pub struct Channels {
|
pub struct Channels {
|
||||||
pub channel0: Channel<Channel0>,
|
channel0: Channel<Channel0>,
|
||||||
pub channel1: Channel<Channel1>,
|
channel1: Channel<Channel1>,
|
||||||
pub adc: ad7172::Adc<pins::AdcSpi, pins::AdcNss>,
|
pub adc: ad7172::Adc<pins::AdcSpi, pins::AdcNss>,
|
||||||
pub tec_u_meas_adc: pins::TecUMeasAdc,
|
tec_u_meas_adc: pins::TecUMeasAdc,
|
||||||
pub pwm: pins::PwmPins,
|
pub pwm: pins::PwmPins,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue