Rename variable in SPI class not compliant with style guide (#1330)

Also rename some wpilibj SPI class variables to match wpilibc and
better communicate their intent.
This commit is contained in:
Tyler Veness
2018-09-23 18:26:02 -07:00
committed by Peter Johnson
parent 5c6b78ea2b
commit b505bbefd1
3 changed files with 30 additions and 30 deletions

View File

@@ -318,7 +318,7 @@ class SPI : public ErrorBase {
HAL_SPIPort m_port;
bool m_msbFirst = false; // Default little-endian
bool m_sampleOnTrailing = false; // Default data updated on falling edge
bool m_clk_idle_high = false; // Default clock active high
bool m_clockIdleHigh = false; // Default clock active high
private:
void Init();