mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-10 00:41:06 +00:00
8 lines
335 B
Markdown
8 lines
335 B
Markdown
|
# Modifications to Segger RTT v6.54 for BTstack
|
||
|
- SEGGER_RTT_GCC.c:
|
||
|
- include <btstack_config.h>
|
||
|
- check for ENABLE_SEGGER_RTT
|
||
|
- fix prototype for `_write_r`:
|
||
|
- old: `int _write_r(struct _reent *r, int file, const void *ptr, int len);`
|
||
|
- new: `_ssize_t _write_r(struct _reent *r, int file, const void *ptr, size_t len)
|