C
/* system header files */
#include "stdio.h"
/* additional interface header files */
#include "FreeRTOS.h"
#include "timers.h"
#include "BCDS_NetworkConfig.h"
#include "BCDS_WlanConnect.h"
#include "BCDS_CmdProcessor.h"
#include "BCDS_Assert.h"/* macros ******************************************************************* */
#warning Set these Macros accordingly, before running this application
#define USE_DHCP 1 // 1: DHCP; 0: Static IP
#define USE_WPA 1 // 1: WPA; 0: Open Access point
#define SSID "yourWifiNetworkSSID"
#define PW "yourWifiNetworkPW"
/* local functions ********************************************************** */Last updated