mirror of
https://github.com/esp8266/Arduino.git
synced 2025-04-21 10:26:06 +03:00
* polledTimeout: add option to use CPU count instead of millis() * use more "using" alias * more c++/clear code, using typename (thanks @devyte) * rename class name to include unit, introduce timeMax() and check it with assert() * remove useless defines * improve api readability, add micro-second unit * update example * mock: emulate getCycleCount, add/fix polledTimeout CI test * + nano-seconds, assert -> message, comments, host test * allow 0 for timeout (enables immediate timeout, fix division by 0) * typo, set member instead of local variable * unify error message * slight change on checkExpired() allows "never expired" also removed printed message, add YieldAndDelay, simplify calculations * remove traces of debug.h/cpp in this PR * include missing <limits> header * back to original expired test, introduce boolean _neverExpires, fix reset(), getTimeout() is invalid * fix expiredOneShot with _timeout==0 check * reenable getTimeout() * expose checkExpired with unit conversion * fix timing comments, move critical code to iram * add member ::neverExpires and use it where relevant * improve clarity * remove exposed checkExpired(), adapt LEAmDNS with equivalent * add API ::resetToNeverExpires(), use it in LEAmDNS * remove offending constness from ::flagged() LEAmDNS (due do API fix in PolledTimeout) * simplify "Fast" base classes * minor variable rename * Fix examples * compliance with good c++ manners * minor changes for consistency * add missing const * expired() and bool() moved to iram * constexpr compensation computing * add/update comments * move neverExpires and alwaysExpired
221 lines
7.8 KiB
C++
221 lines
7.8 KiB
C++
/*
|
|
Esp.h - ESP8266-specific APIs
|
|
Copyright (c) 2015 Ivan Grokhotkov. All rights reserved.
|
|
This file is part of the esp8266 core for Arduino environment.
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with this library; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#ifndef ESP_H
|
|
#define ESP_H
|
|
|
|
#include <Arduino.h>
|
|
|
|
#ifndef PUYA_SUPPORT
|
|
#define PUYA_SUPPORT 0
|
|
#endif
|
|
#ifndef PUYA_BUFFER_SIZE
|
|
// Good alternative for buffer size is: SPI_FLASH_SEC_SIZE (= 4k)
|
|
// Always use a multiple of flash page size (256 bytes)
|
|
#define PUYA_BUFFER_SIZE 256
|
|
#endif
|
|
|
|
// Vendor IDs taken from Flashrom project
|
|
// https://review.coreboot.org/cgit/flashrom.git/tree/flashchips.h?h=1.0.x
|
|
typedef enum {
|
|
SPI_FLASH_VENDOR_ALLIANCE = 0x52, /* Alliance Semiconductor */
|
|
SPI_FLASH_VENDOR_AMD = 0x01, /* AMD */
|
|
SPI_FLASH_VENDOR_AMIC = 0x37, /* AMIC */
|
|
SPI_FLASH_VENDOR_ATMEL = 0x1F, /* Atmel (now used by Adesto) */
|
|
SPI_FLASH_VENDOR_BRIGHT = 0xAD, /* Bright Microelectronics */
|
|
SPI_FLASH_VENDOR_CATALYST = 0x31, /* Catalyst */
|
|
SPI_FLASH_VENDOR_EON = 0x1C, /* EON Silicon Devices, missing 0x7F prefix */
|
|
SPI_FLASH_VENDOR_ESMT = 0x8C, /* Elite Semiconductor Memory Technology (ESMT) / EFST Elite Flash Storage */
|
|
SPI_FLASH_VENDOR_EXCEL = 0x4A, /* ESI, missing 0x7F prefix */
|
|
SPI_FLASH_VENDOR_FIDELIX = 0xF8, /* Fidelix */
|
|
SPI_FLASH_VENDOR_FUJITSU = 0x04, /* Fujitsu */
|
|
SPI_FLASH_VENDOR_GIGADEVICE = 0xC8, /* GigaDevice */
|
|
SPI_FLASH_VENDOR_HYUNDAI = 0xAD, /* Hyundai */
|
|
SPI_FLASH_VENDOR_INTEL = 0x89, /* Intel */
|
|
SPI_FLASH_VENDOR_ISSI = 0xD5, /* ISSI Integrated Silicon Solutions, see also PMC. */
|
|
SPI_FLASH_VENDOR_MACRONIX = 0xC2, /* Macronix (MX) */
|
|
SPI_FLASH_VENDOR_NANTRONICS = 0xD5, /* Nantronics, missing prefix */
|
|
SPI_FLASH_VENDOR_PMC = 0x9D, /* PMC, missing 0x7F prefix */
|
|
SPI_FLASH_VENDOR_PUYA = 0x85, /* Puya semiconductor (shanghai) co. ltd */
|
|
SPI_FLASH_VENDOR_SANYO = 0x62, /* Sanyo */
|
|
SPI_FLASH_VENDOR_SHARP = 0xB0, /* Sharp */
|
|
SPI_FLASH_VENDOR_SPANSION = 0x01, /* Spansion, same ID as AMD */
|
|
SPI_FLASH_VENDOR_SST = 0xBF, /* SST */
|
|
SPI_FLASH_VENDOR_ST = 0x20, /* ST / SGS/Thomson / Numonyx (later acquired by Micron) */
|
|
SPI_FLASH_VENDOR_SYNCMOS_MVC = 0x40, /* SyncMOS (SM) and Mosel Vitelic Corporation (MVC) */
|
|
SPI_FLASH_VENDOR_TENX = 0x5E, /* Tenx Technologies */
|
|
SPI_FLASH_VENDOR_TI = 0x97, /* Texas Instruments */
|
|
SPI_FLASH_VENDOR_TI_OLD = 0x01, /* TI chips from last century */
|
|
SPI_FLASH_VENDOR_WINBOND = 0xDA, /* Winbond */
|
|
SPI_FLASH_VENDOR_WINBOND_NEX = 0xEF, /* Winbond (ex Nexcom) serial flashes */
|
|
|
|
SPI_FLASH_VENDOR_UNKNOWN = 0xFF
|
|
} SPI_FLASH_VENDOR_t;
|
|
|
|
/**
|
|
* AVR macros for WDT managment
|
|
*/
|
|
typedef enum {
|
|
WDTO_0MS = 0, //!< WDTO_0MS
|
|
WDTO_15MS = 15, //!< WDTO_15MS
|
|
WDTO_30MS = 30, //!< WDTO_30MS
|
|
WDTO_60MS = 60, //!< WDTO_60MS
|
|
WDTO_120MS = 120, //!< WDTO_120MS
|
|
WDTO_250MS = 250, //!< WDTO_250MS
|
|
WDTO_500MS = 500, //!< WDTO_500MS
|
|
WDTO_1S = 1000,//!< WDTO_1S
|
|
WDTO_2S = 2000,//!< WDTO_2S
|
|
WDTO_4S = 4000,//!< WDTO_4S
|
|
WDTO_8S = 8000 //!< WDTO_8S
|
|
} WDTO_t;
|
|
|
|
|
|
#define wdt_enable(time) ESP.wdtEnable(time)
|
|
#define wdt_disable() ESP.wdtDisable()
|
|
#define wdt_reset() ESP.wdtFeed()
|
|
|
|
#define cli() ets_intr_lock() // IRQ Disable
|
|
#define sei() ets_intr_unlock() // IRQ Enable
|
|
|
|
enum RFMode {
|
|
RF_DEFAULT = 0, // RF_CAL or not after deep-sleep wake up, depends on init data byte 108.
|
|
RF_CAL = 1, // RF_CAL after deep-sleep wake up, there will be large current.
|
|
RF_NO_CAL = 2, // no RF_CAL after deep-sleep wake up, there will only be small current.
|
|
RF_DISABLED = 4 // disable RF after deep-sleep wake up, just like modem sleep, there will be the smallest current.
|
|
};
|
|
|
|
#define RF_MODE(mode) int __get_rf_mode() { return mode; }
|
|
#define RF_PRE_INIT() void __run_user_rf_pre_init()
|
|
|
|
// compatibility definitions
|
|
#define WakeMode RFMode
|
|
#define WAKE_RF_DEFAULT RF_DEFAULT
|
|
#define WAKE_RFCAL RF_CAL
|
|
#define WAKE_NO_RFCAL RF_NO_CAL
|
|
#define WAKE_RF_DISABLED RF_DISABLED
|
|
|
|
enum ADCMode {
|
|
ADC_TOUT = 33,
|
|
ADC_TOUT_3V3 = 33,
|
|
ADC_VCC = 255,
|
|
ADC_VDD = 255
|
|
};
|
|
|
|
#define ADC_MODE(mode) int __get_adc_mode(void) { return (int) (mode); }
|
|
|
|
typedef enum {
|
|
FM_QIO = 0x00,
|
|
FM_QOUT = 0x01,
|
|
FM_DIO = 0x02,
|
|
FM_DOUT = 0x03,
|
|
FM_UNKNOWN = 0xff
|
|
} FlashMode_t;
|
|
|
|
class EspClass {
|
|
public:
|
|
// TODO: figure out how to set WDT timeout
|
|
void wdtEnable(uint32_t timeout_ms = 0);
|
|
// note: setting the timeout value is not implemented at the moment
|
|
void wdtEnable(WDTO_t timeout_ms = WDTO_0MS);
|
|
|
|
void wdtDisable();
|
|
void wdtFeed();
|
|
|
|
void deepSleep(uint64_t time_us, RFMode mode = RF_DEFAULT);
|
|
void deepSleepInstant(uint64_t time_us, RFMode mode = RF_DEFAULT);
|
|
uint64_t deepSleepMax();
|
|
|
|
bool rtcUserMemoryRead(uint32_t offset, uint32_t *data, size_t size);
|
|
bool rtcUserMemoryWrite(uint32_t offset, uint32_t *data, size_t size);
|
|
|
|
void reset();
|
|
void restart();
|
|
|
|
uint16_t getVcc();
|
|
uint32_t getChipId();
|
|
|
|
uint32_t getFreeHeap();
|
|
uint16_t getMaxFreeBlockSize();
|
|
uint8_t getHeapFragmentation(); // in %
|
|
void getHeapStats(uint32_t* free = nullptr, uint16_t* max = nullptr, uint8_t* frag = nullptr);
|
|
|
|
uint32_t getFreeContStack();
|
|
void resetFreeContStack();
|
|
|
|
const char * getSdkVersion();
|
|
String getCoreVersion();
|
|
String getFullVersion();
|
|
|
|
uint8_t getBootVersion();
|
|
uint8_t getBootMode();
|
|
|
|
uint8_t getCpuFreqMHz();
|
|
|
|
uint32_t getFlashChipId();
|
|
uint8_t getFlashChipVendorId();
|
|
|
|
//gets the actual chip size based on the flash id
|
|
uint32_t getFlashChipRealSize();
|
|
//gets the size of the flash as set by the compiler
|
|
uint32_t getFlashChipSize();
|
|
uint32_t getFlashChipSpeed();
|
|
FlashMode_t getFlashChipMode();
|
|
uint32_t getFlashChipSizeByChipId();
|
|
|
|
uint32_t magicFlashChipSize(uint8_t byte);
|
|
uint32_t magicFlashChipSpeed(uint8_t byte);
|
|
FlashMode_t magicFlashChipMode(uint8_t byte);
|
|
|
|
bool checkFlashConfig(bool needsEquals = false);
|
|
|
|
bool flashEraseSector(uint32_t sector);
|
|
bool flashWrite(uint32_t offset, uint32_t *data, size_t size);
|
|
bool flashRead(uint32_t offset, uint32_t *data, size_t size);
|
|
|
|
uint32_t getSketchSize();
|
|
String getSketchMD5();
|
|
uint32_t getFreeSketchSpace();
|
|
bool updateSketch(Stream& in, uint32_t size, bool restartOnFail = false, bool restartOnSuccess = true);
|
|
|
|
String getResetReason();
|
|
String getResetInfo();
|
|
struct rst_info * getResetInfoPtr();
|
|
|
|
bool eraseConfig();
|
|
|
|
#ifndef CORE_MOCK
|
|
inline
|
|
#endif
|
|
uint32_t getCycleCount();
|
|
};
|
|
|
|
#ifndef CORE_MOCK
|
|
uint32_t EspClass::getCycleCount()
|
|
{
|
|
uint32_t ccount;
|
|
__asm__ __volatile__("esync; rsr %0,ccount":"=a" (ccount));
|
|
return ccount;
|
|
}
|
|
#endif
|
|
|
|
extern EspClass ESP;
|
|
|
|
#endif //ESP_H
|