docs: fix Doxygen warnings, fail CI build on Doxygen warnings

This commit is contained in:
Ivan Grokhotkov
2016-11-16 01:35:09 +08:00
parent ca202cbb46
commit 13d4734399
11 changed files with 444 additions and 387 deletions

View File

@@ -62,13 +62,13 @@ esp_err_t spi_flash_erase_sector(size_t sector);
/**
* @brief Erase a range of flash sectors
*
* @param uint32_t start_address : Address where erase operation has to start.
* @param start_address Address where erase operation has to start.
* Must be 4kB-aligned
* @param uint32_t size : Size of erased range, in bytes. Must be divisible by 4kB.
* @param size Size of erased range, in bytes. Must be divisible by 4kB.
*
* @return esp_err_t
*/
esp_err_t spi_flash_erase_range(size_t start_addr, size_t size);
esp_err_t spi_flash_erase_range(size_t start_address, size_t size);
/**