-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ce3f825
commit 4a63c8b
Showing
4 changed files
with
37 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# | ||
# Copyright (c) 2025 Christof Ruch. All rights reserved. | ||
# | ||
# Dual licensed: Distributed under Affero GPL license by default, an MIT license is available for purchase | ||
# | ||
from typing import List | ||
|
||
import sequential | ||
import sys | ||
|
||
import testing | ||
|
||
this_module = sys.modules[__name__] | ||
|
||
# | ||
# Configure the GenericSequential module | ||
# | ||
synth = sequential.GenericSequential(name="Sequential Trigon-6", | ||
device_id=0b00111001, | ||
banks=10, | ||
patches_per_bank=128, | ||
name_len=20, | ||
name_position=100, | ||
).install(this_module) | ||
|
||
|
||
# Test data picked up by test_adaptation.py | ||
def make_test_data(): | ||
def programs(data: testing.TestData) -> List[testing.ProgramTestData]: | ||
yield testing.ProgramTestData(message=data.all_messages[2], name='Dakota Chorale', number=2) | ||
yield testing.ProgramTestData(message=data.all_messages[127], name='Oil Cans', number=127) | ||
|
||
return testing.TestData(sysex="testData/Sequential_Trigon6/T6_Programs_v1.0.syx", program_generator=programs) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.