分支自 DSP/ADSP21569/DSP-21569

graydon
2023-09-20 d40b58b3ecbfb79e015f55755127849335e289b7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * F2F.h
 *
 *  Created on: 2021Äê11ÔÂ2ÈÕ
 *      Author: graydon
 */
 
#ifndef F2F_H_
#define F2F_H_
 
#include "typedefs.h"
 
#ifdef __cplusplus
extern "C" {
#endif
 
 
uvoid SetNumOfChannels(u16 rxNum, u16 txNum);
uvoid SetRxChannelPtr(u32 channel, ufloat* rxBuffer);
uvoid SetTxChannelPtr(u32 channel, ufloat* txBuffer);
uvoid UpdateInput(u32 index);
uvoid UpdateOutput(u32 index);
uvoid MuteOutput();
uvoid SetTxRxNullBufferPtr();
 
#ifdef __cplusplus
}
#endif
#endif /* F2F_H_ */