mirror of
https://github.com/DualTachyon/uv-k5-firmware.git
synced 2024-11-27 08:59:52 +08:00
Fixed type in DTMF_IsGroupCall.
This commit is contained in:
parent
1fdbee743c
commit
974c21fb41
2
dtmf.c
2
dtmf.c
@ -118,7 +118,7 @@ bool DTMF_CompareMessage(const char *pDTMF, const char *pTemplate, uint8_t Size,
|
||||
return true;
|
||||
}
|
||||
|
||||
bool DTMF_IsGroupCall(const uint8_t *pDTMF, uint32_t Size)
|
||||
bool DTMF_IsGroupCall(const char *pDTMF, uint32_t Size)
|
||||
{
|
||||
uint32_t i;
|
||||
|
||||
|
2
dtmf.h
2
dtmf.h
@ -27,7 +27,7 @@ bool DTMF_GetContact(uint8_t Index, char *pContact);
|
||||
bool DTMF_FindContact(const char *pContact, char *pResult);
|
||||
char DTMF_GetCharacter(uint8_t Code);
|
||||
bool DTMF_CompareMessage(const char *pDTMF, const char *pTemplate, uint8_t Size, bool bFlag);
|
||||
bool DTMF_IsGroupCall(const uint8_t *pDTMF, uint32_t Size);
|
||||
bool DTMF_IsGroupCall(const char *pDTMF, uint32_t Size);
|
||||
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user