Skip to content

Commit 87f7cfe

Browse files
committed
change function name main.c wed_define_func -> wep_define_func
1 parent 922e682 commit 87f7cfe

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • TrueStudio/W6100EVB-HTTP_Server/Src

TrueStudio/W6100EVB-HTTP_Server/Src/main.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ uint8_t Router_IP[16]= {0xff,0x02,0x00,0x00,
105105
};
106106
uint8_t data_buf[2048];
107107
void print_network_information(void);
108-
void wed_define_func(void);
108+
void wep_define_func(void);
109109
/* USER CODE END PV */
110110

111111
/* Private function prototypes -----------------------------------------------*/
@@ -206,7 +206,7 @@ int main(void)
206206
httpServer_init(TX_BUF, RX_BUF, MAX_HTTPSOCK, socknumlist); // Tx/Rx buffers (1kB) / The number of W5500 chip H/W sockets in use
207207

208208
/* Web content registration (web content in webpage.h, Example web pages) */
209-
wed_define_func();
209+
wep_define_func();
210210
/* USER CODE END 2 */
211211

212212
/* Infinite loop */
@@ -417,7 +417,7 @@ void print_network_information(void)
417417

418418
}
419419

420-
void wed_define_func(void)
420+
void wep_define_func(void)
421421
{
422422
// Index page and netinfo / base64 image demo
423423
reg_httpServer_webContent((uint8_t *)"index.html", (uint8_t *)index_page); // index.html : Main page example

0 commit comments

Comments
 (0)