Added ESP32 side of the transceiver

This commit is contained in:
Denakosg945
2026-06-04 17:01:14 +03:00
parent bcf7bede0f
commit fa830b2c37
2303 changed files with 497306 additions and 0 deletions
@@ -0,0 +1,29 @@
import pytest
from . import util
@pytest.mark.slow
class TestRenamedFunc(util.F2PyTest):
sources = [
util.getpath("tests", "src", "routines", "funcfortranname.f"),
util.getpath("tests", "src", "routines", "funcfortranname.pyf"),
]
module_name = "funcfortranname"
def test_gh25799(self):
assert dir(self.module)
assert self.module.funcfortranname_default(200, 12) == 212
@pytest.mark.slow
class TestRenamedSubroutine(util.F2PyTest):
sources = [
util.getpath("tests", "src", "routines", "subrout.f"),
util.getpath("tests", "src", "routines", "subrout.pyf"),
]
module_name = "subrout"
def test_renamed_subroutine(self):
assert dir(self.module)
assert self.module.subrout_default(200, 12) == 212