Change from raw to bmp
This commit is contained in:
2023-11-20 12:45:28 +01:00
parent 22c742c3c1
commit 1850efde2a

View File

@@ -11,7 +11,7 @@ static const char* TAG = "tftp_server";
extern struct llfs_data_file* llfs_root;
static tftp_custom_file_t virt_file[] = {{.name = "index.txt", .data = NULL, .len = 0, .ofset = 0},
{.name = "virtImage.raw", .data = NULL, .len = 0, .ofset = 0},
{.name = "virtImage.bmp", .data = NULL, .len = 0, .ofset = 0},
{.name = "virtText.txt", .data = NULL, .len = 0, .ofset = 0}};
int str_cat_str(char* dest, size_t dest_size, const char* src) {