@@ -496,7 +496,7 @@ DltReturnValue dlt_user_log_write_sized_string(DltContextData *log, const char *
496
496
497
497
/**
498
498
* Write a constant null terminated ASCII string into a DLT log message.
499
- * In non verbose mode DLT parameter will not be send at all.
499
+ * In non verbose mode DLT parameter will not be sent at all.
500
500
* dlt_user_log_write_start has to be called before adding any attributes to the log message.
501
501
* Finish sending log message by calling dlt_user_log_write_finish.
502
502
* @param log pointer to an object containing information about logging context data
@@ -507,11 +507,11 @@ DltReturnValue dlt_user_log_write_constant_string(DltContextData *log, const cha
507
507
508
508
/**
509
509
* Write a constant, potentially non-null-terminated ASCII string into a DLT log message.
510
- * In non verbose mode DLT parameter will not be send at all.
510
+ * In non verbose mode DLT parameter will not be sent at all.
511
511
* dlt_user_log_write_start has to be called before adding any attributes to the log message.
512
512
* Finish sending log message by calling dlt_user_log_write_finish.
513
513
* @param log pointer to an object containing information about logging context data
514
- * @param text pointer to the parameter written into log message containing null termination.
514
+ * @param text pointer to the parameter written into log message
515
515
* @param length length in bytes of @a text (without any termination character)
516
516
* @return Value from DltReturnValue enum
517
517
*/
@@ -538,6 +538,29 @@ DltReturnValue dlt_user_log_write_utf8_string(DltContextData *log, const char *t
538
538
*/
539
539
DltReturnValue dlt_user_log_write_sized_utf8_string (DltContextData * log , const char * text , uint16_t length );
540
540
541
+ /**
542
+ * Write a constant null terminated UTF8 string into a DLT log message.
543
+ * In non verbose mode DLT parameter will not be sent at all.
544
+ * dlt_user_log_write_start has to be called before adding any attributes to the log message.
545
+ * Finish sending log message by calling dlt_user_log_write_finish.
546
+ * @param log pointer to an object containing information about logging context data
547
+ * @param text pointer to the parameter written into log message containing null termination.
548
+ * @return Value from DltReturnValue enum
549
+ */
550
+ DltReturnValue dlt_user_log_write_constant_utf8_string (DltContextData * log , const char * text );
551
+
552
+ /**
553
+ * Write a constant, potentially non-null-terminated UTF8 string into a DLT log message.
554
+ * In non verbose mode DLT parameter will not be sent at all.
555
+ * dlt_user_log_write_start has to be called before adding any attributes to the log message.
556
+ * Finish sending log message by calling dlt_user_log_write_finish.
557
+ * @param log pointer to an object containing information about logging context data
558
+ * @param text pointer to the parameter written into log message
559
+ * @param length length in bytes of @a text (without any termination character)
560
+ * @return Value from DltReturnValue enum
561
+ */
562
+ DltReturnValue dlt_user_log_write_sized_constant_utf8_string (DltContextData * log , const char * text , uint16_t length );
563
+
541
564
/**
542
565
* Write a null-terminated ASCII string with "name" attribute into a DLT log message.
543
566
* dlt_user_log_write_start has to be called before adding any parameters to the log message.
@@ -595,7 +618,7 @@ DltReturnValue dlt_user_log_write_constant_string_attr(DltContextData *log, cons
595
618
* and no content to the message.
596
619
*
597
620
* @param log pointer to an object containing information about logging context data
598
- * @param text pointer to the parameter written into log message containing null termination
621
+ * @param text pointer to the parameter written into log message
599
622
* @param length length in bytes of @a text (without any termination character)
600
623
* @param name the "name" attribute (or NULL)
601
624
* @return value from DltReturnValue enum
@@ -633,6 +656,39 @@ DltReturnValue dlt_user_log_write_utf8_string_attr(DltContextData *log, const ch
633
656
*/
634
657
DltReturnValue dlt_user_log_write_sized_utf8_string_attr (DltContextData * log , const char * text , uint16_t length , const char * name );
635
658
659
+ /**
660
+ * Write a constant, null-terminated UTF8 string with "name" attribute into a DLT log message.
661
+ * In non-verbose mode, this parameter will not be sent at all.
662
+ * dlt_user_log_write_start has to be called before adding any parameters to the log message.
663
+ * Finish building a log message by calling dlt_user_log_write_finish.
664
+ *
665
+ * If @a name is NULL, this function will add an attribute field with length 0
666
+ * and no content to the message.
667
+ *
668
+ * @param log pointer to an object containing information about logging context data
669
+ * @param text pointer to the parameter written into log message containing null termination
670
+ * @param name the "name" attribute (or NULL)
671
+ * @return value from DltReturnValue enum
672
+ */
673
+ DltReturnValue dlt_user_log_write_constant_utf8_string_attr (DltContextData * log , const char * text , const char * name );
674
+
675
+ /**
676
+ * Write a constant, potentially non-null-terminated UTF8 string with "name" attribute into a DLT log message.
677
+ * In non-verbose mode, this parameter will not be sent at all.
678
+ * dlt_user_log_write_start has to be called before adding any parameters to the log message.
679
+ * Finish building a log message by calling dlt_user_log_write_finish.
680
+ *
681
+ * If @a name is NULL, this function will add an attribute field with length 0
682
+ * and no content to the message.
683
+ *
684
+ * @param log pointer to an object containing information about logging context data
685
+ * @param text pointer to the parameter written into log message
686
+ * @param length length in bytes of @a text (without any termination character)
687
+ * @param name the "name" attribute (or NULL)
688
+ * @return value from DltReturnValue enum
689
+ */
690
+ DltReturnValue dlt_user_log_write_sized_constant_utf8_string_attr (DltContextData * log , const char * text , uint16_t length , const char * name );
691
+
636
692
/**
637
693
* Write a binary memory block into a DLT log message.
638
694
* dlt_user_log_write_start has to be called before adding any attributes to the log message.
0 commit comments