This commit is contained in:
2021-01-09 22:01:21 +01:00
commit 4b3e3a3710
38 changed files with 3231 additions and 0 deletions

13
cube/User/Inc/wizHelper.h Normal file
View File

@ -0,0 +1,13 @@
#ifndef _WIZHELPER_H_
#define _WIZHELPER_H_
#include <stdbool.h>
#include <stdint.h>
int wizInit();
bool isNetworkAvailable();
uint8_t* wizGetIPAddress();
bool wizDnsQuery(char *name, uint8_t *ip);
#endif // _WIZHELPER_H_