]> granicus.if.org Git - esp-idf/commit
components/log: add implementation, update a few components to use it
authorIvan Grokhotkov <ivan@espressif.com>
Wed, 14 Sep 2016 16:53:33 +0000 (00:53 +0800)
committerIvan Grokhotkov <ivan@espressif.com>
Wed, 14 Sep 2016 16:53:33 +0000 (00:53 +0800)
commit716cec5ded2fe561d4c2bf46f8782991c6502b72
treecb5913c28d2e9f64f4a4731a37e4eacda5630c02
parent2fc60ba9381f88d02c3416ba7e6c70ed1a8f2944
components/log: add implementation, update a few components to use it

This also removes logging implementation from bootloader and replaces it
with the one provided by the log component. Some occurrences of printf
and ets_printf have been changed to ESP_LOGx APIs.
13 files changed:
components/bootloader/Kconfig.projbuild
components/bootloader/src/Makefile
components/bootloader/src/main/bootloader_log.h [deleted file]
components/bootloader/src/main/bootloader_start.c
components/bootloader/src/main/component.mk
components/bootloader/src/main/flash_encrypt.c
components/bootloader/src/main/secure_boot.c
components/esp32/cpu_start.c
components/esp32/heap_alloc_caps.c
components/log/Kconfig [new file with mode: 0644]
components/log/component.mk [new file with mode: 0755]
components/log/include/esp_log.h
components/log/log.c [new file with mode: 0644]