mirror of https://github.com/wolfSSL/wolfMQTT.git
33 lines
605 B
C
33 lines
605 B
C
#ifndef WOLFMQTT_ZEPHYR_SAMPLE_SETTINGS_H
|
|
#define WOLFMQTT_ZEPHYR_SAMPLE_SETTINGS_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <zephyr/net/socket_select.h>
|
|
|
|
/* If a custom user_settings file is provided use it instead */
|
|
#ifdef WOLFMQTT_SETTINGS_FILE
|
|
#include WOLFMQTT_SETTINGS_FILE
|
|
#endif
|
|
|
|
#undef NO_FILESYSTEM
|
|
#define NO_FILESYSTEM
|
|
|
|
#define WOLFMQTT_TOPIC_NAME "sensors"
|
|
#define DEFAULT_MQTT_HOST "192.0.2.2"
|
|
#define NO_MAIN_DRIVER
|
|
|
|
#if defined(CONFIG_WOLFSSL_DEBUG)
|
|
#undef DEBUG_WOLFSSL
|
|
#define DEBUG_WOLFSSL
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* WOLFMQTT_ZEPHYR_SAMPLE_SETTINGS_H */
|
|
|