dave's board build now

This commit is contained in:
Matthew Kennedy 2021-04-26 17:47:17 -07:00
parent 78f6f4c284
commit d0889d6115
2 changed files with 13 additions and 0 deletions

View File

@ -11,3 +11,14 @@ const CANConfig canConfig500 =
CAN_MCR_ABOM | CAN_MCR_AWUM | CAN_MCR_TXFP,
0 // TODO: set bit timing! correctly!
};
Configuration GetConfiguration()
{
// TODO: implement me!
return {};
}
void SetConfiguration(const Configuration& newConfig)
{
// TODO: implement me!
}

View File

@ -24,7 +24,9 @@ void Pwm::Start()
},
0,
0,
#if STM32_PWM_USE_ADVANCED
0
#endif
};
pwmStart(m_driver, &config);