chenlh
2025-09-18 ab07ada908b82340e7acd899e85a9802cf8a9057
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
/*****************************************************************************
 * TianGong.h
 *****************************************************************************/
 
#ifndef __TIANGONG_H__
#define __TIANGONG_H__
 
#include "../hw_adapter.h"
 
//Ì칬Ӳ¼þÇý¶¯ÊÊÅä
class tg_hw_adapter_t : public hw_adapter_t
{
private:
public:
    tg_hw_adapter_t(s8 dual_dsp,s8 dsp_index,s8 ana_input_num,s8 ana_output_num,s8 dante_input_num,s8 dante_output_num)
        :hw_adapter_t(dual_dsp,dsp_index,ana_input_num,ana_output_num,dante_input_num,dante_output_num)
    {
    }
 
    //
    uvoid config_board(struct DSPConfig * conf) override;
 
    s32 get_physical_channel(s32 input , s32 logic_channel) override;
};
 
#endif /* __TIANGONG_H__ */