1
0
forked from fsfw/fsfw

added missing empty implementation

This commit is contained in:
Robin Mueller
2022-04-11 17:30:27 +02:00
parent afe006e234
commit 6aa54fe1d4
2 changed files with 6 additions and 1 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) {}