mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
8c96721a55
mqttclient compile pass, log and ssl config off
89 lines
2.6 KiB
C
89 lines
2.6 KiB
C
/*
|
|
* @Author : jiejie
|
|
* @GitHub : https://github.com/jiejieTop
|
|
* @Date : 2021-02-26 12:00:24
|
|
* @LastEditors : jiejie
|
|
* @LastEditTime : 2022-06-15 23:22:10
|
|
* @FilePath : /mqttclient/mqttclient/mqtt_defconfig.h
|
|
* Copyright (c) 2022 jiejie, All Rights Reserved. Please keep the author information and source code according to the license.
|
|
*/
|
|
/*
|
|
* @Author: jiejie
|
|
* @Github: https://github.com/jiejieTop
|
|
* @Date: 2020-02-25 03:36:09
|
|
* @LastEditTime: 2020-06-17 19:59:41
|
|
* @Description: the code belongs to jiejie, please keep the author information and source code according to the license.
|
|
*/
|
|
|
|
#ifndef _DEFCONFIG_H_
|
|
#define _DEFCONFIG_H_
|
|
|
|
#include "mqtt_config.h"
|
|
|
|
#ifndef MQTT_LOG_LEVEL
|
|
#define MQTT_LOG_LEVEL MQTT_LOG_DEBUG_LEVEL //MQTT_LOG_WARN_LEVEL MQTT_LOG_DEBUG_LEVEL
|
|
#endif // !MQTT_LOG_LEVEL
|
|
|
|
#ifndef MQTT_MAX_PACKET_ID
|
|
#define MQTT_MAX_PACKET_ID (0xFFFF - 1)
|
|
#endif // !MQTT_MAX_PACKET_ID
|
|
|
|
#ifndef MQTT_TOPIC_LEN_MAX
|
|
#define MQTT_TOPIC_LEN_MAX 64
|
|
#endif // !MQTT_TOPIC_LEN_MAX
|
|
|
|
#ifndef MQTT_ACK_HANDLER_NUM_MAX
|
|
#define MQTT_ACK_HANDLER_NUM_MAX 64
|
|
#endif // !MQTT_ACK_HANDLER_NUM_MAX
|
|
|
|
#ifndef MQTT_DEFAULT_BUF_SIZE
|
|
#define MQTT_DEFAULT_BUF_SIZE 1024
|
|
#endif // !MQTT_DEFAULT_BUF_SIZE
|
|
|
|
#ifndef MQTT_DEFAULT_CMD_TIMEOUT
|
|
#define MQTT_DEFAULT_CMD_TIMEOUT 4000
|
|
#endif // !MQTT_DEFAULT_CMD_TIMEOUT
|
|
|
|
#ifndef MQTT_MAX_CMD_TIMEOUT
|
|
#define MQTT_MAX_CMD_TIMEOUT 20000
|
|
#endif // !MQTT_MAX_CMD_TIMEOUT
|
|
|
|
#ifndef MQTT_MIN_CMD_TIMEOUT
|
|
#define MQTT_MIN_CMD_TIMEOUT 1000
|
|
#endif // !MQTT_MIN_CMD_TIMEOUT
|
|
|
|
#ifndef MQTT_KEEP_ALIVE_INTERVAL
|
|
#define MQTT_KEEP_ALIVE_INTERVAL 100 // unit: second
|
|
#endif // !MQTT_KEEP_ALIVE_INTERVAL
|
|
|
|
#ifndef MQTT_VERSION
|
|
#define MQTT_VERSION 4 // 4 is mqtt 3.1.1
|
|
#endif // !MQTT_VERSION
|
|
|
|
#ifndef MQTT_RECONNECT_DEFAULT_DURATION
|
|
#define MQTT_RECONNECT_DEFAULT_DURATION 1000
|
|
#endif // !MQTT_RECONNECT_DEFAULT_DURATION
|
|
|
|
#ifndef MQTT_THREAD_STACK_SIZE
|
|
#define MQTT_THREAD_STACK_SIZE 4096
|
|
#endif // !MQTT_THREAD_STACK_SIZE
|
|
|
|
#ifndef MQTT_THREAD_PRIO
|
|
#define MQTT_THREAD_PRIO 5
|
|
#endif // !MQTT_THREAD_PRIO
|
|
|
|
#ifndef MQTT_THREAD_TICK
|
|
#define MQTT_THREAD_TICK 50
|
|
#endif // !MQTT_THREAD_TICK
|
|
|
|
|
|
#ifndef MQTT_NETWORK_TYPE_NO_TLS
|
|
|
|
#ifndef MQTT_TLS_HANDSHAKE_TIMEOUT
|
|
#define MQTT_TLS_HANDSHAKE_TIMEOUT (5 * 1000)
|
|
#endif // !MQTT_TLS_HANDSHAKE_TIMEOUT
|
|
|
|
#endif /* MQTT_NETWORK_TYPE_NO_TLS */
|
|
|
|
#endif /* _DEFCONFIG_H_ */
|