Re: [beagleboard] Beaglebone Black libraries for GPIO access in C/C++?

2021-06-16 Thread jonnymo
>> --Brandon >> >> On Wednesday, June 4, 2014 2:26:32 PM UTC-7, john3909 wrote: >>> >>> >>> From: Tony DiCola >>> Reply-To: >>> Date: Wednesday, June 4, 2014 at 8:29 AM >>> To: >>> Subject: Re: [beagleboard] Beaglebone

Re: [beagleboard] Beaglebone Black libraries for GPIO access in C/C++?

2021-06-16 Thread Mohammad Walihullah
> > On Wednesday, June 4, 2014 2:26:32 PM UTC-7, john3909 wrote: >> >> >> From: Tony DiCola >> Reply-To: >> Date: Wednesday, June 4, 2014 at 8:29 AM >> To: >> Subject: Re: [beagleboard] Beaglebone Black libraries for GPIO access in >> C/C++? &

Re: [beagleboard] Beaglebone Black libraries for GPIO access in C/C++?

2014-06-04 Thread Micka
William Hermans, how did you controlled the GPIO ? The only way that I know is with : /sys/class/gpio/gpio%d/value but you talk about mmap ? How did you use it with this /sys/class/gpio/gpio%d/value ? Thx you, Micka, On Tue, Jun 3, 2014 at 11:57 PM, William Hermans yyrk...@gmail.com

Re: [beagleboard] Beaglebone Black libraries for GPIO access in C/C++?

2014-06-04 Thread Jack Mitchell
There is also libsoc [1] [1] https://github.com/jackmitch/libsoc On 03/06/2014 22:45, Jacek Radzikowski wrote: shameless plug https://github.com/piranha32/IOoo /shameless plug j. On Tue, Jun 3, 2014 at 5:42 PM, Tony DiCola t...@tonydicola.com wrote: Sorry if this is a common question, but

Re: [beagleboard] Beaglebone Black libraries for GPIO access in C/C++?

2014-06-04 Thread Tony DiCola
Thanks for the replies everyone--looks like some nice libraries to check out. Regarding memory mapped GPIO, check out this nice blog post for more info: http://vabi-robotics.blogspot.com/2013/10/register-access-to-gpios-of-beaglebone.html You can effectively map the GPIO registers to a process'

Re: [beagleboard] Beaglebone Black libraries for GPIO access in C/C++?

2014-06-04 Thread John Syn
From: Tony DiCola t...@tonydicola.com Reply-To: beagleboard@googlegroups.com Date: Wednesday, June 4, 2014 at 8:29 AM To: beagleboard@googlegroups.com Subject: Re: [beagleboard] Beaglebone Black libraries for GPIO access in C/C++? Thanks for the replies everyone--looks like some nice

Re: [beagleboard] Beaglebone Black libraries for GPIO access in C/C++?

2014-06-04 Thread Brandon I
...@googlegroups.com javascript: Subject: Re: [beagleboard] Beaglebone Black libraries for GPIO access in C/C++? Thanks for the replies everyone--looks like some nice libraries to check out. Regarding memory mapped GPIO, check out this nice blog post for more info: http://vabi

[beagleboard] Beaglebone Black libraries for GPIO access in C/C++?

2014-06-03 Thread Tony DiCola
Sorry if this is a common question, but I've searched around the web and the forum here and am curious are there any somewhat mature or popular libraries for simple digital GPIO access on the Beaglebone Black in C/C++? I'm curious if there's anything like wiringPi or similar for the BBB yet.

Re: [beagleboard] Beaglebone Black libraries for GPIO access in C/C++?

2014-06-03 Thread Jack Mitchell
There is also libsoc [1] [1] https://github.com/jackmitch/libsoc On 03/06/2014 22:45, Jacek Radzikowski wrote: shameless plug https://github.com/piranha32/IOoo /shameless plug j. On Tue, Jun 3, 2014 at 5:42 PM, Tony DiCola t...@tonydicola.com wrote: Sorry if this is a common question, but

Re: [beagleboard] Beaglebone Black libraries for GPIO access in C/C++?

2014-06-03 Thread Cody Lacey
Arduino like librarys. http://beagleboard.org/project/userspace-arduino/ On Tue, Jun 3, 2014 at 5:08 PM, Jack Mitchell m...@communistcode.co.uk wrote: There is also libsoc [1] [1] https://github.com/jackmitch/libsoc On 03/06/2014 22:45, Jacek Radzikowski wrote: shameless plug

Re: [beagleboard] Beaglebone Black libraries for GPIO access in C/C++?

2014-06-03 Thread Cody Lacey
Arduino like libraries. http://beagleboard.org/project/userspace-arduino/ On Tue, Jun 3, 2014 at 5:08 PM, Jack Mitchell m...@communistcode.co.uk wrote: There is also libsoc [1] [1] https://github.com/jackmitch/libsoc On 03/06/2014 22:45, Jacek Radzikowski wrote: shameless plug

Re: [beagleboard] Beaglebone Black libraries for GPIO access in C/C++?

2014-06-03 Thread William Hermans
Jack, so low level how does your library access GPIO ? Isthis just a wrapper for mmap or sysfs ? Same question to you cody. On Tue, Jun 3, 2014 at 3:25 PM, Cody Lacey c...@beagleboard.org wrote: Arduino like libraries. http://beagleboard.org/project/userspace-arduino/ On Tue, Jun 3,

Re: [beagleboard] Beaglebone Black libraries for GPIO access in C/C++?

2014-06-03 Thread Cody Lacey
Userspace-arduino is a wrapper for sysfs, so not low level, but it does provide the abstraction and familiarity for those comfortable with the arduino way of doing things. On Tue, Jun 3, 2014 at 5:50 PM, William Hermans yyrk...@gmail.com wrote: Jack, so low level how does your library access

Re: [beagleboard] Beaglebone Black libraries for GPIO access in C/C++?

2014-06-03 Thread William Hermans
Ah ok, so in my own case it's something I'd just rather skip. Being that I'm not much for arduino, and even less for processing, and the arduino library abstraction. These things are good I suppose for people who just want to get something done and dont care how it is achieved. But also is less