Skip to content

Commit 76b8465

Browse files
committed
SPI RAM
1 parent 5a17117 commit 76b8465

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/examples-audiokit/streams-audiokit-ram-audiokit/streams-audiokit-ram-audiokit.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @file streams-audiokit-sd-audiokit.ino
33
* @author Phil Schatzmann
4-
* @brief We record the input from the microphone to a file and constantly repeat to play the file
4+
* @brief We record the input from the microphone to SPI RAM and constantly repeat to play the file
55
* The input is triggered by pressing key 1. Recording stops when key 1 is released!
66
* @version 0.1
77
* @date 2022-09-01
@@ -16,7 +16,7 @@
1616
uint16_t sample_rate = 16000;
1717
uint8_t channels = 1; // The stream will have 2 channels
1818
AudioKitStream kit;
19-
MemoryManager memory(500); // Activate PSRAM for objects > 500 bytes
19+
MemoryManager memory(500); // Activate SPI RAM for objects > 500 bytes
2020
DynamicMemoryStream recording(true); // Audio Stored on heap (PSRAM)
2121
StreamCopy copier; // copies data
2222
bool is_recording = false; // flag to make sure that close is only executed one

0 commit comments

Comments
 (0)