docs: Improve/clarify partition, OTA & SPI flash docs

Related to #313 https://github.com/espressif/esp-idf/issues/313
This commit is contained in:
Angus Gratton
2017-02-17 12:43:55 +11:00
parent 4494e15ecf
commit 1f3a2e900c
11 changed files with 340 additions and 187 deletions

View File

@@ -33,7 +33,7 @@
*
* @return true if flash encryption is enabled.
*/
static inline IRAM_ATTR bool esp_flash_encryption_enabled(void) {
static inline /** @cond */ IRAM_ATTR /** @endcond */ bool esp_flash_encryption_enabled(void) {
uint32_t flash_crypt_cnt = REG_GET_FIELD(EFUSE_BLK0_RDATA0_REG, EFUSE_RD_FLASH_CRYPT_CNT);
/* __builtin_parity is in flash, so we calculate parity inline */
bool enabled = false;