Microchip® Advanced Software Framework

fsdata.c File Reference

Virtual file system management.

Copyright (c) 2014-2018 Microchip Technology Inc. and its subsidiaries.

#include "lwipopts.h"
#include <string.h>
#include "fsdata.h"

Variables

static const unsigned char data_404_html []
 
static const unsigned char data_index_html []
 
static const unsigned char favicon []
 
struct fsdata_file file_404_html [] = {{file_jquery_js, "404.html", data_404_html, sizeof(data_404_html)}}
 
struct fsdata_file file_favicon_ico [] = {{NULL, "favicon.ico", favicon, sizeof(favicon)}}
 Linked list of the virtual file system content. More...
 
struct fsdata_file file_index_html [] = {{file_404_html, "index.html", data_index_html, (int )sizeof(data_index_html)}}
 
struct fsdata_file file_jquery_js [] = {{file_style_css, "jquery.js", jquery, sizeof(jquery)}}
 
struct fsdata_file file_style_css [] = {{file_favicon_ico, "style.css", style, sizeof(style)}}
 
static const unsigned char jquery []
 
static const unsigned char style []
 

const unsigned char data_404_html[]
static
const unsigned char data_index_html[]
static
const unsigned char favicon[]
static
struct fsdata_file file_404_html[] = {{file_jquery_js, "404.html", data_404_html, sizeof(data_404_html)}}
struct fsdata_file file_favicon_ico[] = {{NULL, "favicon.ico", favicon, sizeof(favicon)}}

Linked list of the virtual file system content.

struct fsdata_file file_index_html[] = {{file_404_html, "index.html", data_index_html, (int )sizeof(data_index_html)}}
struct fsdata_file file_jquery_js[] = {{file_style_css, "jquery.js", jquery, sizeof(jquery)}}
struct fsdata_file file_style_css[] = {{file_favicon_ico, "style.css", style, sizeof(style)}}
const unsigned char jquery[]
static
const unsigned char style[]
static