Fix bug where sartup randomly crasehd several times because spi config was initialized with random data -> init with 0 Fix bug where length now was not truncated resulting in flickerin Fix bug in welcome message where hello string contained random data
26 lines
521 B
C++
26 lines
521 B
C++
#pragma once
|
|
extern "C"
|
|
{
|
|
#include <stdio.h>
|
|
#include <freertos/FreeRTOS.h>
|
|
#include <freertos/task.h>
|
|
#include <esp_idf_version.h>
|
|
#include "freertos/queue.h"
|
|
#include "esp_system.h"
|
|
#include "esp_log.h"
|
|
#include "driver/adc.h"
|
|
|
|
#include <max7219.h>
|
|
#include "rotary_encoder.h"
|
|
}
|
|
#include <cstring>
|
|
|
|
|
|
#include "config.hpp"
|
|
|
|
void display_init();
|
|
void display_ShowWelcomeMsg();
|
|
void display1_showString(const char * buf);
|
|
void display2_showString(const char * buf);
|
|
void display_showString(uint8_t pos, const char * buf);
|