summaryrefslogtreecommitdiff
path: root/include/dlt/dlt_common.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/dlt/dlt_common.h')
-rw-r--r--include/dlt/dlt_common.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/include/dlt/dlt_common.h b/include/dlt/dlt_common.h
index 4b7f45f..2083a18 100644
--- a/include/dlt/dlt_common.h
+++ b/include/dlt/dlt_common.h
@@ -322,6 +322,11 @@ enum {
#define DLT_HEADER_SHOW_ALL 0xFFFF
/**
+ * Maximal length of mounted path
+ */
+#define DLT_MOUNT_PATH_MAX 1024
+
+/**
* The definition of the serial header containing the characters "DLS" + 0x01.
*/
extern const char dltSerialHeader[DLT_ID_SIZE];
@@ -553,10 +558,10 @@ typedef struct
*/
typedef struct
{
- uint32_t service_id; /**< service ID */
- uint8_t dev_num; /**< device number of the connected device */
- uint8_t connection_type; /**< connection status of the connected device connected/disconnected */
- char comid[DLT_ID_SIZE]; /**< communication interface */
+ uint32_t service_id; /**< service ID */
+ char mount_point[DLT_MOUNT_PATH_MAX]; /**< storage device mount point */
+ uint8_t connection_type; /**< connection status of the connected device connected/disconnected */
+ char comid[DLT_ID_SIZE]; /**< communication interface */
} PACKED DltServiceOfflineLogstorage;
/**