diff options
author | Daniel Campora <daniel@wipy.io> | 2015-09-13 15:31:17 +0200 |
---|---|---|
committer | Daniel Campora <daniel@wipy.io> | 2015-09-16 10:10:24 +0200 |
commit | d5ec336eefc8d892a1182da747d825155fcecb15 (patch) | |
tree | ba86073fadcc063eaf7e421de73a2363a99dbd6a /tests/wipy/pin.py.exp | |
parent | f38d16483a41313bedef683d331c8cb26af50f14 (diff) | |
download | micropython-d5ec336eefc8d892a1182da747d825155fcecb15.tar.gz micropython-d5ec336eefc8d892a1182da747d825155fcecb15.zip |
cc3200: Replace Pin.PULL_NONE with None.
Diffstat (limited to 'tests/wipy/pin.py.exp')
-rw-r--r-- | tests/wipy/pin.py.exp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/wipy/pin.py.exp b/tests/wipy/pin.py.exp index 4fc60b5d79..7ca85ebdfc 100644 --- a/tests/wipy/pin.py.exp +++ b/tests/wipy/pin.py.exp @@ -28,7 +28,7 @@ 0 0 0 -Pin('GP23', mode=Pin.IN, pull=Pin.PULL_NONE, drive=Pin.MED_POWER, alt=-1) +Pin('GP23', mode=Pin.IN, pull=None, drive=Pin.MED_POWER, alt=-1) Pin('GP23', mode=Pin.IN, pull=Pin.PULL_DOWN, drive=Pin.MED_POWER, alt=-1) Pin('GP23', mode=Pin.OUT, pull=Pin.PULL_UP, drive=Pin.LOW_POWER, alt=-1) Pin('GP23', mode=Pin.OUT, pull=Pin.PULL_UP, drive=Pin.HIGH_POWER, alt=-1) |