Turn down WIFI_API_DEBUG_LOG in wifi_api.h

Fork of WIFI_API_32kRAM by Delta

WIFI_Driver/wifi_api.h

Committer:
wgd8700
Date:
2016-01-22
Revision:
25:47b20177ef04
Parent:
19:a11db6055532
Child:
27:40ec92889c3c

File content as of revision 25:47b20177ef04:



#ifndef WIFI_API_H
#define WIFI_API_H

#include <stdbool.h>
#include <stdint.h>

/* @file
* @brief Wi-Fi Connection API for NNN40.
*
*
* @defgroup lib_driver_spi_master Software controlled SPI Master driver
* @{
* @ingroup nrf_drivers
* @brief Software controlled SPI Master driver.
*
* Supported features:
* - Operate two SPI masters independently or in parallel.
* - Transmit and Receive given size of data through SPI.
* - configure each SPI module separately through @ref spi_master_init.
*/

#define WIFI_API_DEBUG_LOG 1
#define WIFI_API_DEBUG_TX_PIN  USBTX
#define WIFI_API_DEBUG_BAUDRATE  115200

#define SSID_MAX_LENGTH 32
#define SCAN_SSID_MAX_NUM 20

#if defined(TARGET_DELTA_DFCM_NNN40)   
#define ticker_internal 25//Tsungt, 2015/09/21, it was 60, if set to 30 or 20 somehow receive_all will go wrong (return 0)
#else

#if defined(WIFI_API_DEBUG_LOG)   
#define ticker_internal 15//Tsungt, used for NUCLEO-F446RE
#else
#define ticker_internal 5//Tsungt, used for NUCLEO-F446RE
#endif

#endif  

#define wait_ms_internal 1

/**
 *  Wi-Fi Init
 */
int wifi_init(void); 
int wifi_apConnect(void);
void wifi_ssid_pw_set(uint8_t* SSID, uint8_t* PW, uint8_t priority);
uint8_t wifi_scan(void);
int wifi_connect(unsigned int timeout_ms);
int wifi_static_ip_set(const char * ip, const char * netmask, const char * gateway);
int wifi_disconnect(void);

int wifi_UDP_server_init(const int port);
int wifi_TCP_server_init(const int port);
int wifi_UDP_client_init(void);
int wifi_TCP_client_init(const char *ipv4_addr, const int port, bool new_socket);
int wifi_send_UDP(char *data, int length, uint8_t cid, const char *ipv4_addr, const int port);
int wifi_send_TCP(char *data, uint8_t cid);




#ifdef __cplusplus
extern "C" {
#endif
void start_socket_routine(void);    
int wifi_receive_UDP_callback(uint8_t *data, int size, char* ipaddr, int port);  
int wifi_receive_TCP_callback(uint8_t *data, int size, char* ipaddr, int port);  
void Socket_Close_All(void);
int wifi_ipconfig(unsigned int timeout_ms);
    
#ifdef __cplusplus
}
#endif

#endif