Skip to content

Commit

Permalink
Reverses the effect of the Osc 1 Shape II value for SS (Shaped Saw Wave)
Browse files Browse the repository at this point in the history
  • Loading branch information
risgk committed Aug 26, 2022
1 parent f2dc61e commit c2b49ac
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DigitalSynthVRA8U/osc.h
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,7 @@ class Osc {

int16_t temp;
if (m_waveform[0] == WAVEFORM_1_S_SAW) {
temp = high_sbyte(+m_osc_gain_effective[0] * m_osc1_shape_ii_control);
temp = high_sbyte(+m_osc_gain_effective[0] * (128 - m_osc1_shape_ii_control));
m_osc_gain_effective[3] = temp + temp;
} else if (m_waveform[0] == WAVEFORM_1_PULSE) {
temp = high_sbyte(-m_osc_gain_effective[0] * m_osc1_shape_ii_control);
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

## Change History

- v1.2.1: Reverses the effect of the Osc 1 Shape II value for SS (Shaped Saw Wave)
- v1.2.0: Change the range of Osc 1 Shape from -64 -- +63 to 0 -- 127; Fix the comment on Osc 1 Shape II in VRA8-U CTRL
- v1.1.1: Reduce noise in Chorus Mode M and S2
- v1.1.0: Add SS (Shaped Saw Wave) to Osc 1 Wave; Add Osc 1 Shape II; Reduce noise when Chorus Delay Time changes; Improve Random Ctrl of VRA-8 CTRL not to change Amp Level; Improve notes for $$ and $$$; Other changes
Expand Down
4 changes: 2 additions & 2 deletions VRA8-U-Parameter-List.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
- 127: Pulse Width 0% (min)
- Osc 1 Shape II $$
- Shaped Saw Wave
- 0: Saw 100% + Saw 100% (min)
- 0: Saw 100% + Saw 0% (max)
- 64: Saw 100% + Saw 50%
- 127: Saw 100% + Saw 0% (max)
- 127: Saw 100% + Saw 100% (min)
- Pulse Wave
- 0: Pulse 100% = Saw 100% + Reverse Saw 100% (min)
- 64: Pulse 50% + Saw 50% = Saw 100% + Reverse Saw 50%
Expand Down

0 comments on commit c2b49ac

Please sign in to comment.