mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2026-04-05 07:15:35 -04:00
Added MMC support by Rui Nuno Capela <rncbc@rncbc.org>
MMC support has been improved and transport LEDs is getting almost functional. Tascam control protocol sysex decoding is also complete (LEDs control mainly).
This commit is contained in:
parent
9615f45528
commit
5313c94163
7 changed files with 541 additions and 35 deletions
|
|
@ -148,8 +148,17 @@ struct us428_lights{
|
|||
public:
|
||||
enum eLight{
|
||||
eL_Select0 = 0,
|
||||
eL_Rec0 = 8,
|
||||
eL_Mute0 = 16,
|
||||
eL_InputMonitor = 25
|
||||
eL_Solo = 24,
|
||||
eL_InputMonitor = 25,
|
||||
eL_BankL = 26,
|
||||
eL_BankR = 27,
|
||||
eL_Rew = 28,
|
||||
eL_FFwd = 29,
|
||||
eL_Play = 30,
|
||||
eL_Record = 31,
|
||||
eL_Null
|
||||
};
|
||||
bool LightIs(int L){
|
||||
return Light[L / 8].Value & (1 << (L % 8));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue