esp_system: Make interrupt WDT private API

This commit makes the interrupt WDT API private. To use the API,
IDF components should now '#include "esp_private/esp_int_wdt.h"'
This commit is contained in:
Darian Leung
2022-05-05 15:38:49 +08:00
parent b531745a11
commit 7dc6fd9ff6
6 changed files with 11 additions and 18 deletions

View File

@@ -60,6 +60,7 @@ ESP System
----------
- The header files ``esp_random.h``, ``esp_mac.h`` and ``esp_chip_info.h``, which were all previously indirectly included via the header file ``esp_system.h``, must now be included directly. These headers are removed from ``esp_system.h``.
- The header file ``eh_frame_parser.h`` must now be included with a ``esp_private`` prefix like ``#include "esp_private/eh_frame_parser.h"``.
- The header file ``esp_int_wdt.h`` must now be included with a ``esp_private`` prefix like ``#include "esp_private/esp_int_wdt.h"``.
SOC dependency
--------------