Increase the internal log buffer
The Atomic Aquatics Cobalt backend uses 8K data packets. Since a hexdump of such a data packet needs at least twice the size of the binary data, the internal log buffer should be increased to 16K bytes.
This commit is contained in:
parent
ed21d776dd
commit
ab522a4a52
@ -41,7 +41,7 @@ struct dc_context_t {
|
|||||||
dc_logfunc_t logfunc;
|
dc_logfunc_t logfunc;
|
||||||
void *userdata;
|
void *userdata;
|
||||||
#ifdef ENABLE_LOGGING
|
#ifdef ENABLE_LOGGING
|
||||||
char msg[8192 + 32];
|
char msg[16384 + 32];
|
||||||
dc_timer_t *timer;
|
dc_timer_t *timer;
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user