incremental MixingConsole integration fix

pull/495/head
Vincent GAUCHE 2 years ago
parent 278bf6de8e
commit 104c3a5a1f
  1. 10
      .vscode/c_cpp_properties.json
  2. 28
      .vscode/settings.json
  3. 54
      src/CFileDevice.hpp
  4. 3
      src/kernel.cpp
  5. 15
      src/minidexed.cpp
  6. 33
      src/mixing_console.hpp
  7. 4
      src/userinterface.cpp
  8. 6
      src/userinterface.h

@ -1,7 +1,7 @@
{ {
"configurations": [ "configurations": [
{ {
"name": "Win32", "name": "RaspberryPI",
"includePath": [ "includePath": [
"${workspaceFolder}/src/**", "${workspaceFolder}/src/**",
"${workspaceFolder}/CMSIS_5/CMSIS/Core/Include/**", "${workspaceFolder}/CMSIS_5/CMSIS/Core/Include/**",
@ -12,17 +12,13 @@
], ],
"defines": [ "defines": [
"_DEBUG", "_DEBUG",
"UNICODE",
"_UNICODE",
"RPI=4", "RPI=4",
"ARM_ALLOW_MULTI_CORE" "ARM_ALLOW_MULTI_CORE"
], ],
"windowsSdkVersion": "10.0.19041.0",
"compilerPath": "cl.exe",
"cStandard": "c17", "cStandard": "c17",
"cppStandard": "c++20", "cppStandard": "c++20",
"intelliSenseMode": "windows-msvc-x64", "compilerPath": "",
"configurationProvider": "ms-vscode.makefile-tools" "intelliSenseMode": "linux-clang-arm64"
} }
], ],
"version": 4 "version": 4

@ -82,7 +82,33 @@
"span": "cpp", "span": "cpp",
"regex": "cpp", "regex": "cpp",
"valarray": "cpp", "valarray": "cpp",
"shared_mutex": "cpp" "shared_mutex": "cpp",
"xlocbuf": "cpp",
"charconv": "cpp",
"codecvt": "cpp",
"coroutine": "cpp",
"csetjmp": "cpp",
"csignal": "cpp",
"cuchar": "cpp",
"filesystem": "cpp",
"format": "cpp",
"locale": "cpp",
"queue": "cpp",
"scoped_allocator": "cpp",
"stack": "cpp",
"typeindex": "cpp",
"xfacet": "cpp",
"xlocinfo": "cpp",
"xlocmes": "cpp",
"xlocmon": "cpp",
"xlocnum": "cpp",
"xloctime": "cpp",
"xmemory": "cpp",
"xstddef": "cpp",
"xtr1common": "cpp",
"xtree": "cpp",
"netfwd": "cpp",
"*.def": "cpp"
}, },
"C_Cpp.errorSquiggles": "disabled", "C_Cpp.errorSquiggles": "disabled",
"C_Cpp.intelliSenseEngine": "Tag Parser", "C_Cpp.intelliSenseEngine": "Tag Parser",

@ -0,0 +1,54 @@
#pragma once
#include "extra_features.h"
#include <circle/device.h>
#include <fatfs/ff.h>
#include <fstream>
#include <iostream>
#include <sstream>
#include <cassert>
class CFileDevice : public CDevice
{
DISALLOW_COPY_AND_ASSIGN(CFileDevice);
private:
CFileDevice()
: m_file(new FIL())
{
FRESULT res = f_open(this->m_file, "SD:/debuglog.txt", FA_WRITE | FA_CREATE_ALWAYS);
assert(res == FR_OK);
}
public:
static void UseMeForLogger()
{
CLogger::Get()->SetNewTarget(&CFileDevice::GetInstance());
}
static CFileDevice& GetInstance()
{
static CFileDevice Instance;
return Instance;
}
~CFileDevice()
{
f_sync(this->m_file);
f_close(this->m_file);
}
virtual int Write(const void* pBuffer, size_t nCount) override
{
UINT nb;
f_write(this->m_file, pBuffer, nCount, &nb);
f_sync(this->m_file);
return (int)nb;
}
private:
FIL* m_file;
};

@ -22,6 +22,8 @@
#include <circle/synchronize.h> #include <circle/synchronize.h>
#include <assert.h> #include <assert.h>
#include "CFileDevice.hpp"
LOGMODULE ("kernel"); LOGMODULE ("kernel");
CKernel *CKernel::s_pThis = 0; CKernel *CKernel::s_pThis = 0;
@ -50,6 +52,7 @@ bool CKernel::Initialize (void)
return FALSE; return FALSE;
} }
CFileDevice::UseMeForLogger();
mLogger.RegisterPanicHandler (PanicHandler); mLogger.RegisterPanicHandler (PanicHandler);
if (!m_GPIOManager.Initialize ()) if (!m_GPIOManager.Initialize ())

@ -149,8 +149,7 @@ CMiniDexed::CMiniDexed (
this->setMasterVolume(1.0); this->setMasterVolume(1.0);
#if defined(MIXING_CONSOLE_ENABLE) #if defined(MIXING_CONSOLE_ENABLE)
this->m_UI.log("Init Mixing Console..."); this->mixing_console_ = new Mixer(static_cast<float32_t>(pConfig->GetSampleRate()), CConfig::MaxChunkSize);
this->mixing_console_ = new Mixer(static_cast<float32_t>(pConfig->GetSampleRate()), pConfig->GetChunkSize() / 2);
for (uint8_t i = 0; i < CConfig::ToneGenerators; i++) for (uint8_t i = 0; i < CConfig::ToneGenerators; i++)
{ {
this->mixing_console_->setInputSampleBuffer(i, m_OutputLevel[i]); this->mixing_console_->setInputSampleBuffer(i, m_OutputLevel[i]);
@ -315,10 +314,10 @@ bool CMiniDexed::Initialize (void)
return false; return false;
} }
#ifndef ARM_ALLOW_MULTI_CORE #if defined(ARM_ALLOW_MULTI_CORE)
m_pSoundDevice->SetWriteFormat (SoundFormatSigned16, 1); // 16-bit Mono
#else
m_pSoundDevice->SetWriteFormat (SoundFormatSigned16, 2); // 16-bit Stereo m_pSoundDevice->SetWriteFormat (SoundFormatSigned16, 2); // 16-bit Stereo
#else
m_pSoundDevice->SetWriteFormat (SoundFormatSigned16, 1); // 16-bit Mono
#endif #endif
m_nQueueSizeFrames = m_pSoundDevice->GetQueueSizeFrames (); m_nQueueSizeFrames = m_pSoundDevice->GetQueueSizeFrames ();
@ -332,7 +331,7 @@ bool CMiniDexed::Initialize (void)
return false; return false;
} }
#endif #endif
return true; return true;
} }
@ -447,7 +446,7 @@ void CMiniDexed::Run (unsigned nCore)
m_pTG[nTG]->getSamples (m_OutputLevel[nTG],m_nFramesToProcess); m_pTG[nTG]->getSamples (m_OutputLevel[nTG],m_nFramesToProcess);
#if defined(MIXING_CONSOLE_ENABLE) #if defined(MIXING_CONSOLE_ENABLE)
this->mixing_console_->preProcessInputSampleBuffer(nTG); this->mixing_console_->preProcessInputSampleBuffer(nTG, this->m_nFramesToProcess);
#endif #endif
} }
} }
@ -1765,7 +1764,7 @@ void CMiniDexed::ProcessSound (void)
m_pTG[i]->getSamples (m_OutputLevel[i], nFrames); m_pTG[i]->getSamples (m_OutputLevel[i], nFrames);
#if defined(MIXING_CONSOLE_ENABLE) #if defined(MIXING_CONSOLE_ENABLE)
this->mixing_console_->preProcessInputSampleBuffer(i); this->mixing_console_->preProcessInputSampleBuffer(i, nFrames);
#endif #endif
} }

@ -49,7 +49,7 @@ public:
inline void setInputSample(size_t in, float32_t sampleL, float32_t sampleR); inline void setInputSample(size_t in, float32_t sampleL, float32_t sampleR);
inline void setInputSampleBuffer(size_t in, float32_t* samples); inline void setInputSampleBuffer(size_t in, float32_t* samples);
inline void setInputSampleBuffer(size_t in, float32_t* samplesL, float32_t* samplesR); inline void setInputSampleBuffer(size_t in, float32_t* samplesL, float32_t* samplesR);
inline void preProcessInputSampleBuffer(size_t in); inline void preProcessInputSampleBuffer(size_t in, size_t nSamples);
// Return section // Return section
inline void setReturnLevel(MixerOutput ret, MixerOutput dest, float32_t lvl); inline void setReturnLevel(MixerOutput ret, MixerOutput dest, float32_t lvl);
@ -87,6 +87,7 @@ private:
float32_t* input_sample_buffer_[StereoChannels::kNumChannels][nb_inputs]; float32_t* input_sample_buffer_[StereoChannels::kNumChannels][nb_inputs];
float32_t input_samples_[StereoChannels::kNumChannels][nb_inputs + MixerOutput::kFXCount - 1]; float32_t input_samples_[StereoChannels::kNumChannels][nb_inputs + MixerOutput::kFXCount - 1];
float32_t levels_[MixerOutput::kFXCount][nb_inputs + MixerOutput::kFXCount - 1]; float32_t levels_[MixerOutput::kFXCount][nb_inputs + MixerOutput::kFXCount - 1];
volatile size_t m_nSamples;
FXElement* fx_[MixerOutput::kFXCount]; FXElement* fx_[MixerOutput::kFXCount];
FXUnit2<Tube>* tube_; FXUnit2<Tube>* tube_;
@ -317,7 +318,8 @@ private:
template<size_t nb_inputs> template<size_t nb_inputs>
MixingConsole<nb_inputs>::MixingConsole(float32_t sampling_rate, size_t buffer_size) : MixingConsole<nb_inputs>::MixingConsole(float32_t sampling_rate, size_t buffer_size) :
FXBase(sampling_rate), FXBase(sampling_rate),
BufferSize(buffer_size) BufferSize(buffer_size),
m_nSamples(0)
{ {
for(size_t i = 0; i < nb_inputs; ++i) for(size_t i = 0; i < nb_inputs; ++i)
{ {
@ -433,29 +435,33 @@ void MixingConsole<nb_inputs>::setInputSampleBuffer(size_t in, float32_t* sample
} }
template<size_t nb_inputs> template<size_t nb_inputs>
void MixingConsole<nb_inputs>::preProcessInputSampleBuffer(size_t in) void MixingConsole<nb_inputs>::preProcessInputSampleBuffer(size_t in, size_t nSamples)
{ {
assert(in < nb_inputs); assert(in < nb_inputs);
assert(nSamples <= this->BufferSize);
float32_t* samples = this->tg_input_sample_buffer_[in]; float32_t* samples = this->tg_input_sample_buffer_[in];
if(samples != nullptr) if(samples == nullptr) return;
this->m_nSamples = nSamples;
if(nSamples > 0)
{ {
if(this->pan_[StereoChannels::Left ][in] != 0.0f) if(this->pan_[StereoChannels::Left ][in] != 0.0f)
{ {
arm_scale_f32(samples, this->pan_[StereoChannels::Left ][in], this->input_sample_buffer_[StereoChannels::Left ][in], this->BufferSize); arm_scale_f32(samples, this->pan_[StereoChannels::Left ][in], this->input_sample_buffer_[StereoChannels::Left ][in], nSamples);
} }
else else
{ {
memset(this->input_sample_buffer_[StereoChannels::Left ][in], 0, this->BufferSize * sizeof(float32_t)); memset(this->input_sample_buffer_[StereoChannels::Left ][in], 0, nSamples * sizeof(float32_t));
} }
if(this->pan_[StereoChannels::Right][in] != 0.0f) if(this->pan_[StereoChannels::Right][in] != 0.0f)
{ {
arm_scale_f32(samples, this->pan_[StereoChannels::Right][in], this->input_sample_buffer_[StereoChannels::Right][in], this->BufferSize); arm_scale_f32(samples, this->pan_[StereoChannels::Right][in], this->input_sample_buffer_[StereoChannels::Right][in], nSamples);
} }
else else
{ {
memset(this->input_sample_buffer_[StereoChannels::Right][in], 0, this->BufferSize * sizeof(float32_t)); memset(this->input_sample_buffer_[StereoChannels::Right][in], 0, nSamples * sizeof(float32_t));
} }
} }
else else
@ -590,15 +596,15 @@ void MixingConsole<nb_inputs>::reset()
template<size_t nb_inputs> template<size_t nb_inputs>
void MixingConsole<nb_inputs>::processSample(float32_t& outL, float32_t& outR) void MixingConsole<nb_inputs>::processSample(float32_t& outL, float32_t& outR)
{ {
const size_t bufferSize = nb_inputs + MixerOutput::kFXCount - 1; const size_t nBuffers = nb_inputs + MixerOutput::kFXCount - 1;
float32_t fx_inputs_[MixerOutput::kFXCount][StereoChannels::kNumChannels]; float32_t fx_inputs_[MixerOutput::kFXCount][StereoChannels::kNumChannels];
float32_t fx_outputs_[MixerOutput::kFXCount][StereoChannels::kNumChannels]; float32_t fx_outputs_[MixerOutput::kFXCount][StereoChannels::kNumChannels];
for(size_t i = 0; i < MixerOutput::kFXCount; ++i) for(size_t i = 0; i < MixerOutput::kFXCount; ++i)
{ {
// Compute the samples that will feed the MixerOutput and process MixerOutput // Compute the samples that will feed the MixerOutput and process MixerOutput
fx_inputs_[i][StereoChannels::Left ] = arm_weighted_sum_f32(this->input_samples_[StereoChannels::Left ], this->levels_[i], bufferSize); fx_inputs_[i][StereoChannels::Left ] = arm_weighted_sum_f32(this->input_samples_[StereoChannels::Left ], this->levels_[i], nBuffers);
fx_inputs_[i][StereoChannels::Right] = arm_weighted_sum_f32(this->input_samples_[StereoChannels::Right], this->levels_[i], bufferSize); fx_inputs_[i][StereoChannels::Right] = arm_weighted_sum_f32(this->input_samples_[StereoChannels::Right], this->levels_[i], nBuffers);
// Process the FX // Process the FX
this->fx_[i]->processSample( this->fx_[i]->processSample(
@ -627,7 +633,8 @@ void MixingConsole<nb_inputs>::processSample(float32_t& outL, float32_t& outR)
template<size_t nb_inputs> template<size_t nb_inputs>
void MixingConsole<nb_inputs>::process(float32_t* outL, float32_t* outR) void MixingConsole<nb_inputs>::process(float32_t* outL, float32_t* outR)
{ {
for(size_t s = 0; s < this->BufferSize; ++s) size_t nSamples = this->m_nSamples;
for(size_t s = 0; s < nSamples; ++s)
{ {
for(size_t in = 0; in < nb_inputs; ++in) for(size_t in = 0; in < nb_inputs; ++in)
{ {
@ -642,6 +649,8 @@ void MixingConsole<nb_inputs>::process(float32_t* outL, float32_t* outR)
++outL; ++outL;
++outR; ++outR;
} }
this->m_nSamples = 0;
} }
template<size_t nb_inputs> template<size_t nb_inputs>

@ -236,7 +236,7 @@ void CUserInterface::DisplayWrite (const char *pMenu, const char *pParam, const
LCDWrite (Msg); LCDWrite (Msg);
} }
// #if defined(DEBUG) #if defined(DEBUG)
#include <sstream> #include <sstream>
#include <iomanip> #include <iomanip>
#include <sstream> #include <sstream>
@ -319,7 +319,7 @@ void CUserInterface::log(int v, bool clear)
} }
} }
// #endif #endif // DEBUG
void CUserInterface::LCDWrite (const char *pString) void CUserInterface::LCDWrite (const char *pString)
{ {

@ -60,16 +60,16 @@ public:
// To be called from the MIDI device on reception of a MIDI CC message // To be called from the MIDI device on reception of a MIDI CC message
void UIMIDICmdHandler (unsigned nMidiCh, unsigned nMidiCmd, unsigned nMidiData1, unsigned nMidiData2); void UIMIDICmdHandler (unsigned nMidiCh, unsigned nMidiCmd, unsigned nMidiData1, unsigned nMidiData2);
// #ifdef DEBUG #if defined(DEBUG)
public: public:
void clear(); void clear();
void log(const char* txt, bool clear = true); void log(const char* txt, bool clear = true);
void log(float32_t v, bool clear = true); void log(float32_t v, bool clear = true);
void log(unsigned v, bool clear = true); void log(unsigned v, bool clear = true);
void log(int v, bool clear = true); void log(int v, bool clear = true);
// #else #endif
private: private:
// #endif
void LCDWrite (const char *pString); // Print to optional HD44780 display void LCDWrite (const char *pString); // Print to optional HD44780 display
private: private:

Loading…
Cancel
Save