1
0
mirror of https://github.com/xtacocorex/CHIP_IO synced 2025-07-20 12:53:22 +00:00

Some fixes for the py.test modules. There are still errors and the softpwm stuff is still segfaulting

This commit is contained in:
Robert Wolterman
2016-07-03 12:01:58 -05:00
parent 9ee83c0b38
commit 54f14a88af
3 changed files with 10 additions and 4 deletions

View File

@ -9,8 +9,10 @@ def teardown_module(module):
class TestSoftpwmSetup:
def test_start_pwm(self):
PWM.start("XIO-P7", 50, 10)
assert os.path.exists('/sys/class/gpio/gpio415')
direction = open('/sys/class/gpio/gpio415/direction').read()
base = GPIO.get_gpio_base() + 7
gfile = '/sys/class/gpio/gpio%d' % base
assert os.path.exists(base)
direction = open(base + '/direction').read()
assert direction == 'out\n'
PWM.cleanup()