Remove unused-parameter errors when LOGGER=SWO

This commit is contained in:
Sebastien COUDREAU 2021-12-01 17:10:31 +01:00
parent 4bfab30c02
commit c9d9bfab92
1 changed files with 2 additions and 0 deletions

View File

@ -126,6 +126,8 @@ TU_ATTR_USED int sys_write (int fhdl, const void *buf, size_t count)
TU_ATTR_USED int sys_read (int fhdl, char *buf, size_t count)
{
(void) fhdl;
(void) buf;
(void) count;
return 0;
}