Removed unused includes

This commit is contained in:
nopnop2002 2022-11-19 08:07:43 +09:00
parent 9a7e992cff
commit b8e29ade91
3 changed files with 2 additions and 5 deletions

View File

@ -6,7 +6,6 @@
#include "esp_log.h"
#include "ssd1306.h"
#include "font8x8_basic.h"
/*
You have to set this config value with menuconfig
@ -235,7 +234,7 @@ void app_main(void)
ESP_LOGE(TAG, "malloc failed");
while(1) { vTaskDelay(1); }
}
uint8_t *segmentImage = (uint8_t *)malloc(IMAGES*8*32); // 10 image 8 page 32pixel
uint8_t *segmentImage = (uint8_t *)malloc(IMAGES*8*32); // 10 image 8 page 32 pixel
if (segmentImage == NULL) {
ESP_LOGE(TAG, "malloc failed");
while(1) { vTaskDelay(1); }

View File

@ -6,7 +6,6 @@
#include "esp_log.h"
#include "ssd1306.h"
#include "font8x8_basic.h"
/*
You have to set this config value with menuconfig
@ -226,7 +225,7 @@ uint8_t segmentDisplay[NUM_IMAGES][BITMAPS] = {
}
};
// H E L L O SP W O R L D
// H E L L O SP W O R L D
int imageTable[] = {0, 1, 2, 2, 3, -1, 4, 3, 5, 2, 6};

View File

@ -6,7 +6,6 @@
#include "esp_log.h"
#include "ssd1306.h"
#include "font8x8_basic.h"
/*
You have to set this config value with menuconfig