commit | 5c46b3c9fae0b28bd0f5a962b8398d8716ec613c | [log] [tgz] |
---|---|---|
author | Mark Liffiton <liffiton@gmail.com> | Fri Apr 27 15:24:00 2018 -0500 |
committer | Yang Deokgyu <secugyu@gmail.com> | Tue Aug 27 18:22:53 2019 +0900 |
tree | c0a9e6f538f9a98f9d016671d7805c05eb644abb | |
parent | 1d6da20ab5f620abc29f3c57d798e8334435f1f4 [diff] |
Add constants from wiringShift.h (closes #64)
diff --git a/constants.py b/constants.py index 75ce015..f501698 100644 --- a/constants.py +++ b/constants.py
@@ -38,4 +38,10 @@ INT_EDGE_FALLING = 1; INT_EDGE_RISING = 2; INT_EDGE_BOTH = 3; + +# Shifting (from wiringShift.h) + +LSBFIRST = 0; +MSBFIRST = 1; + %}