Files
mains-frequency-counter-stm32/cube/User/Inc/wizHelper.h
2021-03-01 11:16:54 +01:00

16 lines
231 B
C

#ifndef _WIZHELPER_H_
#define _WIZHELPER_H_
#include <stdbool.h>
#include <stdint.h>
int wizInit();
bool wizIsNetworkAvailable();
uint8_t* wizGetIPAddress();
bool wizDnsQuery(char *name, uint8_t *ip);
#endif // _WIZHELPER_H_