HTTP SD Card File Server

Dependencies:   SDFileSystem WIZnetInterface mbed

Fork of HTTP_SD_Server_K64F by FRDM-K64F Code Share

Prerequisite

This Program is the example how to show SD card file list with web-browser for WIZwiki-W7500.

To implement this function, you need a Platform board, network Interface board and SD card. Below are what we used.

  • WIZwiki-W7500 from WIZnet (Platform board and Ethernet I/F board)
  • SD card

Hardware Configuration

WIZwiki-W7500 Pin map

pin map

Software

SPI Initialization

main.cpp

SDFileSystem sd(PB_3, PB_2, PB_1, PB_0, "sd");

Refer to ....

Committer:
gsteiert
Date:
Fri Dec 06 03:57:29 2013 +0000
Revision:
1:64f023138627
Parent:
0:28bc7ce77e20
Committing for publishing

Who changed what in which revision?

UserRevisionLine numberNew contents of line
gsteiert 0:28bc7ce77e20 1
gsteiert 0:28bc7ce77e20 2 //I2C i2c(p28, p27);
gsteiert 0:28bc7ce77e20 3
gsteiert 1:64f023138627 4 void init_dio();
gsteiert 1:64f023138627 5 void pwm_off(void const *arg);
gsteiert 1:64f023138627 6
gsteiert 0:28bc7ce77e20 7 void cmd_i2c_write(char* qry, char* data, char* resp);
gsteiert 0:28bc7ce77e20 8 void cmd_i2c_read(char* qry, char* data, char* resp);
gsteiert 0:28bc7ce77e20 9 void cmd_i2c_addr_read(char* qry, char* data, char* resp);
gsteiert 1:64f023138627 10 void cmd_pmd_setio(char* qry, char* data, char* resp);
gsteiert 1:64f023138627 11 void cmd_pmd_write(char* qry, char* data, char* resp);
gsteiert 1:64f023138627 12 void cmd_pmd_read(char* qry, char* data, char* resp);
gsteiert 1:64f023138627 13 void cmd_pwm_set(char* qry, char* data, char* resp);
gsteiert 0:28bc7ce77e20 14 void muri(char* uri, char* data, char* resp);
gsteiert 0:28bc7ce77e20 15