1 /* 2 * Percepio DFM v2.1.0 3 * Copyright 2023 Percepio AB 4 * www.percepio.com 5 * 6 * SPDX-License-Identifier: Apache-2.0 7 */ 8 9 /** 10 * @file 11 * 12 * @brief DFM dummy cloud port config 13 */ 14 15 #ifndef DFM_CLOUD_PORT_CONFIG_H 16 #define DFM_CLOUD_PORT_CONFIG_H 17 18 #ifdef __cplusplus 19 extern "C" { 20 #endif 21 22 /* Topic size */ 23 #define DFM_CFG_CLOUD_PORT_MAX_TOPIC_SIZE (64) 24 25 #ifdef __cplusplus 26 } 27 #endif 28 29 #endif /* DFM_CLOUD_PORT_CONFIG_H */ 30