Re: [beagleboard] Re: BeagleBone Black QNX 6.5.0 SP1

2021-03-03 Thread Lucas SOLDA
Yes I entered these commands in u-boot, I could have automated them but I prefer to write them for the moment. "In theory if you have a license BUT some RTOS companies dont supply BSP source code unless you paid fees So do you need to modify BSP" Yes in theory I agree. I will need to modify

[beagleboard] Re: PWM wave in pocketbeagle

2021-03-03 Thread Dennis Lee Bieber
On Wed, 3 Mar 2021 06:18:40 -0800 (PST), in gmane.comp.hardware.beagleboard.user Rafael Meyer wrote: > >I would like to know how to generate a PWM wave with code in python3. > https://adafruit-bbio.readthedocs.io/en/latest/PWM.html Based upon

[beagleboard] Re: GPIO, libpruio & dtbo Question

2021-03-03 Thread Dennis Lee Bieber
On Wed, 3 Mar 2021 18:11:27 -0500, in gmane.comp.hardware.beagleboard.user Don Pancoe wrote: >The PCBA test program is a long series of while loops, if statements and >timeout counters that wait for inputs and evaluate them, or move on if >they're taking too long. I was thinking of using an

Re: [beagleboard] Re: GPIO, libpruio & dtbo Question

2021-03-03 Thread set_
Hello Sir, Look at this! - https://github.com/beagleboard/BeagleBoard-DeviceTrees - Specifications - DeviceTree - https://github.com/beagleboard/bb.org-overlays - https://github.com/u-boot/u-boot Those should get you updated on

Re: [beagleboard] Re: GPIO, libpruio & dtbo Question

2021-03-03 Thread Don Pancoe
Hello everyone, Thank you for all the input. It's been a busy few days so I'm just getting back to it. First, I was talking about AdafruitBB_IO. I was just being lazy and/or confused in typing BBB_IO, but I now see that BBBIO is a different C library for the

[beagleboard] Re: BBAI PRU-I2C driver

2021-03-03 Thread Fred Frey
Hey, can I flip it around? Becuase I have a question for *you.* Have you managed to get this working on a normal BBB? I'm also trying to develop an i2c driver for the PRU. It almost looks like we started with the same codebase (https://github.com/LinuxDroneLab/pru-i2c-lib), but you have

[beagleboard] TI Processors Wiki Archive

2021-03-03 Thread Fred Frey
Hi all, This isn't strictly related to beagle(board|bone) SOCs, but more about TI's recently taken-down Processor Wiki, which had all sorts of goodies for getting into the lower levels of the AM335x. I foolishly failed to archive the things that I wanted before it was taken down. There is a

[beagleboard] PWM wave in pocketbeagle

2021-03-03 Thread Rafael Meyer
Hello, I am a beginner in programming and acquired a pocketbeagle card. So far I have just configured the pocketbeagle to communicate with the internet and updated the software. I used a simple code from the internet to test the board's leds but I still don't know how to configure the pins.

Re: [beagleboard] Re: BeagleBone Black QNX 6.5.0 SP1

2021-03-03 Thread 'Mark Lazarewicz' via BeagleBoard
Let's start with some history about what rev board you have , what was on SD before and whats in  the emc now and details about tools you installed to build BSP and QNX and exactly the BSP file's you are compiling as well as your goals. Are you trying to eventually modify the BSP source?I'm

[beagleboard] Re: latest machinekit image isn't loading uio dtb

2021-03-03 Thread TJF
In debian LTS-5_4 (20-05-18) there is no uio_pruss driver. See https://groups.google.com/g/beagleboard/c/WhS8mHDWY58/m/1Ip8wMO9AQAJ No answer yet. -- For more options, visit http://beagleboard.org/discuss --- You received this message because you are subscribed to the Google Groups

[beagleboard] Re: GPIO, libpruio & dtbo Question

2021-03-03 Thread TJF
Hello Don Pancoe! Why do you think you'll need an IRQ for the "abort" button? Drop Adafruit_BBIO! Just setup the GPIO in libpruio and poll the state in your main loop (or in a timered thread). Regards donp...@gmail.com schrieb am Montag, 1. März 2021 um 19:27:01 UTC+1: > Hello all, > > I have