Skip to content

Commit

Permalink
fix gpio and sci drivers for RZ
Browse files Browse the repository at this point in the history
  • Loading branch information
newflydd committed Jan 13, 2025
1 parent c120fd3 commit 8c704b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bsp/renesas/libraries/HAL_Drivers/drv_gpio.c
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ static rt_base_t ra_pin_get(const char *name)
{
return (name[1] - '0') * 0x100 + (name[2] - '0') * 10 + (name[3] - '0');
}
LOG_W("Invalid pin expression, use `PXXX` format like `P101`");
LOG_W("Invalid pin expression, use `PXXX` format like `P101`");
#endif
return -RT_ERROR;
}
Expand Down

0 comments on commit 8c704b4

Please sign in to comment.