310c4a9ae4
adding docs folder
2017-07-04 11:16:38 -05:00
014dcb8a36
Updated README to close #71
2017-06-28 20:11:05 -05:00
6e93fad1de
README updates following the merge of PR#70 into master
v0.5.9
2017-06-08 20:06:52 -05:00
41d4b84c56
Merge pull request #70 from mzealey/master
...
Extern integer definitions in the header file
2017-06-08 19:19:17 -05:00
024e5d5797
Extern integer definitions in the header file
...
Integers are defined in both the .c and the common.h file leading to linking
issues with the library when used externally and potentially causing issues
within the code as well.
2017-06-08 15:23:32 +00:00
6ddd0e0b14
Closing out Issue #68 by adding 3 CHIP Pro pins able to be used as interrupts
v0.5.8
2017-05-02 22:46:10 -05:00
d4b1d8a41c
adding i2s pins as gpio capable for the chip pro, code to handle per pwm/softpwm cleanup to close #64
v0.5.7
2017-05-01 22:50:17 -05:00
2b48571ee3
Updating setup to allow for repeated calls on a pin. Not totally sold on this, but it work and is what RPi.GPIO does. This will close #63
v0.5.6
2017-03-20 23:06:09 -05:00
38a34e7edf
Updating the README to clean up how to do callbacks for more clarification on #62
2017-03-07 07:22:09 -06:00
f32733bb07
Updating the Readme to add a note regarding one callback per pin
2017-03-06 17:53:34 -06:00
4da0812acd
Fixing issue where using alt name for the XIO would cause a segfault when speficying the pin as an input. This will close #62
v0.5.5
2017-03-06 17:08:05 -06:00
dcd8ea6f40
Re-enabled polarity set on the CHIP PWM, fixed issues that caused me to disable that feature to begin with. This could have been a 1 letter change, but I re-eabled tests in the unit test to validate. This will close #61
2017-03-05 00:49:16 -06:00
29377cf24d
updates to the pytest tests to fix the issues with pwm, added 2 new tests that bring in 5 total unit tests. python3 unit tests are passing, this will close #42 and close #47
2017-02-26 21:04:40 -06:00
f7bec3f891
forgot to update the chip pro detection in Utilties, removed overlay stuff from makefile, cleaned up readme
v0.5.2
2017-02-26 14:07:11 -06:00
48d9343dba
forgot to update the manifest to remove the overlay stuff
2017-02-25 19:43:29 -06:00
bab94f7600
forgot the actual version bump for #32 . gonna close #32 since it's initially done
2017-02-25 19:17:25 -06:00
dab60b334d
version updates prior to merge
2017-02-25 19:09:47 -06:00
c3ead5d395
fixing issues with the code to determine if the computer is a chip/chip pro for #32
2017-02-26 00:50:54 +00:00
121ad398e4
new method for determining if the computer is a chip/chip pro, this fixes the runtimeerror's i was getting. for #32
2017-02-25 17:06:38 -06:00
c21c431b7b
pwm1 works on the chip pro, commit to allow me to reset all the changes that broke stuff on the normal chip
2017-02-25 12:48:36 -06:00
f66740b797
pwm1 and pwm0 working on chip pro. thanks ntc for the awesome led's on the devkit, they're super helpful
2017-02-21 05:26:56 +00:00
ca7d221b33
More work on #32 , Checks for gpio being invalid on specific hardware, pwm invalid checks done. Need to do proper export of PWM1 on CHIP Pro
2017-02-20 05:03:04 +00:00
e179e52b5e
Merge branch 'master' into feature/chippro
2017-02-19 17:57:59 +00:00
fa3108544b
First stab as getting a capability to dump out .deb files for both Python2 and Python3.
2017-02-19 10:06:22 -06:00
c5dbede3c4
Formal initial start at CHIP Pro support. Removed the custom DT Overlays, OverlayManager now pulls dtbo from chip-dt-overlays package from NTC. First commit to CHIP_IO from a CPro DevKit
2017-02-13 05:18:33 +00:00
6bd2e61450
software servo! this implements and will close #41 . also fixed issue with softpwm cleanup(), update to version 0.4.0
v0.4.0
2017-02-07 04:17:09 +00:00
cd85e2b5eb
cleanup of brettcvz's read_byte function, added read_word since he really needs 12 bits of data. finally fixed the gpio cleanup() without argument issue once and for all, sorry for lying howientc
v0.3.5
2017-01-29 22:58:41 +00:00
6beacbb382
Merge pull request #59 from brettcvz/master
...
Added the ability to read a full byte from a set of channels
2017-01-29 15:21:26 -06:00
a498fc12bd
Added the ability to read a full byte from a set of channels
...
For example, you can hook up to the 8 XIO pins and 8 CSID pins to read
a word in just two calls: `GPIO.read_byte("XIO") + GPIO.read_byte("CSID") << 8`
For fast-changing inputs (e.g. reading from a counter), this is more
accurate than reading the bits individually.
2017-01-29 12:32:53 -08:00
2e2177da26
quick fix because i broke xio input setup with the pud code, this closes #58
v0.3.4.1
2017-01-29 20:21:02 +00:00
541d76f641
updating readme to remove the commands that remove the source directory.
2017-01-29 20:10:09 +00:00
2b23e2d165
pull up/down feature addition to close #48 . fixed gpio cleanup() function again, 3rd time is a charm. version bump to 0.3.4
v0.3.4
2017-01-29 03:50:37 +00:00
a839661c3b
randomness for #32 and #48 . cleanup of removing the spi function in common.c/.h since it isn't chip specific
2017-01-28 20:05:53 +00:00
cb4e272a35
adding the code to py_pwm.c to get the error data out of c_pwm.c. general code cleanup. this should close #56 as the softpwm code had the error string support already in it
2017-01-28 19:04:31 +00:00
05b936ca1d
added error string info (a la gpio) to the pwm code for #56
2017-01-28 18:50:09 +00:00
3ff79d43e3
version bump to 0.3.3, cleaning up stuff left over in fixing #40 , start of implementing #56
v0.3.3
2017-01-28 05:41:05 +00:00
40381efa74
fixing issue in the readme where the clone command for the dtc compiler was missing .git
2017-01-28 04:30:48 +00:00
73ae207e16
Copied over 2 new pwm functions from @streamnsight to close #46 . these 2 functions are untested, which is why i'm not updating the readme at the moment.
2017-01-28 04:16:12 +00:00
eafcf0bf69
fixing issue related to loading the SPI2 overlay, forcing use of the sample provided by NTC in their chip-dt-overlays deb package.
2017-01-28 02:34:04 +00:00
bf27e2feea
final updates in the initial addition of debug printing. this should close #55
2017-01-28 02:09:14 +00:00
8221016c10
More updates to the library to add debug printing
2017-01-26 05:55:30 +00:00
bd7f667041
Start of global debug implementation to match the PWM code
2017-01-25 05:07:00 +00:00
8c3dab1ecc
Fix and close #53 . Start of implementation for #55
2017-01-24 05:23:04 +00:00
962049299a
Merge pull request #52 from tryonlinux/master
...
Updated rpigpiomodule to chipgpiomodule so python3 compile works
2017-01-10 21:20:16 -06:00
10e7043269
Fix and close #51 , I wasn't careful in swapping the module name. I thought the name was changed months ago, but eh, fixed now
2017-01-11 03:17:26 +00:00
3b2e334876
Updated rpigpiomodule to chipgpiomodule so python3 compile works
2017-01-10 21:18:44 -05:00
486cf73860
Fix and close #50 , I really don't understand pointers because Python abstracts that all out for me and C does not.
2017-01-10 01:14:16 +00:00
5723bf15b3
Readme updates for callbacks to close #49
2017-01-08 20:45:16 +00:00
6972f352ae
Fixes in LRADC.py for debug printing failing when using Python3. Updates to the README to detail running unit tests for either Python version. Ref #42 and #47
2017-01-06 04:11:12 +00:00
8ecec67bad
Fixing and Closing #43 , #44 , and #45 . setmode() function added, per pin cleanup added for GPIO and SOFTPWM, and README updates
0.3.0
2017-01-05 05:54:14 +00:00