diff options
author | Alexander Wenzel <Alexander.AW.Wenzel@bmw.de> | 2014-06-17 16:23:49 +0200 |
---|---|---|
committer | Alexander Wenzel <Alexander.AW.Wenzel@bmw.de> | 2014-09-09 14:50:50 +0200 |
commit | f1442dd3619c6478862b52f6ee022b8799a55bfe (patch) | |
tree | 04d28ce1c10c10d003013a950a7047cc342e4c60 /include/dlt/dlt_user.h | |
parent | 87936e5249b2c22eefac0acfc21696e209ee6d35 (diff) | |
download | DLT-daemon-f1442dd3619c6478862b52f6ee022b8799a55bfe.tar.gz |
New macros for Format of Hex and Binary.
Signed-off-by: Alexander Wenzel <Alexander.AW.Wenzel@bmw.de>
Diffstat (limited to 'include/dlt/dlt_user.h')
-rw-r--r-- | include/dlt/dlt_user.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/include/dlt/dlt_user.h b/include/dlt/dlt_user.h index 44d1ca1..1ed7b25 100644 --- a/include/dlt/dlt_user.h +++ b/include/dlt/dlt_user.h @@ -102,6 +102,20 @@ typedef enum } DltLogLevelType; /** + * Definitions of DLT Format + */ +typedef enum +{ + DLT_FORMAT_DEFAULT = 0x00, /**< no sepecial format */ + DLT_FORMAT_HEX8 = 0x01, /**< Hex 8 */ + DLT_FORMAT_HEX16 = 0x02, /**< Hex 16 */ + DLT_FORMAT_HEX32 = 0x03, /**< Hex 32 */ + DLT_FORMAT_HEX64 = 0x04, /**< Hex 64 */ + DLT_FORMAT_BIN8 = 0x05, /**< Binary 8 */ + DLT_FORMAT_BIN16 = 0x06 /**< Binary 16 */ +} DltFormatType; + +/** * Definitions of DLT trace status */ typedef enum @@ -399,6 +413,18 @@ int dlt_user_log_write_utf8_string(DltContextData *log, const char *text); int dlt_user_log_write_raw(DltContextData *log,void *data,uint16_t length); /** + * Write a binary memory block into a DLT log message. + * dlt_user_log_write_start has to be called before adding any attributes to the log message. + * Finish sending log message by calling dlt_user_log_write_finish. + * @param log pointer to an object containing information about logging context data + * @param data pointer to the parameter written into log message. + * @param length length in bytes of the parameter written into log message. + * @param type the format information. + * @return negative value if there was an error + */ +int dlt_user_log_write_raw_formated(DltContextData *log,void *data,uint16_t length,DltFormatType type); + +/** * Trace network message * @param handle pointer to an object containing information about one special logging context * @param nw_trace_type type of network trace (DLT_NW_TRACE_IPC, DLT_NW_TRACE_CAN, DLT_NW_TRACE_FLEXRAY, or DLT_NW_TRACE_MOST) |