remove local logger component

Signed-off-by: Peter Siegmund <developer@mars3142.org>
This commit is contained in:
2024-08-11 23:40:55 +02:00
parent c4dcfe6efe
commit 9fe40e1c77
7 changed files with 2 additions and 33 deletions

View File

@@ -1,5 +1,4 @@
idf_component_register(SRCS "main.c" "osr_ble.c"
INCLUDE_DIRS "."
PRIV_REQUIRES
nvs_flash
logger)
nvs_flash)

View File

@@ -6,8 +6,6 @@
#include "osr_ble.h"
#include "sdkconfig.h"
#include "logger.h"
#define TAG "app"
void esp32_info() {
@@ -41,7 +39,7 @@ void esp32_info() {
void setup() {
osr_ble_init();
log_message("Hello World!");
ESP_LOGI(TAG, "Setup done!");
}
void loop(void* args) {