Browse Source

Oops, transmit the hires sine low bits properly

dds
PaulStoffregen 8 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

ph += inc; ph += inc;
} }
phase_accumulator = ph; phase_accumulator = ph;
transmit(msw);
transmit(msw, 0);
release(msw); release(msw);
transmit(lsw);
transmit(lsw, 1);
release(lsw); release(lsw);
return; return;
} else { } else {

Loading…
Cancel
Save