2015-06-05 01:46:25 +00:00
|
|
|
/* esp8266.h
|
|
|
|
*
|
|
|
|
* ESP-specific SoC-level addresses, macros, etc.
|
|
|
|
*
|
|
|
|
* Part of esp-open-rtos
|
|
|
|
* Copyright (C) 2015 Superhouse Automation Pty Ltd
|
|
|
|
* BSD Licensed as described in the file LICENSE
|
|
|
|
*/
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#ifndef _ESP8266_H
|
|
|
|
#define _ESP8266_H
|
|
|
|
|
|
|
|
#include "common_macros.h"
|
|
|
|
#include "esp/registers.h"
|
2015-06-08 08:00:44 +00:00
|
|
|
#include "esp/cpu.h"
|
2015-06-05 01:46:25 +00:00
|
|
|
#include "esp/iomux.h"
|
|
|
|
#include "esp/gpio.h"
|
|
|
|
|
|
|
|
#endif
|