diff --git a/src/device/gpio.rs b/src/device/gpio.rs index 30f9877..3af2ee4 100644 --- a/src/device/gpio.rs +++ b/src/device/gpio.rs @@ -112,9 +112,7 @@ pub fn setup( shdn: gpioa.pa5.into_push_pull_output(), vref_pin: gpioa.pa6.into_analog(), itec_pin: gpiob.pb1.into_analog(), - // Fixme: Flywire is added to Rev0_2 prototype. In Rev0_3, it is connected to PC0 - //dac_feedback_pin: gpioc.pc0.into_analog(), - dac_feedback_pin: gpioc.pc3.into_analog(), + dac_feedback_pin: gpioc.pc0.into_analog(), vtec_pin: gpiob.pb0.into_analog(), max_v: max_v0, max_i_pos: max_i_pos0, diff --git a/src/thermostat/max1968.rs b/src/thermostat/max1968.rs index f51acf5..e48dfc3 100644 --- a/src/thermostat/max1968.rs +++ b/src/thermostat/max1968.rs @@ -42,9 +42,7 @@ impl ChannelPins for Channel0 { type ShdnPin = PA5>; type VRefPin = PA6; type ItecPin = PB1; - // Fixme: Flywire is added to Rev0_2 prototype. In Rev0_3, it is connected to PC0 - //type DacFeedbackPin = PC0; - type DacFeedbackPin = PC3; + type DacFeedbackPin = PC0; type VTecPin = PB0; type MaxVPin = PwmChannel; type MaxIPosPin = PwmChannel;