MaJerle / stm32fxxx-hal-libraries

Libraries for STM32F4xx and STM32F7xx built on HAL drivers from ST
MIT License
760 stars 436 forks source link

Removed an unnecessary argument. #25

Closed jinhyuk-im closed 6 years ago

jinhyuk-im commented 6 years ago

Hello,

I found that is too many arguments to the TM_SPI_WriteMulti() call. And its implementation is a below:

void TM_SPI_WriteMulti(SPI_TypeDef SPIx, uint8_t dataOut, uint32_t count);

I think that like a copy-and-paste mistake. Do you?

MaJerle commented 6 years ago

Looks like I didn't correct it everywhere. In the past I had 3rd parameter to specify the dummy byte for MOSI. Thanks.

jinhyuk-im commented 6 years ago

Thanks, @MaJerle