mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-14 08:39:23 +08:00
129bb6b1c3
PUBLISHED_FROM=57ff02457269938feae805f2972b96b15931d41a
15 lines
370 B
C
15 lines
370 B
C
/*
|
|
* Copyright (c) 2014-2016 Cesanta Software Limited
|
|
* All rights reserved
|
|
*/
|
|
|
|
#ifndef CS_MONGOOSE_EXAMPLES_CC3200_WIFI_H_
|
|
#define CS_MONGOOSE_EXAMPLES_CC3200_WIFI_H_
|
|
|
|
#include <stdbool.h>
|
|
|
|
bool wifi_setup_ap(const char *ssid, const char *pass, int channel);
|
|
bool wifi_setup_sta(const char *ssid, const char *pass);
|
|
|
|
#endif /* CS_MONGOOSE_EXAMPLES_CC3200_WIFI_H_ */
|