mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-03 17:28:59 +08:00
eaef5bd133
This reverts commit 1a17e17c462bdd4e1d26d8742f8b7087273e04c2. PUBLISHED_FROM=80028de308c9a021955d1425d2bfee8feb85f193
19 lines
506 B
C
19 lines
506 B
C
/*
|
|
* Copyright (c) 2014-2016 Cesanta Software Limited
|
|
* All rights reserved
|
|
*/
|
|
|
|
#ifndef CS_MONGOOSE_EXAMPLES_STM32F4_CC3100_USER_PARAMS_H_
|
|
#define CS_MONGOOSE_EXAMPLES_STM32F4_CC3100_USER_PARAMS_H_
|
|
|
|
/* Put you WIFI parameters here */
|
|
#define NET_SSID "my_ssid"
|
|
#define NET_PWD "my_password"
|
|
#define NET_SECURITY SL_SEC_TYPE_WPA_WPA2
|
|
|
|
#define MQTT_BROKER_ADDRESS "192.168.1.108:1883"
|
|
#define MQTT_USER_NAME NULL
|
|
#define MQTT_USER_PWD NULL
|
|
|
|
#endif /* CS_MONGOOSE_EXAMPLES_STM32F4_CC3100_USER_PARAMS_H_ */
|