Fixed type in DTMF_IsGroupCall.

This commit is contained in:
Dual Tachyon 2023-08-27 15:39:00 +01:00
parent 1fdbee743c
commit 974c21fb41
2 changed files with 2 additions and 2 deletions

2
dtmf.c
View File

@ -118,7 +118,7 @@ bool DTMF_CompareMessage(const char *pDTMF, const char *pTemplate, uint8_t Size,
return true; return true;
} }
bool DTMF_IsGroupCall(const uint8_t *pDTMF, uint32_t Size) bool DTMF_IsGroupCall(const char *pDTMF, uint32_t Size)
{ {
uint32_t i; uint32_t i;

2
dtmf.h
View File

@ -27,7 +27,7 @@ bool DTMF_GetContact(uint8_t Index, char *pContact);
bool DTMF_FindContact(const char *pContact, char *pResult); bool DTMF_FindContact(const char *pContact, char *pResult);
char DTMF_GetCharacter(uint8_t Code); char DTMF_GetCharacter(uint8_t Code);
bool DTMF_CompareMessage(const char *pDTMF, const char *pTemplate, uint8_t Size, bool bFlag); 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 #endif