mirror of
https://github.com/espressif/openthread.git
synced 2026-09-18 07:00:08 +00:00
[style] make parameter names consistent across decls and defs (#3705)
This commit is contained in:
committed by
Jonathan Hui
parent
d32ca03a8b
commit
49c4b63491
@@ -106,9 +106,9 @@ void otPlatDebugUart_vprintf(const char *fmt, va_list ap);
|
||||
*
|
||||
* This function MUST be implemented by the platform
|
||||
*
|
||||
* @param[in] the_byte what to transmit
|
||||
* @param[in] c what to transmit
|
||||
*/
|
||||
void otPlatDebugUart_putchar_raw(int the_byte);
|
||||
void otPlatDebugUart_putchar_raw(int c);
|
||||
|
||||
/**
|
||||
* Poll/test debug uart if a key has been pressed.
|
||||
@@ -138,9 +138,9 @@ int otPlatDebugUart_getc(void);
|
||||
* A WEAK default implementation is provided
|
||||
* that can be overridden as needed.
|
||||
*
|
||||
* @param[in] the_byte the byte to transmit
|
||||
* @param[in] c the byte to transmit
|
||||
*/
|
||||
void otPlatDebugUart_putchar(int the_byte);
|
||||
void otPlatDebugUart_putchar(int c);
|
||||
|
||||
/**
|
||||
* identical to "man 3 puts" - terminates with lf
|
||||
|
||||
Reference in New Issue
Block a user