Added support for SD Card browsing. Added missing CMakeLists.txt.
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
set(COMPONENT_PRIV_INCLUDEDIRS "." "../")
|
||||
set(COMPONENT_SRCS
|
||||
"comic24.c"
|
||||
"DefaultFont.c"
|
||||
"DejaVuSans18.c"
|
||||
"DejaVuSans24.c"
|
||||
"dejavuX.c"
|
||||
"EPD.c"
|
||||
"EPDspi.c"
|
||||
"minya24.c"
|
||||
"SmallFont.c"
|
||||
"tooney32.c"
|
||||
"Ubuntu16.c"
|
||||
)
|
||||
|
||||
set(COMPONENT_REQUIRES spi_flash)
|
||||
set(COMPONENT_PRIV_REQUIRES bootloader_support)
|
||||
|
||||
register_component()
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
*/
|
||||
|
||||
|
||||
#include "spi_master_lobo.h"
|
||||
#include "spidriver/spi_master_lobo.h"
|
||||
#include <errno.h>
|
||||
#include <stdio.h>
|
||||
#include <time.h>
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
#define _EPDSPI_H_
|
||||
|
||||
#include <stdint.h>
|
||||
#include "spi_master_lobo.h"
|
||||
#include "spidriver/spi_master_lobo.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
||||
@@ -4,4 +4,4 @@
|
||||
# (Uses default behaviour of compiling all source files in directory, adding 'include' to include path.)
|
||||
|
||||
COMPONENT_SRCDIRS := .
|
||||
COMPONENT_ADD_INCLUDEDIRS := .
|
||||
COMPONENT_ADD_INCLUDEDIRS := . ../
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
set(COMPONENT_PRIV_INCLUDEDIRS ".")
|
||||
set(COMPONENT_SRCS "spi_master_lobo.c")
|
||||
|
||||
set(COMPONENT_REQUIRES spi_flash)
|
||||
set(COMPONENT_PRIV_REQUIRES bootloader_support)
|
||||
|
||||
register_component()
|
||||
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
set(COMPONENT_PRIV_INCLUDEDIRS ".")
|
||||
set(COMPONENT_SRCS "esp_spiffs.c"
|
||||
"list.c"
|
||||
"mutex.c"
|
||||
"spiffs_cache.c"
|
||||
"spiffs_check.c"
|
||||
"spiffs_gc.c"
|
||||
"spiffs_hydrogen.c"
|
||||
"spiffs_nucleus.c"
|
||||
"spiffs_vfs.c")
|
||||
|
||||
set(COMPONENT_REQUIRES spi_flash)
|
||||
set(COMPONENT_PRIV_REQUIRES bootloader_support)
|
||||
|
||||
register_component()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user