Skip to content

Daisy Seed Output Gain Attenuation

Analog attenuation at the output is generally not a concern if the digital levels match the input. This logic is sound for standard hardware configurations.

The output stage is safe, both mathematically and physically, based on how the Daisy Seed hardware operates.

1. The 1:1 Codec Mirror

Audio codecs like the AK4556 are generally designed to be symmetrical. If a \( 0.5V_{pp}\) analog signal is fed into the input, it translates to roughly \(-14\text{dBFS}\) in the digital domain. If the DSP passes that \(-14\text{dBFS}\) signal directly to the output without adding digital gain, the DAC will translate it back to exactly \(0.5V_{pp}\) in the analog world.

The OPA2134 output buffer will then pass that \(0.5V_{pp}\) signal down the cable, meaning the guitar amplifier receives the same instrument-level signal it would have if the instrument were connected directly to it.

2. The Hardware Ceiling

Previously, the focus was on attenuation at the input to protect the Daisy Seed from high-voltage spikes. At the output, the roles are reversed, and the hardware limits are protective.

The Daisy's digital-to-analog converter (DAC) has a hard physical ceiling of roughly \(2.5V_{pp}\) (representing \(0\text{dBFS}\)). It is physically impossible for the Daisy to output a voltage higher than that.

  • The OPA2134 runs on a \(9\text{V}\) supply, providing ample headroom. It will not clip the Daisy's output.
  • Even if the DSP code produces full-volume digital white noise at \(0\text{dBFS}\), the absolute worst-case scenario hitting the amplifier is a \(2.5V_{pp}\) signal. While a \(2.5V_{pp}\) signal is relatively "hot," standard guitar tube amps and analog pedals are robust and can handle such transients without sustaining physical damage.

The Only "Gotcha": Invisible DSP Peaks

While the average wet level might sound identical to the dry level, care must be taken with how DSP math affects invisible transient peaks.

  • Wet/Dry Summing: When building effects like delay or chorus, the wet signal is added on top of the dry signal. If a delayed note aligns in-phase with a dry note, the amplitude doubles (+6dB).
  • Resonant Filters: In effects like wah, phaser, or synth filters, the resonance (Q) at the cutoff frequency can create significant voltage spikes that exceed the original dry signal level.

If these invisible DSP peaks hit 0dBFS inside the Daisy, they will hard-clip digitally before they ever reach the analog output, resulting in that harsh, nasty digital crackle.

The Pro-Tip Solution:

Instead of adding analog pads, this can be handled entirely in code. Placing a transparent digital soft-clipper or limiter at the end of the DSP chain, right before the audio is sent to the DAC, ensures safety. Setting the threshold to \(-0.5\text{dBFS}\) guarantees that the signal will smoothly compress rather than clip the digital converter, preserving the analog output stage.