Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision

Target

Select target project
  • avn/swd/miosix-kernel
  • emilio.corigliano/miosix-kernel
2 results
Select Git revision
Show changes
Commits on Source (1)
...@@ -294,6 +294,8 @@ void IRQbspInit() ...@@ -294,6 +294,8 @@ void IRQbspInit()
relay2::high(); relay2::high();
relay3::mode(Mode::OUTPUT); relay3::mode(Mode::OUTPUT);
relay3::high(); relay3::high();
relay4::mode(Mode::OUTPUT);
relay4::high();
DefaultConsole::instance().IRQset(intrusive_ref_ptr<Device>( DefaultConsole::instance().IRQset(intrusive_ref_ptr<Device>(
new STM32Serial(defaultSerial, defaultSerialSpeed, new STM32Serial(defaultSerial, defaultSerialSpeed,
......
...@@ -133,6 +133,7 @@ namespace relays ...@@ -133,6 +133,7 @@ namespace relays
using relay1 = Gpio<GPIOC_BASE, 11>; using relay1 = Gpio<GPIOC_BASE, 11>;
using relay2 = Gpio<GPIOB_BASE, 4>; using relay2 = Gpio<GPIOB_BASE, 4>;
using relay3 = Gpio<GPIOC_BASE, 3>; using relay3 = Gpio<GPIOC_BASE, 3>;
using relay4 = Gpio<GPIOB_BASE, 1>;
} // namespace relays } // namespace relays
} // namespace miosix } // namespace miosix