Home
last modified time | relevance | path

Searched refs:DROP_MSG_LEN (Results 1 – 1 of 1) sorted by relevance

/Zephyr-latest/subsys/logging/backends/
Dlog_backend_rtt.c39 #define DROP_MSG_LEN (sizeof(DROP_MSG) - 1) macro
61 static uint8_t line_buf[MESSAGE_SIZE + DROP_MSG_LEN];
140 memmove(line_buf + DROP_MSG_LEN, line_buf, line_pos - line_buf); in line_out_drop_mode()
141 (void)memcpy(line_buf, drop_msg, DROP_MSG_LEN); in line_out_drop_mode()
142 line_pos += DROP_MSG_LEN; in line_out_drop_mode()
147 line_buf[DROP_MSG_LEN - 2] = ' '; in line_out_drop_mode()
148 line_buf[DROP_MSG_LEN - 3] = (uint8_t) ('0' + cnt); in line_out_drop_mode()
149 line_buf[DROP_MSG_LEN - 4] = ' '; in line_out_drop_mode()
151 line_buf[DROP_MSG_LEN - 2] = (uint8_t) ('0' + cnt % 10); in line_out_drop_mode()
152 line_buf[DROP_MSG_LEN - 3] = (uint8_t) ('0' + cnt / 10); in line_out_drop_mode()
[all …]