X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;ds=sidebyside;f=boards%2Fsam3x-ek%2Fhw%2Fhw_http.h;fp=boards%2Fsam3x-ek%2Fhw%2Fhw_http.h;h=88ec1bf74396b1e236f3708faadd46dd661bb153;hb=567b81d9dd3bd0a0cd8df4a3d464b3273576fe73;hp=0000000000000000000000000000000000000000;hpb=710780c30a26bdbdebe3e92b6fde1af0b04a91a3;p=bertos.git diff --git a/boards/sam3x-ek/hw/hw_http.h b/boards/sam3x-ek/hw/hw_http.h new file mode 100644 index 00000000..88ec1bf7 --- /dev/null +++ b/boards/sam3x-ek/hw/hw_http.h @@ -0,0 +1,49 @@ +/** + * \file + * + * + * \brief Simple Http server error pages. + * + * \author Daniele Basile + */ + +#ifndef HW_HTTP_H +#define HW_HTTP_H + +#include + +extern const char http_file_not_found[]; +extern const size_t http_file_not_found_len; + +extern const char http_sd_not_present[]; +extern const size_t http_sd_not_present_len; + +#endif /* HW_HTTP_H */