Skip to content

Commit e5f832d

Browse files
committed
Add a comment that we cannot read the full dump of the Triton yet.
1 parent d26c067 commit e5f832d

1 file changed

Lines changed: 10 additions & 3 deletions

File tree

adaptations/Korg_Triton.py

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -318,9 +318,16 @@ def programs(test_data: testing.TestData) -> List[testing.ProgramTestData]:
318318
patches = extractPatchesFromBank(single_bank)
319319
individual_messages = knobkraft.splitSysex(patches)
320320
yield testing.ProgramTestData(message=individual_messages[0], name="Noisy Stabber ")
321-
#patches = knobkraft.splitSysex(extractPatchesFromBank(bank[0]))
322-
#yield testing.ProgramTestData(message=patches[0], name="Grandbient")
323-
#yield testing.ProgramTestData(message=patches[49], name="ToyNFlt ")
321+
322+
#full_dump = knobkraft.load_sysex("testData/Korg_Triton/full-korgtriton-midiox.syx") # full dump has message code 0x50, which is not implemented yet
323+
#bank_extracted = []
324+
#for message in full_dump:
325+
# if isPartOfBankDump(message):
326+
# bank_extracted.append(bank_extracted)
327+
#assert isBankDumpFinished(bank_extracted)
328+
# individual_messages = knobkraft.splitSysex(patches)
329+
# yield testing.ProgramTestData(message=individual_messages[0], name="Noisy Stabber ")
330+
# yield testing.ProgramTestData(message=individual_messages[3], name="Noisy Stabber ")
324331

325332
def banks(test_data: testing.TestData) -> List:
326333
yield test_data.all_messages[0]

0 commit comments

Comments
 (0)