All my debug code in tftp.c replace PRINTF(..) to DBG_PRINT(INFO_DBG,

..)
This commit is contained in:
maxxir
2019-03-31 09:59:16 +04:00
parent 8f5fa0a833
commit c99b2d6822
4 changed files with 19 additions and 69 deletions

View File

@@ -26,4 +26,6 @@ wiz_NetInfo netInfo = { .mac = {0x00, 0x08, 0xdc, 0xab, 0xcd, 0xef}, // Mac add
.dns = {8,8,8,8}, // DNS address (google dns)
.gw = {192, 168, 1, 1}, // Gateway address
.dhcp = NETINFO_STATIC}; //Static IP configuration
//PC TFTP server IP
uint8_t tftp_destip[4] = {192, 168, 1, 81};
#endif