mirror of
https://github.com/badgeteam/mch2022-template-app.git
synced 2024-11-22 16:51:01 +00:00
9 lines
309 B
C
9 lines
309 B
C
#include <sdkconfig.h>
|
|
#include <freertos/FreeRTOS.h>
|
|
#include <freertos/task.h>
|
|
#include <freertos/queue.h>
|
|
#include "ili9341.h"
|
|
#include "pax_gfx.h"
|
|
|
|
void list_files_in_folder(const char* path);
|
|
void file_browser(xQueueHandle buttonQueue, pax_buf_t* pax_buffer, ILI9341* ili9341, const char* initial_path);
|