mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-04 09:49:01 +08:00
eaef5bd133
This reverts commit 1a17e17c462bdd4e1d26d8742f8b7087273e04c2. PUBLISHED_FROM=80028de308c9a021955d1425d2bfee8feb85f193
16 lines
391 B
C
16 lines
391 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);
|
|
void stop_nwp(void);
|
|
|
|
#endif /* CS_MONGOOSE_EXAMPLES_CC3200_WIFI_H_ */
|