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

Target

Select target project
  • avn/swd/miosix-kernel
  • emilio.corigliano/miosix-kernel
2 results
Show changes
Commits on Source (1)
......@@ -259,6 +259,11 @@ namespace miosix
uart1::tx::mode(Mode::ALTERNATE);
uart1::tx::alternateFunction(7);
can1::rx::mode(Mode::ALTERNATE);
can1::rx::alternateFunction(9);
can1::tx::mode(Mode::ALTERNATE);
can1::tx::alternateFunction(9);
timers::tim4ch2::mode(Mode::ALTERNATE);
timers::tim11ch1::mode(Mode::ALTERNATE);
timers::tim3ch1::mode(Mode::ALTERNATE);
......
......@@ -77,6 +77,12 @@ using tx = Gpio<GPIOA_BASE, 9>;
using rx = Gpio<GPIOA_BASE, 10>;
} // namespace uart1
namespace can1
{
using tx = Gpio<GPIOA_BASE, 12>;
using rx = Gpio<GPIOA_BASE, 11>;
} // namespace can1
namespace timers
{
using tim4ch2 = Gpio<GPIOB_BASE, 7>; // Servo 1
......