[ESP8266] Fixes from cppchekc scan
This commit is contained in:
parent
e3fb895969
commit
7a8cde1d38
2 changed files with 9 additions and 9 deletions
|
@ -83,9 +83,9 @@ int16_t ESP8266::join(const char* ssid, const char* password) {
|
|||
|
||||
int16_t ESP8266::openTransportConnection(const char* host, const char* protocol, uint16_t port, uint16_t tcpKeepAlive) {
|
||||
char portStr[6];
|
||||
sprintf(portStr, "%d", port);
|
||||
sprintf(portStr, "%u", port);
|
||||
char tcpKeepAliveStr[6];
|
||||
sprintf(tcpKeepAliveStr, "%d", tcpKeepAlive);
|
||||
sprintf(tcpKeepAliveStr, "%u", tcpKeepAlive);
|
||||
|
||||
// build AT command
|
||||
const char* atStr = "AT+CIPSTART=\"";
|
||||
|
@ -132,7 +132,7 @@ int16_t ESP8266::closeTransportConnection() {
|
|||
int16_t ESP8266::send(const char* data) {
|
||||
// build AT command
|
||||
char lenStr[12];
|
||||
sprintf(lenStr, "%d", strlen(data));
|
||||
sprintf(lenStr, "%u", (uint16_t)strlen(data));
|
||||
const char* atStr = "AT+CIPSEND=";
|
||||
#ifdef RADIOLIB_STATIC_ONLY
|
||||
char cmd[RADIOLIB_STATIC_ARRAY_SIZE];
|
||||
|
|
|
@ -48,12 +48,12 @@ class ESP8266: public TransportLayer {
|
|||
int16_t join(const char* ssid, const char* password);
|
||||
|
||||
// transport layer methods (implementations of purely virtual methods in TransportLayer class)
|
||||
int16_t openTransportConnection(const char* host, const char* protocol, uint16_t port, uint16_t tcpKeepAlive = 0);
|
||||
int16_t closeTransportConnection();
|
||||
int16_t send(const char* data);
|
||||
int16_t send(uint8_t* data, uint32_t len);
|
||||
size_t receive(uint8_t* data, size_t len, uint32_t timeout = 10000);
|
||||
size_t getNumBytes(uint32_t timeout = 10000, size_t minBytes = 10);
|
||||
int16_t openTransportConnection(const char* host, const char* protocol, uint16_t port, uint16_t tcpKeepAlive = 0) override;
|
||||
int16_t closeTransportConnection() override;
|
||||
int16_t send(const char* data) override;
|
||||
int16_t send(uint8_t* data, uint32_t len) override;
|
||||
size_t receive(uint8_t* data, size_t len, uint32_t timeout = 10000) override;
|
||||
size_t getNumBytes(uint32_t timeout = 10000, size_t minBytes = 10) override;
|
||||
|
||||
#ifndef RADIOLIB_GODMODE
|
||||
private:
|
||||
|
|
Loading…
Add table
Reference in a new issue