Added simple looper for showing CPU and memory usage every second.

pull/4/head
Holger Wirtz 7 years ago
parent 09e67e9c92
commit 1d282f5d81
  1. 47
      MicroDexed.ino

@ -5,26 +5,27 @@
// (c)2018 H. Wirtz <wirtz@parasitstudio.de> // (c)2018 H. Wirtz <wirtz@parasitstudio.de>
// //
#include <Audio.h>
#include <Wire.h>
#include <SPI.h>
#include <SD.h>
#include <SerialFlash.h>
#include <TeensyThreads.h>
#include <QueueArray.h> #include <QueueArray.h>
#include <MIDI.h> #include <MIDI.h>
#include <looper.h>
#include "dexed.h" #include "dexed.h"
#define AUDIO_MEM 16 #define AUDIO_MEM 8
#define AUDIO_BUFFER_SIZE 128 #define AUDIO_BUFFER_SIZE 128
#define SAMPLEAUDIO_BUFFER_SIZE 44100 #define SAMPLEAUDIO_BUFFER_SIZE 44100
#define MIDI_QUEUE_LOCK_TIMEOUT_MS 5 #define MIDI_QUEUE_LOCK_TIMEOUT_MS 5
//#define INIT_AUDIO_QUEUE 1
#define TEST_MIDI 1 #define TEST_MIDI 1
#define TEST_NOTE1 60 #define TEST_NOTE1 60
#define TEST_NOTE2 68 #define TEST_NOTE2 68
#include <Audio.h>
#include <Wire.h>
#include <SPI.h>
#include <SD.h>
#include <SerialFlash.h>
#include <TeensyThreads.h>
typedef struct typedef struct
{ {
uint8_t cmd; uint8_t cmd;
@ -44,12 +45,12 @@ MIDI_CREATE_INSTANCE(HardwareSerial, Serial1, MIDI);
Dexed* dexed = new Dexed(SAMPLEAUDIO_BUFFER_SIZE); Dexed* dexed = new Dexed(SAMPLEAUDIO_BUFFER_SIZE);
QueueArray <midi_queue_t> midi_queue; QueueArray <midi_queue_t> midi_queue;
Threads::Mutex midi_queue_lock; Threads::Mutex midi_queue_lock;
looper sched;
void setup() void setup()
{ {
while (!Serial) ; // wait for Arduino Serial Monitor
Serial.begin(115200); Serial.begin(115200);
//while (!Serial) ; // wait for Arduino Serial Monitor
delay(300);
Serial.println(F("MicroDexed based on https://github.com/asb2m10/dexed")); Serial.println(F("MicroDexed based on https://github.com/asb2m10/dexed"));
Serial.println(F("(c)2018 H. Wirtz")); Serial.println(F("(c)2018 H. Wirtz"));
Serial.println(F("setup start")); Serial.println(F("setup start"));
@ -64,10 +65,11 @@ void setup()
sgtl5000_1.volume(0.4); sgtl5000_1.volume(0.4);
// Initialize processor and memory measurements // Initialize processor and memory measurements
//AudioProcessorUsageMaxReset(); AudioProcessorUsageMaxReset();
//AudioMemoryUsageMaxReset(); AudioMemoryUsageMaxReset();
// initial fill audio buffer #ifdef INIT_AUDIO_QUEUE
// initial fill audio buffer with empty data
while (queue1.available()) while (queue1.available())
{ {
int16_t* audio_buffer = queue1.getBuffer(); int16_t* audio_buffer = queue1.getBuffer();
@ -77,6 +79,7 @@ void setup()
queue1.playBuffer(); queue1.playBuffer();
} }
} }
#endif
dexed->activate(); dexed->activate();
@ -93,6 +96,8 @@ void setup()
threads.addThread(audio_thread, 1); threads.addThread(audio_thread, 1);
sched.addJob(cpu_and_mem_usage, 1000);
Serial.println(F("setup end")); Serial.println(F("setup end"));
} }
@ -119,6 +124,8 @@ void loop()
midi_queue_lock.unlock(); midi_queue_lock.unlock();
} }
} }
sched.scheduler();
} }
void audio_thread(void) void audio_thread(void)
@ -154,3 +161,17 @@ void audio_thread(void)
queue1.playBuffer(); queue1.playBuffer();
} }
} }
void cpu_and_mem_usage(void)
{
Serial.print(F("CPU:"));
Serial.print(AudioProcessorUsage(), DEC);
Serial.print(F(" CPU MAX:"));
Serial.print(AudioProcessorUsageMax(), DEC);
Serial.print(F(" MEM:"));
Serial.print(AudioMemoryUsage(), DEC);
Serial.print(F(" MEM MAX:"));
Serial.print(AudioMemoryUsageMax(), DEC);
Serial.println();
}

Loading…
Cancel
Save