13 lines
196 B
C
13 lines
196 B
C
|
#ifndef LOGGER_H
|
||
|
#define LOGGER_H
|
||
|
|
||
|
#include "esp_log.h"
|
||
|
#include "esp_system.h"
|
||
|
#include "esp_spi_flash.h"
|
||
|
|
||
|
void print_logo();
|
||
|
void print_esp32_information();
|
||
|
void setup_all_log_levels();
|
||
|
|
||
|
#endif
|