Skip to content

Commit

Permalink
fix: SPI struct sequence data addition (#352)
Browse files Browse the repository at this point in the history
fix struct sequence data addition
  • Loading branch information
cassio-lazaro authored Jun 28, 2024
1 parent 50010c6 commit a1c28bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hal_st/stm32fxxx/SpiMasterStmDma.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ namespace hal
struct SpiMasterStmDmaConfig
{
bool msbFirst{ true };
bool polarityLow{true};
bool phase1st{true};
uint32_t baudRatePrescaler{ SPI_BAUDRATEPRESCALER_16 };
bool polarityLow{ true };
bool phase1st{ true };
};
}

Expand Down

0 comments on commit a1c28bb

Please sign in to comment.