mirror of
https://github.com/DualTachyon/uv-k5-firmware.git
synced 2025-02-17 17:50:43 +08:00
Fixed type in UI_PrintString.
This commit is contained in:
parent
6555eb8959
commit
d84d27f8f8
@ -70,7 +70,7 @@ void UI_GenerateChannelStringEx(char *pString, bool bShowPrefix, uint8_t Channel
|
||||
}
|
||||
}
|
||||
|
||||
void UI_PrintString(const char *pString, uint8_t Start, uint8_t End, uint8_t Line, int Width, bool bCentered)
|
||||
void UI_PrintString(const char *pString, uint8_t Start, uint8_t End, uint8_t Line, uint8_t Width, bool bCentered)
|
||||
{
|
||||
uint32_t i, Length;
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
|
||||
void UI_GenerateChannelString(char *pString, uint8_t Channel);
|
||||
void UI_GenerateChannelStringEx(char *pString, bool bShowPrefix, uint8_t ChannelNumber);
|
||||
void UI_PrintString(const char *pString, uint8_t Start, uint8_t End, uint8_t Line, int Width, bool bCentered);
|
||||
void UI_PrintString(const char *pString, uint8_t Start, uint8_t End, uint8_t Line, uint8_t Width, bool bCentered);
|
||||
void UI_DisplayFrequency(const char *pDigits, uint8_t X, uint8_t Y, bool bDisplayLeadingZero, bool bFlag);
|
||||
void UI_DisplaySmallDigits(uint8_t Size, const char *pString, uint8_t X, uint8_t Y);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user