-
We have the problem that the TriceBuffer fills up to fast and the uart isn't fast enough to write out all messages and free up the buffer. |
Beta Was this translation helpful? Give feedback.
Answered by
rokath
Sep 1, 2023
Replies: 1 comment 2 replies
-
|
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
rokath
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
#define TRICE_DIAGNOSTICS 1
inside your triceConfig.h file.void TriceLogDiagnosticValues( void )
. Copy it into your project and rename/adapt it to your needs.trice
instead ofTRice
.trice8
ortrice16
instead oftrice
(defaults to trice32) to save parameter space. Anyway the default TCOBS compression reduces the data also.#define TRICE_TRANSFER_MODE TRICE_PACK_MULTI_MODE
to your triceConfig.h file when using#define TRICE_BUFFER TRICE_DOUBLE_BUFFER
. This packs several trice messages together for TCOBS before adding th…