Skip to content

Commit b4f6339

Browse files
committed
README streams-memory_raw-i2s
1 parent af3e2c5 commit b4f6339

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

examples/examples-stream/streams-memory_raw-i2s/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ Somtimes we want to store the sound file in memory. [Audacity](https://www.audac
44

55
Then you can convert the file with xxd into a C file that contains the data in an array. In the Sketch I am using the __MemoryStream class__ which turns the array into a Stream.
66

7-
Unlike in the other examples I am using the typed __StreamCopyT<int16_t>__ class together with the __copy2()__ method. This reads the one channel input and copies it as 2 channels to the destination I2S stream.
8-
97
Please note that you must compile this sketch with the __Partition Scheme: Huge App__!
108

119

examples/examples-stream/streams-memory_raw-i2s/streams-memory_raw-i2s.ino

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @file streams-memory_raw-i2s_external_dac.ino
2+
* @file streams-memory_raw-i2s.ino
33
* @author Phil Schatzmann
44
* @brief Compile with Partition Scheme Hughe APP!
55
* @version 0.1
@@ -23,7 +23,6 @@ void setup(){
2323
auto config = i2s.defaultConfig(TX_MODE);
2424
config.copyFrom(info);
2525
i2s.begin(config);
26-
2726
}
2827

2928
void loop(){

0 commit comments

Comments
 (0)