Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: SDFileSystem WIZnetInterface mbed
Fork of HTTP_SD_Server_K64F by
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

Software
SPI Initialization
main.cpp
SDFileSystem sd(PB_3, PB_2, PB_1, PB_0, "sd");
Refer to ....
- Wiki : /teams/WIZnet/code/HTTP_SDCard_File_Server_WIZwiki-W7500/wiki/HTTP_SDCard_File_Server_WIZwiki-W7500
- Korean Version : http://midnightcow.tistory.com/category/위즈네트/WIZwiki-W7500
muri.h
- Committer:
- gsteiert
- Date:
- 2013-12-06
- Revision:
- 2:5c9ce3b50de6
- Parent:
- 1:64f023138627
File content as of revision 2:5c9ce3b50de6:
//I2C i2c(p28, p27);
void init_dio();
void pwm_off(void const *arg);
void cmd_i2c_write(char* qry, char* data, char* resp);
void cmd_i2c_read(char* qry, char* data, char* resp);
void cmd_i2c_addr_read(char* qry, char* data, char* resp);
void cmd_pmd_setio(char* qry, char* data, char* resp);
void cmd_pmd_write(char* qry, char* data, char* resp);
void cmd_pmd_read(char* qry, char* data, char* resp);
void cmd_pwm_set(char* qry, char* data, char* resp);
void muri(char* uri, char* data, char* resp);
