Move USE_US_TIMER to esp8266.h and remove redundant inclusions of osapi.h

pull/138/head
Alastair D'Silva 9 years ago
parent 19c56c80c8
commit f4ee1dbed4
  1. 3
      esp-link/cgiflash.c
  2. 3
      esp-link/cgioptiboot.c
  3. 1
      esp-link/cgiservices.c
  4. 2
      esp-link/cgiwifi.c
  5. 1
      esp-link/config.c
  6. 2
      esp-link/main.c
  7. 2
      esp-link/status.c
  8. 2
      include/esp8266.h
  9. 2
      mqtt/mqtt.c
  10. 2
      serial/serled.c
  11. 2
      serial/uart.c
  12. 2
      syslog/syslog.c

@ -13,10 +13,7 @@ Some flash handling cgi routines. Used for reading the existing flash and updati
* ---------------------------------------------------------------------------- * ----------------------------------------------------------------------------
*/ */
#define USE_US_TIMER
#include <esp8266.h> #include <esp8266.h>
#include <osapi.h>
#include "cgi.h" #include "cgi.h"
#include "cgiflash.h" #include "cgiflash.h"

@ -1,9 +1,6 @@
// Copyright (c) 2015 by Thorsten von Eicken, see LICENSE.txt in the esp-link repo // Copyright (c) 2015 by Thorsten von Eicken, see LICENSE.txt in the esp-link repo
#define USE_US_TIMER
#include <esp8266.h> #include <esp8266.h>
#include <osapi.h>
#include "cgi.h" #include "cgi.h"
#include "cgioptiboot.h" #include "cgioptiboot.h"
#include "config.h" #include "config.h"

@ -1,4 +1,3 @@
#define USE_US_TIMER
#include <esp8266.h> #include <esp8266.h>
#include "cgiwifi.h" #include "cgiwifi.h"

@ -13,8 +13,6 @@ Cgi/template routines for the /wifi url.
* ---------------------------------------------------------------------------- * ----------------------------------------------------------------------------
*/ */
#define USE_US_TIMER
#include <esp8266.h> #include <esp8266.h>
#include "cgiwifi.h" #include "cgiwifi.h"
#include "cgi.h" #include "cgi.h"

@ -2,7 +2,6 @@
/* Configuration stored in flash */ /* Configuration stored in flash */
#include <esp8266.h> #include <esp8266.h>
#include <osapi.h>
#include "config.h" #include "config.h"
#include "espfs.h" #include "espfs.h"
#include "crc16.h" #include "crc16.h"

@ -9,8 +9,6 @@
* ---------------------------------------------------------------------------- * ----------------------------------------------------------------------------
*/ */
#define USE_US_TIMER
#include <esp8266.h> #include <esp8266.h>
#include "httpd.h" #include "httpd.h"
#include "httpdespfs.h" #include "httpdespfs.h"

@ -1,7 +1,5 @@
// Copyright 2015 by Thorsten von Eicken, see LICENSE.txt // Copyright 2015 by Thorsten von Eicken, see LICENSE.txt
#define USE_US_TIMER
#include <esp8266.h> #include <esp8266.h>
#include "config.h" #include "config.h"
#include "serled.h" #include "serled.h"

@ -14,6 +14,8 @@
#include <ets_sys.h> #include <ets_sys.h>
#include <gpio.h> #include <gpio.h>
#include <mem.h> #include <mem.h>
#define USE_US_TIMER
#include <osapi.h> #include <osapi.h>
#include <upgrade.h> #include <upgrade.h>

@ -37,8 +37,6 @@
// Allow messages that don't require ACK to be sent even when pending_buffer is != NULL // Allow messages that don't require ACK to be sent even when pending_buffer is != NULL
// Set dup flag in retransmissions // Set dup flag in retransmissions
#define USE_US_TIMER
#include <esp8266.h> #include <esp8266.h>
#include "pktbuf.h" #include "pktbuf.h"
#include "mqtt.h" #include "mqtt.h"

@ -1,7 +1,5 @@
// Copyright 2015 by Thorsten von Eicken, see LICENSE.txt // Copyright 2015 by Thorsten von Eicken, see LICENSE.txt
#define USE_US_TIMER
#include <esp8266.h> #include <esp8266.h>
#include <config.h> #include <config.h>
#include <serled.h> #include <serled.h>

@ -17,11 +17,9 @@
* ---------------------------------------------------------------------------- * ----------------------------------------------------------------------------
* Heavily modified and enhanced by Thorsten von Eicken in 2015 * Heavily modified and enhanced by Thorsten von Eicken in 2015
*/ */
#define USE_US_TIMER
#include "esp8266.h" #include "esp8266.h"
#include "task.h" #include "task.h"
#include "uart.h" #include "uart.h"
#include <osapi.h>
#ifdef UART_DBG #ifdef UART_DBG
#define DBG_UART(format, ...) os_printf(format, ## __VA_ARGS__) #define DBG_UART(format, ...) os_printf(format, ## __VA_ARGS__)

@ -8,8 +8,6 @@
* *
*/ */
#define USE_US_TIMER
#include <esp8266.h> #include <esp8266.h>
#include "config.h" #include "config.h"
#include "syslog.h" #include "syslog.h"

Loading…
Cancel
Save