This website works better with JavaScript.
Home
Explore
Help
Sign In
visus
/
teensy-audio
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
fix SPDIF2 for Teensy 3.x
dds
Frank Bösing
6 years ago
parent
b50e2b14ea
commit
3f0e8cec49
1 changed files
with
0 additions
and
11 deletions
Unified View
Show Diff Stats
+0
-11
output_spdif2.cpp
+ 0
- 11
output_spdif2.cpp
View File
}
}
#else
void AudioOutputSPDIF2::update(void)
{
audio_block_t *block;
block = receiveReadOnly(0); // input 0 = left channel
if (block) release(block);
block = receiveReadOnly(1); // input 1 = right channel
if (block) release(block);
}
#endif
#endif
Write
Preview
Loading…
Cancel
Save