fix debug path
This commit is contained in:
parent
8ad2cab74e
commit
6554073867
4 changed files with 6 additions and 5 deletions
|
|
@ -24,10 +24,9 @@
|
|||
|
||||
#include "Arduino.h"
|
||||
#include "utility/spi_drv.h"
|
||||
|
||||
extern "C" {
|
||||
#include "utility/wl_types.h"
|
||||
#include "utility/debug.h"
|
||||
#include "debug.h"
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -54,7 +53,7 @@ void ServerDrv::startServer(uint16_t port, uint8_t sock, uint8_t protMode)
|
|||
uint8_t _dataLen = 0;
|
||||
if (!SpiDrv::waitResponseCmd(START_SERVER_TCP_CMD, PARAM_NUMS_1, &_data, &_dataLen))
|
||||
{
|
||||
WARN("error waitResponse");
|
||||
WARN("No response to server start");
|
||||
}
|
||||
SpiDrv::spiSlaveDeselect();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -23,6 +23,7 @@
|
|||
|
||||
#include <inttypes.h>
|
||||
#include "utility/wifi_spi.h"
|
||||
#include "debug.h"
|
||||
|
||||
typedef enum eProtMode {TCP_MODE, UDP_MODE, TLS_MODE, UDP_MULTICAST_MODE}tProtMode;
|
||||
|
||||
|
|
|
|||
|
|
@ -25,6 +25,7 @@
|
|||
#include <Arduino.h>
|
||||
#include <SPI.h>
|
||||
#include "utility/wifi_spi.h"
|
||||
#include "debug.h"
|
||||
|
||||
#define SPI_START_CMD_DELAY 10
|
||||
|
||||
|
|
|
|||
|
|
@ -26,12 +26,12 @@
|
|||
#include "utility/spi_drv.h"
|
||||
#include "utility/wifi_drv.h"
|
||||
|
||||
#define _DEBUG_
|
||||
//#define _DEBUG_
|
||||
|
||||
extern "C" {
|
||||
#include "utility/wifi_spi.h"
|
||||
#include "utility/wl_types.h"
|
||||
#include "utility/debug.h"
|
||||
#include "debug.h"
|
||||
}
|
||||
|
||||
// Array of data to cache the information related to the networks discovered
|
||||
|
|
|
|||
Loading…
Reference in a new issue