esp32: add some implementation comments

This commit is contained in:
Ivan Grokhotkov
2016-11-23 12:55:49 +08:00
parent df6edb50e9
commit 50f178c1ce
3 changed files with 32 additions and 0 deletions

View File

@@ -12,6 +12,18 @@
// See the License for the specific language governing permissions and
// limitations under the License.
/**
* @file lib_printf.c
*
* This file contains library-specific printf functions
* used by WiFi libraries in the `lib` directory.
* These function are used to catch any output which gets printed
* by libraries, and redirect it to ESP_LOG macros.
*
* Eventually WiFi libraries will use ESP_LOG functions internally
* and these definitions will be removed.
*/
#include <stdio.h>
#include <stdlib.h>
#include "esp_log.h"