Browse Source

Oops, transmit the hires sine low bits properly

dds
PaulStoffregen 9 years ago
parent
commit
03724916e3
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      synth_sine.cpp

+ 2
- 2
synth_sine.cpp View File

@@ -121,9 +121,9 @@ void AudioSynthWaveformSineHires::update(void)
ph += inc;
}
phase_accumulator = ph;
transmit(msw);
transmit(msw, 0);
release(msw);
transmit(lsw);
transmit(lsw, 1);
release(lsw);
return;
} else {

Loading…
Cancel
Save