esp-open-rtos/include/espressif/esp_common.h
Angus Gratton aaef4b0644 Replace all binary SDK libc functions with newlib
Adds a new build step to remove the SDK object files listed in
<libname>.remove.

Closes #1.
2015-06-16 14:21:24 +10:00

23 lines
368 B
C

/*
* Copyright (C) 2013 -2014 Espressif System
*
*/
#ifndef __ESP_COMMON_H__
#define __ESP_COMMON_H__
#include <stddef.h>
#include <stdint.h>
#include <stdbool.h>
#include "esp_misc.h"
#include "esp_wifi.h"
#include "esp_softap.h"
#include "esp_sta.h"
#include "esp_system.h"
#include "esp_timer.h"
#include "esp8266/esp8266.h"
#include "spi_flash.h"
#endif