suikan4github / murasaki

STM32 HAL class library
MIT License
18 stars 3 forks source link

The sample peripheral name of the template has camel format #80

Closed suikan4github closed 4 years ago

suikan4github commented 4 years ago

Describe the bug The sample peripheral name is camel form in the platform_defs.hpp.

    UartStrategy * uart;            ///< UART under test
    SpiMasterStrategy * spiMaster;  ///< SPI Master under test
    SpiSlaveStrategy * spiSlave;    ///< SPI Slave under test
    I2cSlaveStrategy * i2cSlave;    ///< I2C Slave under test

This should be changed to follow the google style

Expected behavior

    UartStrategy * uart;             ///< UART under test
    SpiMasterStrategy * spi_master;  ///< SPI Master under test
    SpiSlaveStrategy * spi_slave;    ///< SPI Slave under test
    I2cSlaveStrategy * i2c_slave;    ///< I2C Slave under test
suikan4github commented 4 years ago

Merged to develop. Ready to release.