rp2040: Fixup lib and example compile for LLVM Embedded Toolchain for ARM

This commit is contained in:
graham sanderson
2023-03-02 14:32:22 -06:00
parent 34798ff85e
commit b7fa90e706
3 changed files with 19 additions and 5 deletions

View File

@@ -413,7 +413,7 @@ void cli_cmd_cat(EmbeddedCli *cli, char *args, void *context)
{
for(UINT c = 0; c < count; c++)
{
const char ch = buf[c];
const uint8_t ch = buf[c];
if (isprint(ch) || iscntrl(ch))
{
putchar(ch);