2024-01-22 02:38:20 +01:00
|
|
|
from pycsdr.modules import ExecModule
|
|
|
|
|
from pycsdr.types import Format
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class DablinModule(ExecModule):
|
|
|
|
|
def __init__(self):
|
|
|
|
|
super().__init__(
|
|
|
|
|
Format.CHAR,
|
|
|
|
|
Format.FLOAT,
|
2024-01-23 21:53:31 +01:00
|
|
|
["dablin", "-1", "-p"]
|
2024-01-22 02:38:20 +01:00
|
|
|
)
|