Skip to content

Commit

Permalink
Supported DOC Global Reverb Depth On.
Browse files Browse the repository at this point in the history
  • Loading branch information
PoneyClairDeLune committed Apr 22, 2024
1 parent cc4adb2 commit ab878ae
Show file tree
Hide file tree
Showing 7 changed files with 110 additions and 99 deletions.
14 changes: 7 additions & 7 deletions dist/basic.mjs

Large diffs are not rendered by default.

48 changes: 24 additions & 24 deletions dist/cambiare.mjs

Large diffs are not rendered by default.

42 changes: 21 additions & 21 deletions dist/state.mjs

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions dist/state_skim.mjs

Large diffs are not rendered by default.

54 changes: 27 additions & 27 deletions dist/xp_basic.mjs

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions dist/xp_state.mjs

Large diffs are not rendered by default.

11 changes: 11 additions & 0 deletions src/state/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3197,6 +3197,17 @@ let OctaviaDevice = class extends CustomEventSource {
} else {
console.debug(`Unknown Yamaha SysEx: 67, ${id}, ${msg.join(', ')}`);
};
}).add([1, 24], (msg, track, id) => {
if (id == 115) {
// DOC global reverb depth on
for (let ch = 0; ch < 16; ch ++) {
let part = upThis.chRedir(ch, track, true);
upThis.#cc[part * allocated.cc + ccToPos[91]] = 127;
};
console.info("DOC Global Reverb: on");
} else {
console.debug(`Unknown Yamaha SysEx: 67, ${id}, ${msg.join(', ')}`);
};
});
// DX7 Dumps
// Placeholder until further documentation
Expand Down

0 comments on commit ab878ae

Please sign in to comment.