mirror of
https://github.com/g4klx/MMDVM.git
synced 2026-05-07 13:37:48 +00:00
GetAudio do not take any arguments
This commit is contained in:
parent
9170c398be
commit
1c599138ad
7 changed files with 22 additions and 18 deletions
|
|
@ -126,9 +126,9 @@ void CFMCTCSSTX::getAudio(q15_t* samples, uint8_t length)
|
|||
}
|
||||
}
|
||||
|
||||
q15_t CFMCTCSSTX::getAudio(q15_t sample)
|
||||
q15_t CFMCTCSSTX::getAudio()
|
||||
{
|
||||
sample += m_values[m_n++];
|
||||
q15_t sample = m_values[m_n++];
|
||||
if(m_n >= m_length)
|
||||
m_n = 0U;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue