1
0
forked from fsfw/fsfw

Merge remote-tracking branch 'upstream/development' into mueller/refactor-power-switch-if-etc

This commit is contained in:
2022-04-25 15:37:03 +02:00
40 changed files with 793 additions and 744 deletions

View File

@ -21,7 +21,7 @@ using mspCb = void (*)(void);
namespace spi {
struct MspCfgBase {
MspCfgBase();
MspCfgBase() {}
MspCfgBase(stm32h7::GpioCfg sck, stm32h7::GpioCfg mosi, stm32h7::GpioCfg miso,
mspCb cleanupCb = nullptr, mspCb setupCb = nullptr)
: sck(sck), mosi(mosi), miso(miso), cleanupCb(cleanupCb), setupCb(setupCb) {}