Skip to content

Commit

Permalink
Merge pull request #1222 from scoudreau/swo_logger
Browse files Browse the repository at this point in the history
Remove unused-parameter errors when LOGGER=swo
  • Loading branch information
hathach committed Dec 7, 2021
2 parents c157837 + c9d9bfa commit cde824f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions hw/bsp/board.c
Expand Up @@ -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;
}

Expand Down

0 comments on commit cde824f

Please sign in to comment.