codegen: added Pasokon modes to test harness

This commit is contained in:
András Veres-Szentkirályi 2016-04-20 19:49:43 +02:00
parent 23a2e2bd00
commit 810f604a5a

View file

@ -37,10 +37,10 @@ class Image(object):
def __str__(self):
return self.content
from pysstv.color import MartinM1, MartinM2
from pysstv.color import MartinM1, MartinM2, PasokonP3, PasokonP5, PasokonP7
import re
supported = [MartinM1, MartinM2]
supported = [MartinM1, MartinM2, PasokonP3, PasokonP5, PasokonP7]
ROW_RE = re.compile(r'ROW\(\d+\)')
def main(sstv_class=None):