Need these to compile

pull/289/head
dannybackx 8 years ago
parent fa51c6a13d
commit 62da7e77ec
  1. 1
      esp-link/cgioptiboot.c
  2. 2
      esp-link/cgiwifi.c
  3. 2
      esp-link/mqtt_client.c

@ -9,6 +9,7 @@
#include "stk500.h"
#include "serbridge.h"
#include "serled.h"
#include "mqtt_cmd.h"
#define INIT_DELAY 150 // wait this many millisecs before sending anything
#define BAUD_INTERVAL 600 // interval after which we change baud rate

@ -1011,7 +1011,7 @@ void ICACHE_FLASH_ATTR cmdWifiQuerySSID(CmdPacket *cmd) {
uint32_t callback = req.cmd->value;
struct station_config conf;
bool res = wifi_station_get_config(&conf);
// bool res = wifi_station_get_config(&conf);
os_printf("QuerySSID : %s\n", conf.ssid);

@ -1,10 +1,10 @@
#ifdef MQTT
#include <esp8266.h>
#include "cmd/cmd.h"
#include "cgiwifi.h"
#include "config.h"
#include "mqtt.h"
#include "cmd/cmd.h"
#ifdef MQTTCLIENT_DBG
#define DBG(format, ...) do { os_printf(format, ## __VA_ARGS__); } while(0)

Loading…
Cancel
Save