linting errors
This commit is contained in:
parent
b3c17c8ee8
commit
ece131995a
@ -75,14 +75,14 @@ public:
|
||||
void setPower(bool power);
|
||||
|
||||
RectifierParameters_t * get();
|
||||
unsigned long getLastUpdate();
|
||||
uint32_t getLastUpdate();
|
||||
|
||||
private:
|
||||
void sendRequest();
|
||||
void onReceive(uint8_t* frame, uint8_t len);
|
||||
|
||||
unsigned long previousMillis;
|
||||
unsigned long lastUpdate;
|
||||
uint32_t previousMillis;
|
||||
uint32_t lastUpdate;
|
||||
RectifierParameters_t _rp;
|
||||
|
||||
SPIClass *spi;
|
||||
|
||||
@ -43,7 +43,7 @@ RectifierParameters_t * HuaweiCanClass::get()
|
||||
return &_rp;
|
||||
}
|
||||
|
||||
unsigned long HuaweiCanClass::getLastUpdate()
|
||||
uint32_t HuaweiCanClass::getLastUpdate()
|
||||
{
|
||||
return lastUpdate;
|
||||
}
|
||||
@ -142,7 +142,7 @@ void HuaweiCanClass::onReceive(uint8_t* frame, uint8_t len)
|
||||
void HuaweiCanClass::loop()
|
||||
{
|
||||
|
||||
long unsigned int rxId;
|
||||
INT32U rxId;
|
||||
unsigned char len = 0;
|
||||
unsigned char rxBuf[8];
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user