[beagleboard] Transmit Test Signal Over Ethernet Port

2018-08-21 Thread n8nasan8

Can someone point me in the right direction to write a program on my BBB to 
output on the ethernet a random test signal? 

-how do I configure the ethernet port as an output?
-how do I write?send? from it?

Thanks

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/30749e93-da3a-4817-9ade-5deb27f63993%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] phyton for BeagleBone Black

2018-08-21 Thread hcasalncasal1963

Hello

What is the last  version of Phyton supported for  the BeagleBone Black?  

Thank you

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/6ef70b62-c22f-4170-8fae-8c98d7869881%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] How do I setup the Ethernet port as an output?

2018-08-21 Thread n8nasan8
How do I setup the ethernet port as an output?


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/23f90983-df09-409d-9ea7-4c30d20c816f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] How to force BBB to re-read EDID of new connected display?

2018-08-21 Thread Bill Fleming
On the Debian stretch images for BBB is there an easy way to force the EDID 
to update and/or the display to re-initialize such as if you change the 
connected display (while the BBB is still running)?
I have noticed that I can switch to a different monitor on the HDMI, 
but /sys/devices/platform/ocp/4830e000.lcdc/drm/card0/card0-HDMI-A-1/edid 
will continue to show the information for the display that was connected at 
bootup. (old EDID)

Bill

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/59134874-c21f-45ca-bcd9-a939eab8da72%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Re: header file for CCSv6 & PRU

2018-08-21 Thread Hugh Frater
Hi, I found all the required information in the AM335x TRM pdf file. You 
need to offsets for the I2C module you are using and the base address from 
the memory map.

The programming sequence is all detailed in there under the I2C section.

On Tuesday, 21 August 2018 12:44:01 UTC+1, Gaurav S wrote:
>
> Hugh,
> Thanks for sharing your research.
> Any chance you could also include a reference (ie where did you find this 
> info)?
>
> Thanks
>
> On Friday, August 17, 2018 at 9:43:47 AM UTC-5, Hugh Frater wrote:
>>
>> I forgot this from my previous post:
>>
>> /* I2C2 register offsets */
>>
>> #define I2C2_STATUSRAW (*((volatile unsigned int*)0x4819C024))
>> #define I2C2_CNT (*((volatile unsigned int*)0x4819C098))
>> #define I2C2_SA (*((volatile unsigned int*)0x4819C0AC))
>> #define I2C2_DATA (*((volatile unsigned int*)0x4819C09C))
>> #define I2C2_CON (*((volatile unsigned int*)0x4819C0A4))
>> #define I2C2_SCLL (*((volatile unsigned int*)0x4819C0B4))
>> #define I2C2_SCLH (*((volatile unsigned int*)0x4819C0B8))
>> #define I2C2_PSC (*((volatile unsigned int*)0x4819C0B0))
>>
>> I couldn't be bothered to setup a header file for this lot, so just 
>> stuffed it in the top of my PRU code... Registers for other I2C modules are 
>> in the memory map from the am335X_trm
>>
>> On Tuesday, 14 August 2018 12:29:12 UTC+1, Hugh Frater wrote:
>>>
>>> Does anyone know the header file I need to include to get access to the 
>>> i2c2 control registers from within the PRU subsystem? Having a hard time 
>>> getting any info and my google-foo is usually pretty decent...
>>>
>>

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/49a46d7b-2197-44b9-a6b7-b903e654704a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Re: header file for CCSv6 & PRU

2018-08-21 Thread Gaurav S
Hugh,
Thanks for sharing your research.
Any chance you could also include a reference (ie where did you find this 
info)?

Thanks

On Friday, August 17, 2018 at 9:43:47 AM UTC-5, Hugh Frater wrote:
>
> I forgot this from my previous post:
>
> /* I2C2 register offsets */
>
> #define I2C2_STATUSRAW (*((volatile unsigned int*)0x4819C024))
> #define I2C2_CNT (*((volatile unsigned int*)0x4819C098))
> #define I2C2_SA (*((volatile unsigned int*)0x4819C0AC))
> #define I2C2_DATA (*((volatile unsigned int*)0x4819C09C))
> #define I2C2_CON (*((volatile unsigned int*)0x4819C0A4))
> #define I2C2_SCLL (*((volatile unsigned int*)0x4819C0B4))
> #define I2C2_SCLH (*((volatile unsigned int*)0x4819C0B8))
> #define I2C2_PSC (*((volatile unsigned int*)0x4819C0B0))
>
> I couldn't be bothered to setup a header file for this lot, so just 
> stuffed it in the top of my PRU code... Registers for other I2C modules are 
> in the memory map from the am335X_trm
>
> On Tuesday, 14 August 2018 12:29:12 UTC+1, Hugh Frater wrote:
>>
>> Does anyone know the header file I need to include to get access to the 
>> i2c2 control registers from within the PRU subsystem? Having a hard time 
>> getting any info and my google-foo is usually pretty decent...
>>
>

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/ec0bcc70-1d82-4877-b074-c762337ff4bd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.