/* esp/registers.h * * ESP8266 register addresses and bitmasks. * * Not compatible with ESP SDK register access code. * * Based on register map documentation: * https://github.com/esp8266/esp8266-wiki/wiki/Memory-Map * * Part of esp-open-rtos * Copyright (C) 2015 Superhouse Automation Pty Ltd * BSD Licensed as described in the file LICENSE */ #ifndef _ESP_REGISTERS #define _ESP_REGISTERS #include "common_macros.h" #include "esp/types.h" #include "esp/uart_regs.h" #include "esp/spi_regs.h" #include "esp/iomux_regs.h" #include "esp/gpio_regs.h" #include "esp/timer_regs.h" #include "esp/wdt_regs.h" #include "esp/rtcmem_regs.h" #include "esp/dport_regs.h" /* Register base addresses The base addresses below are ones which haven't been migrated to the new register header style yet. For any commented out lines, see the matching xxx_regs.h header file referenced above. If you want to access registers that aren't mapped to the new register header system yet, you can either use the deprecated Espressif SDK headers (in include/espressif), or you can create a new register header file and contribute it to the project (hooray!) */ #define MMIO_BASE 0x60000000 //#define DPORT_BASE 0x3ff00000 //#define UART0_BASE (MMIO_BASE + 0) //#define SPI1_BASE (MMIO_BASE + 0x0100) //#define SPI_BASE (MMIO_BASE + 0x0200) //#define GPIO0_BASE (MMIO_BASE + 0x0300) //#define TIMER_BASE (MMIO_BASE + 0x0600) #define RTC_BASE (MMIO_BASE + 0x0700) //#define IOMUX_BASE (MMIO_BASE + 0x0800) //#define WDT_BASE (MMIO_BASE + 0x0900) #define I2C_BASE (MMIO_BASE + 0x0d00) //#define UART1_BASE (MMIO_BASE + 0x0F00) //#define RTCB_BASE (MMIO_BASE + 0x1000) //#define RTCS_BASE (MMIO_BASE + 0x1100) //#define RTCU_BASE (MMIO_BASE + 0x1200) #endif