[beagleboard] Re: BBB 24-bit LCD using device tree

2014-09-02 Thread David Anders
 http://elinux.org/24bit_LCD_for_BBB

-- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] miniDisplay Cape - Looking for sample code

2014-07-17 Thread David Anders

Mark,

ahh right that was already fixed, i am not sure how i uploaded an older 
version where it wasn't fixed...

i'll update the tarball and add links to your code as well...

Dave

On Wednesday, July 16, 2014 11:23:59 AM UTC-5, Mark A. Yoder wrote:

 Dave:
   I found the color problem.  There were some incorrect indices on pixel[]. 
  I've alse changed the code a bit so Boris will render much faster.  Rather 
 than sending one RGB pixel at a time I'm seen 768/3.  I got the idea from 
 fillScreenBards(). Here's my displayimage(). 

 void displayimage(){
 char pixel[5], *data = header_data;
 int i = width * height;
 Transfer tbuffer[128*128*3+1];
 void *buff_ptr = tbuffer;
  LCDSendCommand(1, 0x2C);
 int j = 0;
 while(i--  0) {
 HEADER_PIXEL(data,pixel);
  tbuffer[j+0].data=(*pixel[2]*  0xff);
 tbuffer[j+0].type=1;
  tbuffer[j+1].data=(*pixel[1]*  0xff);
 tbuffer[j+1].type=1;
  tbuffer[j+2].data=(*pixel[0]*  0xff);
 tbuffer[j+2].type=1;
 j +=3;
 }
 // SPIWriteChunk(buff_ptr, 128*128*3);
 for(i=0;i128;i++){
 SPIWriteChunk(buff_ptr, 768);
 buff_ptr += 768;
 }
 }

 *Why do you only write 768 bytes at a time to the SPI?*

 With only small changes the code here[1] drives the miniDisplay and sends 
 a bmp file to it.

 --Mark

 [1] https://github.com/jeidon/cfa_bmp_loader.git 

 On Wednesday, July 16, 2014 12:00:03 PM UTC-4, David Anders wrote:

 Mark,


 On Wednesday, July 16, 2014 8:42:31 AM UTC-5, Mark A. Yoder wrote:

 It works!  Thanks.  Though the background on Boris is greenish.


 that is odd! we've not had any reports of that issue during our testing. 
 it is possible that the SPI timing could be off giving you a slightly 
 shifted color spectrum, or possible the display is damaged. please email 
 sup...@boardzoo.com and we'll get another minidisplay cape out to you to 
 test...

  

 There is a typo on the wiki.  The tar command produces a directory 
 called Minidisplay-example with a capital M.


 sorry about that, the elinux.org wiki automatically makes the first 
 letter of file uploads a capital. the original file was not capital

  

 I also had to run echo -10  /sys/devices/bone_capemgr.*/slots 
 before echo BB-SPIDEV0  /sys/devices/bone_capemgr.*/slots to disable a pwm 
 that was in conflict.


 had you previously loaded another device tree entry with PWM?

  

 Thanks again...  


 i did not get a chance yesterday to document it, but the header file for 
 the boris image was generated using GIMP's export feature. it would be easy 
 enough to add a parser to decode bmp or png files...

 Dave



-- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] miniDisplay Cape - Looking for sample code

2014-07-17 Thread David Anders
Mark,


On Wednesday, July 16, 2014 11:23:59 AM UTC-5, Mark A. Yoder wrote:



 *Why do you only write 768 bytes at a time to the SPI?*



no specific reason other than that is the size of one line on the display...

Dave
 

-- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] miniDisplay Cape - Looking for sample code

2014-07-17 Thread David Anders
Mark,

i wont have time to do any testing until late next week, but iirc, we had 
been able to write an entire frame at once...

Dave


On Thursday, July 17, 2014 2:07:03 PM UTC-5, Mark A. Yoder wrote:

 Hmmm I tried sending 1024 and the display didn't show anything.  Maybe 
 you can only send one line at a time.

 --Mark

 On Thursday, July 17, 2014 3:02:38 PM UTC-4, David Anders wrote:

 Mark,


 On Wednesday, July 16, 2014 11:23:59 AM UTC-5, Mark A. Yoder wrote:



 *Why do you only write 768 bytes at a time to the SPI?*



 no specific reason other than that is the size of one line on the 
 display...

 Dave
  



-- 
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.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Re: Concerns with Battery Cape?

2014-07-15 Thread David Anders


On Tuesday, July 15, 2014 10:42:49 AM UTC-5, rar76 wrote:

 I bought a battery cape for BBB last year.  I just bought 8 eneloop 2500 
 mah AA batteries for it, but I noticed the cape is discontinued.  Was there 
 issues with the cape and BBB?


there were no direct issues with the battery cape when used with the 
BeagleBone or BeagleBone Black, however the design of the cape was not 
optimal both from an electrical and cost perspective. further production of 
the cape has been discontinued in favor of a redesigned cape with battery 
operations as the primary goal. we currently do not have a scheduled 
release date for the new battery cape.

Dave
 

-- 
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.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Re: miniDisplay Cape - Looking for sample code

2014-07-15 Thread David Anders
Mark,

hmm thought we had the spidev example code on the wiki, but it appears that 
we do not. we'll get that posted today. in the mean time, you can look at 
Matt Porters presentation on using SPI display devices as a linux kernel 
framebuffer:

http://elinux.org/images/1/19/Passing_Time_With_SPI_Framebuffer_Driver.pdf

the video is available here:

http://free-electrons.com/pub/video/2012/elc/elc-2012-porter-spi-framebuffer-driver-450p.webm

Dave


On Tuesday, July 15, 2014 10:35:04 AM UTC-5, Mark A. Yoder wrote:

 I just got a miniDisplay Cape from CircuitCo[1].  It's a slick looking 
 128x128 color display, but I can find drivers for it.

 Does anyone have sample code for the miniDisplay Cape?

 --Mark

 [1] http://elinux.org/CircuitCo:MiniDisplay_Cape


-- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] miniDisplay Cape - Looking for sample code

2014-07-15 Thread David Anders
Hopefully the developer will respond. 

already did... 

-- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] miniDisplay Cape - Looking for sample code

2014-07-15 Thread David Anders
Mark,

the stock BB-SPIDEV0-00A0 device tree entry will enable the SPIDEV device 
driver. once that is done, you can talk directly to the lcd from userspace. 
we have a small C demo program that allows you to read an image file and 
display it on the lcd. this should be easy enough to do from any of the 
other scripting languages as well. i'll get that pushed to the wiki page 
later today.

there are a number of existing examples of people using similar lcd panels 
with arduino and other dev boards:

http://engineersofthecorn.blogspot.com/2012/06/beaglebone-and-adafruit-18-spi-lcd.html
http://blog.inbedded.net/blog/2013/06/02/beaglebone-black-and-lcd-equals-fun/
http://guy.carpenter.id.au/gaugette/2014/01/28/controlling-an-adafruit-spi-oled-with-a-beaglebone-black/


Dave


On Tuesday, July 15, 2014 12:10:59 PM UTC-5, Mark A. Yoder wrote:

 David:
   Thanks for updating [1] so quickly.

 Do you have any out-if-the-box demos that show how to use the miniDisplay 
 Cape?

 --Mark

 [1] http://elinux.org/CircuitCo:MiniDisplay_Cape

 On Tuesday, July 15, 2014 12:25:05 PM UTC-4, David Anders wrote:

 Hopefully the developer will respond. 

 already did... 



-- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] miniDisplay Cape - Looking for sample code

2014-07-15 Thread David Anders
Mark,

sample code and basic info has been updated:

http://elinux.org/CircuitCo:MiniDisplay_Cape#Software_Support_.26_Compatibility

Dave


On Tuesday, July 15, 2014 1:45:23 PM UTC-5, Mark A. Yoder wrote:

 David:
   I'm looking forward to seeing your example.  A simple working example 
 goes a long to way to understanding the device.

 --Mark

 On Tuesday, July 15, 2014 1:22:50 PM UTC-4, David Anders wrote:

 Mark,

 the stock BB-SPIDEV0-00A0 device tree entry will enable the SPIDEV device 
 driver. once that is done, you can talk directly to the lcd from userspace. 
 we have a small C demo program that allows you to read an image file and 
 display it on the lcd. this should be easy enough to do from any of the 
 other scripting languages as well. i'll get that pushed to the wiki page 
 later today.

 there are a number of existing examples of people using similar lcd 
 panels with arduino and other dev boards:


 http://engineersofthecorn.blogspot.com/2012/06/beaglebone-and-adafruit-18-spi-lcd.html

 http://blog.inbedded.net/blog/2013/06/02/beaglebone-black-and-lcd-equals-fun/

 http://guy.carpenter.id.au/gaugette/2014/01/28/controlling-an-adafruit-spi-oled-with-a-beaglebone-black/


 Dave


 On Tuesday, July 15, 2014 12:10:59 PM UTC-5, Mark A. Yoder wrote:

 David:
   Thanks for updating [1] so quickly.

 Do you have any out-if-the-box demos that show how to use the 
 miniDisplay Cape?

 --Mark

 [1] http://elinux.org/CircuitCo:MiniDisplay_Cape

 On Tuesday, July 15, 2014 12:25:05 PM UTC-4, David Anders wrote:

 Hopefully the developer will respond. 

 already did... 



-- 
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.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Re: BeagleBone Black RTC?

2014-07-07 Thread David Anders
or just purchase a RTC Cape

http://elinux.org/CircuitCo:RTC_Cape for $29.99MSRP


On Friday, February 1, 2013 1:51:51 AM UTC-6, Alexander Holler wrote:

 Hello, 

 I've ust had a look at the specs for BeagleBone Black. 

 As usual, my first question was: Does it support RTC operation? 

 Having a first look at the schematics, it does not look like it is 
 possible to connect some coin battery or similiar to drive the processor 
 in RTC only mode. Am I right and this another non-RTC design which needs 
 an external RTC connected to I2C or similiar? 

 Regards, 

 Alexander 



-- 
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.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Re: BeagleBone Black RTC?

2014-07-07 Thread David Anders
Fisher,

good luck, as Gerald said, making it work is going to be an extreme 
challenge, which is why we specifically created the RTC Cape.

Dave

On Monday, July 7, 2014 11:04:24 AM UTC-5, Fisher Grubb wrote:

 Hi David,

 Yes, I have also seen small boards from Adafruit, though if I need an RTC 
 and it is possible to implement a fully functional one with the current 
 board by just adding a battery, I wouldn't add any extra components, 
 especially since the RTC in the CPU seems to have wake up events.

 I am doing a Masters project in control systems at university and am 
 hoping to either not have any external boards or at least very minimal.

 I will probably make my own board and won't add an RTC if I can implement 
 one with what is already on the BBB, especially as it may have more 
 features such as wake ups which a general I2C RTC won't have I don't think.

 Fisher

 On Tuesday, 8 July 2014 01:54:22 UTC+10, David Anders wrote:

 or just purchase a RTC Cape

 http://elinux.org/CircuitCo:RTC_Cape for $29.99MSRP


 On Friday, February 1, 2013 1:51:51 AM UTC-6, Alexander Holler wrote:

 Hello, 

 I've ust had a look at the specs for BeagleBone Black. 

 As usual, my first question was: Does it support RTC operation? 

 Having a first look at the schematics, it does not look like it is 
 possible to connect some coin battery or similiar to drive the processor 
 in RTC only mode. Am I right and this another non-RTC design which needs 
 an external RTC connected to I2C or similiar? 

 Regards, 

 Alexander 



-- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] BeagleBoard SBC Goes OEM, COM Version Coming

2014-06-18 Thread David Anders
Short and Sweet

BlueSteel-Basic and all other BlueSteel products are manufactured in the 
Richardson, Texas on site of Circuitco.

the benefits for BlueSteel products have been carefully considered to 
provide the follow benefits:

* no restrictions on commercial usage

* volume price discounts

* Enable Third Party Software Vendors to provide commercial SDKs

* all I/O is available on the expansion header

as an OEM/ODM developer, the BeagleBone Black presents a great starting 
point, however it does present a number of obstacles, in that 
BeagleBoard.org has significant restrictions on the use of the BeagleBoard 
logo and the use of the board in commercial products:

http://www.elinux.org/Beagleboard:BeagleBoneBlack#Terms_of_Use

In addition, there a limited set of authorized distributors who can sell 
BeagleBone Black, and they are limited in the number of boards they can 
sell to a single customer. For example you can look at the Adafruit website:

*Limit 1 (one) per customer, orders cannot be combined.*

http://www.adafruit.com/products/1876

Another aspect is that most OEM/ODM developers who are including the 
BeagleBone Black (in violation of the terms of use) want to have the full 
set of I/O on the expansion header so that they can implement their own 
features on a daughter board. It is far easier to add a feature you need on 
a daughter board, than to remove features you don’t need from the main 
board.
This very same principle of commercial usage has already been recognized by 
Embest which has released their own version of a BeagleBone Black clone for 
the same target market. Logic Supply has a very good discussion of the 
issues:

http://www.logicsupply.com/blog/2014/05/15/new-embest-board-opens-door-for-beaglebone-black-projects/







On Wednesday, June 18, 2014 7:31:00 PM UTC-5, Bill Traynor wrote:

 On Wed, Jun 18, 2014 at 1:19 AM, William Hermans yyr...@gmail.com 
 javascript: wrote: 
  From what I could gather from the article, these are embest ./ element14 
  boards. Kind of hard to read through as one part of the article seems 
 like 
  it's implying one thing, where in another it seems to go another 
 direction. 
  
  

 The board is produced by CircuitCo.  It's a great little board with 
 just the right stuff removed to make it more palatable for some.  I 
 like it a lot. 

  On Tue, Jun 17, 2014 at 10:16 PM, John Syn john...@gmail.com 
 javascript: wrote: 
  
  
  From: William Hermans yyr...@gmail.com javascript: 
  Reply-To: beagl...@googlegroups.com javascript: 
 beagl...@googlegroups.com javascript: 
  Date: Tuesday, June 17, 2014 at 9:17 PM 
  To: beagl...@googlegroups.com javascript: 
 beagl...@googlegroups.com javascript: 
  Subject: Re: [beagleboard] BeagleBoard SBC Goes OEM, COM Version Coming 
  
  Funny how these articles always seem to report stuff that's either 
  incorrect or not entirely accurate. 
  
  I think the overlying information given by the site is nice to know ( 
 such 
  as new hardware being released ), but their actual write-ups are 
 nothing 
  more than FUD. The article you linked to had several points of 
  misinformation, such as the BBB's processor speed ( but somehow they 
 managed 
  to get it right in the table of board differences ). 
  
  Anyway, the board sound interesting, but personally I think they went 
 the 
  wrong direction in removing the eMMC. and am pretty sure it can be 
 disabled 
  via device tree overlays if additional IO's are needed ( which really 
 wont 
  give you many back anyway.).HDMI on the other hand, I'd never miss. 
  
  Looks like the same board as the BBB with the eMMC and HDMI chips not 
  populated. I’m sure Gerald  circuitco have analyzed the market 
 requirement 
  and this is what the market wants. If you have the numbers, I’m sure 
 they 
  will manufacture a batch with the eMMC populated or you could always 
 add it 
  yourself. 
  
  
  
  Don't even get me started with Angstrom is prefered by most / more 
  professional developers . . . Because that is plain B.S.  Also the 
  statement Moving to the more user friendly Debian 
   . . . Is fairly hilarious. Mainly because many long time users of 
 other 
  distro's seem to have a hard time grasping the concepts of a more 
  traditional Linux distro like Debian. For the record though this 
 statement 
  is accurate as Debian actually has real / proper documentation. Where 
  Angstrom falls flat on its face 
  
  I could go on, and on, but the fact is that real professionals are 
 going 
  to use what makes the most sense for their project. If they want small, 
  Angstrom is probably the last thing in their minds. QNX, or Busybox on 
 a 
  microkernel come to mind far ahead of anything else. 
  
  
  On Tue, Jun 17, 2014 at 6:44 PM, John Syn john...@gmail.com 
 javascript: wrote: 
  
  
  
 http://www.linux.com/news/embedded-mobile/mobile-linux/777154-beaglebone-sbc-goes-oem-com-version-coming
  
  
  Interesting how we are the last to know about this! 
  
  

Re: [beagleboard] BeagleBoard SBC Goes OEM, COM Version Coming

2014-06-18 Thread David Anders

http://www.beagleboard.org/about

On Wednesday, June 18, 2014 7:53:49 PM UTC-5, William Hermans wrote:

 Hi Scott,

 Thanks for clarifying. I guess I found the whole write-up at LinuxGizmos 
 rather confusing. Part of the problem on my behalf is that I guess I've 
 viewed Circuitco, and beagleboard.org as kind of the same entity. The 
 other part of my confusion is that the write-up seems to be all over the 
 place.


 On Wed, Jun 18, 2014 at 5:30 PM, Bill Traynor btra...@gmail.com 
 javascript: wrote:

 On Wed, Jun 18, 2014 at 1:19 AM, William Hermans yyr...@gmail.com 
 javascript: wrote:
  From what I could gather from the article, these are embest ./ element14
  boards. Kind of hard to read through as one part of the article seems 
 like
  it's implying one thing, where in another it seems to go another 
 direction.
 
 

 The board is produced by CircuitCo.  It's a great little board with
 just the right stuff removed to make it more palatable for some.  I
 like it a lot.

  On Tue, Jun 17, 2014 at 10:16 PM, John Syn john...@gmail.com 
 javascript: wrote:
 
 
  From: William Hermans yyr...@gmail.com javascript:
  Reply-To: beagl...@googlegroups.com javascript: 
 beagl...@googlegroups.com javascript:
  Date: Tuesday, June 17, 2014 at 9:17 PM
  To: beagl...@googlegroups.com javascript: 
 beagl...@googlegroups.com javascript:
  Subject: Re: [beagleboard] BeagleBoard SBC Goes OEM, COM Version Coming
 
  Funny how these articles always seem to report stuff that's either
  incorrect or not entirely accurate.
 
  I think the overlying information given by the site is nice to know ( 
 such
  as new hardware being released ), but their actual write-ups are 
 nothing
  more than FUD. The article you linked to had several points of
  misinformation, such as the BBB's processor speed ( but somehow they 
 managed
  to get it right in the table of board differences ).
 
  Anyway, the board sound interesting, but personally I think they went 
 the
  wrong direction in removing the eMMC. and am pretty sure it can be 
 disabled
  via device tree overlays if additional IO's are needed ( which really 
 wont
  give you many back anyway.).HDMI on the other hand, I'd never miss.
 
  Looks like the same board as the BBB with the eMMC and HDMI chips not
  populated. I’m sure Gerald  circuitco have analyzed the market 
 requirement
  and this is what the market wants. If you have the numbers, I’m sure 
 they
  will manufacture a batch with the eMMC populated or you could always 
 add it
  yourself.
 
 
 
  Don't even get me started with Angstrom is prefered by most / more
  professional developers . . . Because that is plain B.S.  Also the
  statement Moving to the more user friendly Debian
   . . . Is fairly hilarious. Mainly because many long time users of 
 other
  distro's seem to have a hard time grasping the concepts of a more
  traditional Linux distro like Debian. For the record though this 
 statement
  is accurate as Debian actually has real / proper documentation. Where
  Angstrom falls flat on its face
 
  I could go on, and on, but the fact is that real professionals are 
 going
  to use what makes the most sense for their project. If they want small,
  Angstrom is probably the last thing in their minds. QNX, or Busybox on 
 a
  microkernel come to mind far ahead of anything else.
 
 
  On Tue, Jun 17, 2014 at 6:44 PM, John Syn john...@gmail.com 
 javascript: wrote:
 
 
  
 http://www.linux.com/news/embedded-mobile/mobile-linux/777154-beaglebone-sbc-goes-oem-com-version-coming
 
  Interesting how we are the last to know about this!
 
  Regards,
 
  John
 
 
  --
  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...@googlegroups.com javascript:.
  For more options, visit https://groups.google.com/d/optout.
 
 
  --
  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...@googlegroups.com javascript:.
  For more options, visit https://groups.google.com/d/optout.
 
  --
  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...@googlegroups.com javascript:.
  For more options, visit https://groups.google.com/d/optout.
 
 
  --
  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] Re: Beagle Bone Black Motor control

2014-06-18 Thread David Anders
Swazoo,

the new Moto Cape from Circuitco (available first week of July) is based on 
the Arduino Moto Shield with the L298 
(https://www.sparkfun.com/products/9815). the schematic and design files 
for both the Moto Shield and Moto Cape are released under open source 
Creative Commons license are available as a reference:

http://www.elinux.org/CircuitCo:Moto_Cape#Moto_Cape_Revision_A1

feel free to use it as an example implementation, or wait until the Moto 
Cape is available at Boardzoo.com:

http://boardzoo.com/index.php/beaglebone-black/motocape.html

On Wednesday, June 18, 2014 2:24:14 PM UTC-5, Swazoo Claybon wrote:


 Can I control a motor using the same circuit setups as with the arduino [I 
 plan on using a 24V dc motor and a 22.3V Li - ion battery

 example --
 http://garagelab.com/profiles/blogs/tutorial-l293d-h-bridge-dc-motor-controller-with-arduino


 http://api.ning.com/files/jFhR10F2nKDm5cJ0p2jcpgHpKd4hNPz01QgMS8OF6QUh82aIgvr-dp1uzQSopb*PQgSlhFEgj5ALhek3X56Zq6xDZuw-9vwD/l293dmontagem.jpeg
 I assume so because all I need to control the DC motor using the h-bridge 
 is a PWM signal, and the BBB has 8 of those. If I am wrong, could somebody 
 please point me in the right direction or maybe give me a step by step 
 guide of how to control motors using the BBB using Debian.
 Also, are there any protective measures I should take (involving the 
 circuitry) to protect my BBB other than what is shown in the pic.\

 Thanks ahead of time!


-- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Get a Cape design manufactured by ? (CircuitCo?)

2014-03-30 Thread David Anders
circuitco is not currently accepting any new clients for cape 
manufacturing...

Dave


On Friday, March 28, 2014 7:23:36 AM UTC-5, Gerald wrote:

 Well, I suggest you ask Circuitco.

 Gerald



 On Fri, Mar 28, 2014 at 3:18 AM, rl.b...@gmail.com javascript: wrote:

 Hi!

 I have engineered a Beaglebone/BBB compatible Cape for Home-Automation 
 offering interfaces to KNX, Enocean and Onewire (4x) - the first two being 
 especially popular in Europe. Having built and sold two runs with the 
 second run of ten prototypes having no issues on both BB and BBB I would 
 like to have it manufactured and offered to a broader audience. Thanks to 
 legislation in Germany it is quite a big hassle to meet all requirements to 
 sell it on my own.

 I somehow remember there once was a call where ten cape designs were 
 selected for manufacturing by CircuitCo? Is there still some opportunity 
 like this around?

 Best regards
 Robert
  
 -- 
 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...@googlegroups.com javascript:.
 For more options, visit https://groups.google.com/d/optout.




-- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Get a Cape design manufactured by ? (CircuitCo?)

2014-03-30 Thread David Anders

lisarden,

circuitco is not even accepting for pay cape clients currently...

Dave

On Sunday, March 30, 2014 2:29:01 PM UTC-5, lisarden wrote:

 if you pay for 1k, then CCO will accept it just like any other PCBA. IMHO


 2014-03-30 19:07 GMT+04:00 David Anders dande...@gmail.com javascript:
 :

 circuitco is not currently accepting any new clients for cape 
 manufacturing...

 Dave



 On Friday, March 28, 2014 7:23:36 AM UTC-5, Gerald wrote:

 Well, I suggest you ask Circuitco.

 Gerald



 On Fri, Mar 28, 2014 at 3:18 AM, rl.b...@gmail.com wrote:

 Hi!

 I have engineered a Beaglebone/BBB compatible Cape for Home-Automation 
 offering interfaces to KNX, Enocean and Onewire (4x) - the first two being 
 especially popular in Europe. Having built and sold two runs with the 
 second run of ten prototypes having no issues on both BB and BBB I would 
 like to have it manufactured and offered to a broader audience. Thanks to 
 legislation in Germany it is quite a big hassle to meet all requirements 
 to 
 sell it on my own.

 I somehow remember there once was a call where ten cape designs were 
 selected for manufacturing by CircuitCo? Is there still some opportunity 
 like this around?

 Best regards
 Robert
  
 -- 
 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...@googlegroups.com.

 For more options, visit https://groups.google.com/d/optout.


  -- 
 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...@googlegroups.com javascript:.
 For more options, visit https://groups.google.com/d/optout.




 -- 
 LinkedIn - http://www.linkedin.com/in/maximpodbereznyy
 Company - http://www.linkedin.com/company/mentorel
 Facebook - https://www.facebook.com/mentorel.company
  

-- 
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.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Re: Beaglebone Black MIDI Cape Release Date

2014-03-30 Thread David Anders
Trev,

due to the high demand for the beaglebone black, all of circuitco 
production that is available is being used for beaglebone black. the 
release of midi cape is pending, and probably won't be until end of 3rd 
quarter

Dave


On Sunday, March 30, 2014 3:48:08 PM UTC-5, Trev Wignall wrote:

 Greetings,

 Is there a planned release date for the MIDI cape? I am very interested in 
 purchasing one to build Csound synthesizers with the Beaglebone Black.

 Cheers,
 Trev


-- 
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.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Re: Open-source hardware

2014-03-20 Thread David Anders
the Open Source Hardware Association provides some guidelines and 
definitions about what open-source hardware is:

http://www.oshwa.org/definition/

Dave


On Thursday, March 20, 2014 10:24:58 AM UTC-5, felip...@gmail.com wrote:

 Hello guys. I'm new with boards and I just want to know what does 
 open-source hardware means. 
 Isn't the software included in this?
 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.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Re: Audio Cape Rev B schematics ?

2014-03-20 Thread David Anders

we are trying to get them into the production line now, however we are 
spending 98% of our production time right now on producing beaglebone black 
boards

once stock is back solid we'll put them into the production line...

Dave

On Thursday, March 20, 2014 5:51:56 PM UTC-5, john3909 wrote:



 From: David Anders dande...@gmail.com javascript:
 Reply-To: beagl...@googlegroups.com javascript:
 Date: Friday, February 21, 2014 at 1:18 PM
 To: beagl...@googlegroups.com javascript:
 Subject: Re: [beagleboard] Re: Audio Cape Rev B schematics ?

 yes but it won't be posted until we are ready to ship...

 Hi Dave,

 When are you shipping this product? 

 Regards,
 John



 Dave


 On Friday, February 21, 2014 2:04:28 PM UTC-6, john3909 wrote:



 From: David Anders dande...@gmail.com
 Reply-To: beagl...@googlegroups.com
 Date: Friday, February 21, 2014 at 8:18 AM
 To: beagl...@googlegroups.com
 Subject: [beagleboard] Re: Audio Cape Rev B schematics ?

 Valentin,

 the audio cape revb is in production now and should be available for 
 purchase within 14 to 21 days.

 the design files for the audio cape revb are available on the wiki page: 
 http://www.elinux.org/CircuitCo:Audio_Cape_RevB#Documentations

 Do you have a device tree overlay for this board?



 On Wednesday, February 19, 2014 4:01:21 AM UTC-6, Valentin Le bescond 
 wrote:

 Hello everyone !

 First question for me on this group... big day...

 I am looking for BeagleBone audio cape Rev B schematics (announced @ 
 elinux.com). Does anyone know who I might ask for it ?

 In other words, I have been waiting for a month an a half to be able to 
 buy a audio cape (in France) an so far every where to buy is out of stock.

 But anyway I wanted to make a custom audio cape based on the available 
 one.

 I looked at the schematics (Rev A) and saw there was a lot of DVI things 
 in it. Then I saw a yet-to-come Rev B with what seems to be a much cleaner 
 PCB (audio only ?). Plus it has a AIC3104 (instead of the 3106) which adds 
 selectable bias voltage !

 So : nowhere to buy + available schematics (I hope) = let's build it !

 Does anyone have any info that could help me getting started ? 

 Regards,

 -- 
 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...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.

 -- 
 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...@googlegroups.com javascript:.
 For more options, visit https://groups.google.com/groups/opt_out.



-- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Re: Availability - how come nobody has any BeagleBone Black to sell?

2014-03-19 Thread David Anders
Micka,


On Wednesday, March 19, 2014 3:32:58 AM UTC-5, Mickae1 wrote:

 Don't take it personally, I've nothing against you, or TI ... . You did a 
 great Job.


and circuitco too since we've been part of beagleboard.org from day 
one, investing our own money on prototypes, development, as well as taking 
all the risk in investing money to make this happen...

Dave
 

 Micka,


 On Tue, Mar 18, 2014 at 7:53 PM, Gerald Coley 
 ger...@beagleboard.orgjavascript:
  wrote:

 The part that says does not TI invests  into the operation of 
 BeagleBord.org other than some of my day job and none of my time I spend on 
 it in my personal time and weekends, the other 80 hours of my work week.

 Gerald


 On Tue, Mar 18, 2014 at 1:46 PM, Micka micka...@gmail.com 
 javascript:wrote:

 TI has nothing to do with beagleboard.org but Gerald Coley is a TI 
 Engineer ?


 Which part I didn't understand ?


 Micka,


 On Tue, Mar 18, 2014 at 5:44 PM, David Anders 
 dande...@gmail.comjavascript:
  wrote:

 Venkat,


 On Monday, March 17, 2014 4:36:42 PM UTC-5, Venkat Bommakanti wrote:

 On Monday, March 17, 2014 7:23:20 AM UTC-7, oha...@ohararp.com wrote:

 ...  I would have no problem paying $75 for this board if we could 
 guarantee availibility and continued support (ie being able to stay in 
 business)


 Have a feeling, even at an hiked up unit price of $75, the hoarders 
 will gobble them up in large #s, and pass the extra cost on to their 
 customers - after all, the free market price would also be $75. I doubt 
 TI 
 could guarantee supplies even at that price - unless something is done to 
 prevent *productizers* from bulk-ordering huge quantities.

 TI supposedly released this board as a community product and should 
 try and pursue that goal and not just give up that easy. By hiking the 
 price to say $55/60, and through beaglebone.org, TI can allow for the 
 purchase of just a couple of boards to a given shipping address, it can 
 be 
 done since the extra cost could be used to support this option... Many 
 MIR 
 promoters do that today, not entirely impossible (even $60 ARM quad-core 
 based board manufactures do it - 1 per forum member/acct). So beagleboard 
 can make it say 2 or 3 or some reasonable small #. The hoarders can 
 always 
 buy from those other distributors - whose stock-notification scheme is a 
 mere joke. 10mins into getting an email - they are back to 0-stock.


 just a clarification here: TI has nothing to do with beagleboard.orgother 
 than sell circuitco the processors to be used on 
 beagleboard.org products

 http://beagleboard.org/about

 Dave
  

 Gerald,

 Pl. figure out a reasonably affordable scheme for the community and 
 another for market-driven scene, where folks are building products using 
 these, against all (practically legally non-enforceable) warnings. The 
 entire learning/maker community, imho, is being heavily penalized, for 
 the 
 actions of a few hoarders.

 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...@googlegroups.com javascript:.
 For more options, visit https://groups.google.com/d/optout.


  -- 
 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...@googlegroups.com javascript:.
 For more options, visit https://groups.google.com/d/optout.


  -- 
 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...@googlegroups.com javascript:.
 For more options, visit https://groups.google.com/d/optout.




-- 
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.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Re: Availability - how come nobody has any BeagleBone Black to sell?

2014-03-18 Thread David Anders
Venkat,

On Monday, March 17, 2014 4:36:42 PM UTC-5, Venkat Bommakanti wrote:

 On Monday, March 17, 2014 7:23:20 AM UTC-7, oha...@ohararp.com wrote:

 ...  I would have no problem paying $75 for this board if we could 
 guarantee availibility and continued support (ie being able to stay in 
 business)


 Have a feeling, even at an hiked up unit price of $75, the hoarders will 
 gobble them up in large #s, and pass the extra cost on to their customers - 
 after all, the free market price would also be $75. I doubt TI could 
 guarantee supplies even at that price - unless something is done to prevent 
 *productizers* from bulk-ordering huge quantities.

 TI supposedly released this board as a community product and should try 
 and pursue that goal and not just give up that easy. By hiking the price to 
 say $55/60, and through beaglebone.org, TI can allow for the purchase of 
 just a couple of boards to a given shipping address, it can be done since 
 the extra cost could be used to support this option... Many MIR promoters 
 do that today, not entirely impossible (even $60 ARM quad-core based board 
 manufactures do it - 1 per forum member/acct). So beagleboard can make it 
 say 2 or 3 or some reasonable small #. The hoarders can always buy from 
 those other distributors - whose stock-notification scheme is a mere joke. 
 10mins into getting an email - they are back to 0-stock.


just a clarification here: TI has nothing to do with beagleboard.org other 
than sell circuitco the processors to be used on beagleboard.org products

http://beagleboard.org/about

Dave
 

 Gerald,

 Pl. figure out a reasonably affordable scheme for the community and 
 another for market-driven scene, where folks are building products using 
 these, against all (practically legally non-enforceable) warnings. The 
 entire learning/maker community, imho, is being heavily penalized, for the 
 actions of a few hoarders.

 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.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Re: Availability - how come nobody has any BeagleBone Black to sell?

2014-02-18 Thread David Anders
as gerald stated, circuitco is in full production of the beaglebone black 
and continues to ship daily to a wide range of distributors. these 
distributors fill back-orders first before showing stock.

http://elinux.org/Beagleboard:BeagleBoneBlack#Board_Shipments

Dave

On Tuesday, February 18, 2014 1:46:30 AM UTC-6, anil.g...@gmail.com wrote:

 I have been looking for 3+ weeks and unable to find any stock anywhere.

 Is there a way to see the order backlog with Circuitco and current supply 
 capability?  Is the issue getting better or worse? (My anecdotal experience 
 suggests it may be getting worse.)  The current situation is frustrating. 
  If the news is bad, let us know it early and deal with it.  Right now, 
 there is no data at all.

 Gerald: thanks for your timely and open updates.

 On Wednesday, February 12, 2014 1:25:00 AM UTC+5:30, Gerald wrote:

 We are focused on the community. Feel free to build it yourself however. 
 All the materials to build it are provided for free and you don't have to 
 pay any development costs.
  

 Gerald




-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [beagleboard] Re: Availability - how come nobody has any BeagleBone Black to sell?

2014-01-27 Thread David Anders

Doug,

that part number exists only for accounting purposes to receive shipments 
and to do cross shipment between distributors

Dave

On Thursday, January 23, 2014 9:28:35 PM UTC-6, doog wrote:

 I just noticed that Digikey has a 100pack part number( BB-BBLK-100-ND ) 
 so wouldn't that almost by default be in violation of the 'don't use it in 
 a product' clause? Just the fact that they have a PN for a 100 qty order 
 instead of say a 30 pack or 10 pack should raise some eyebrows. No?

 Doug

 On Thursday, January 23, 2014 10:24:11 AM UTC-8, Gerald wrote:

 Yes, it is a big warning. Then again, it will take me five minutes to 
 change that to shall we say, a violation of the terms of use. There 
 are avenues available to prevent companies from wiping out inventories as I 
 clearly state.

 There are in the terms and conditions for each distributor about selling 
 to people that use them in products. We are reviewing this and may end 
 up removing distributors that violate their terms and conditions.

 Gerald


 On Thu, Jan 23, 2014 at 11:32 AM, Giuseppe Iellamo pep...@gmail.comwrote:

 It doesn't seem that using BBC on a commercial project is an 
 infringement to the term of use. There is only a warning...

 --
 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...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [beagleboard] Re: Availability - how come nobody has any BeagleBone Black to sell?

2014-01-23 Thread David Anders
just fyi, for anyone interested, Special Computing is showing a pretty 
large stock of BeagleBone Blacks available:

https://specialcomp.com/beaglebone/index.htm

On Monday, January 20, 2014 7:19:20 AM UTC-6, Gerald wrote:

 We are shipping boards as you can see form the daily updates on the 
 support Wiki. They go to the distributors. They fill their back orders. No 
 stock shows up because they are going to fill the back orders.

 When the distributors have extra boards, they will then show up as having 
 inventory.

 Gerald



 On Sun, Jan 19, 2014 at 3:46 PM, skip...@gmail.com javascript: wrote:

 Have there been any 'official announcements' about the lack of stock yet?


  -- 
 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...@googlegroups.com javascript:.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] Re: Availability - how come nobody has any BeagleBone Black to sell?

2014-01-23 Thread David Anders
there is nothing to announce CircuitCo has been shipping consistently 
since the release. the demand for black grown significantly as well as the 
fact there are number of companies using black inside commercial 
productions violating the terms of use for black. with this in mind those 
companies have been buying blacks up in bulk making it harder for 
individuals to purchase

Dave


On Sunday, January 19, 2014 3:46:54 PM UTC-6, skip...@gmail.com wrote:

 Have there been any 'official announcements' about the lack of stock yet?




-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] Re: Does Beagle bone black supports sleep and wake up from GPIO

2014-01-13 Thread David Anders
Ganesh,

the TI 3.2 kernel and the TI 3.12 kernel both support PM operations 
including suspend/resume. the stock beagle kernel 3.8 doesn't directly 
support PM operations without a large number of patches

Dave


On Monday, January 13, 2014 6:13:51 AM UTC-6, ganesh h wrote:


 Hello,

 Does BBB supports sleep and wakeup? that is after a particular time from 
 booting up BBB goes to sleep mode if some input comes to input it wakes up 
 and do some process and again it sleep and this repeats if again some input 
 comes.Is it possible?


-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] Re: weather cape

2014-01-08 Thread David Anders

Eric,

Koen Kooi was the original designer of the weather cape. the weather 
cape has been discontinued and no software support is planned for future 
releases of the example linux distribution shipped with the beaglebone 
black. the weather cape was initially marked as hardware incompatible 
because it does use a gpio as a test point that is also used by the on 
board eMMC used with the black.


there is no support provided for the weather cape when used with the 
beaglebone black


Dave




On 01/08/2014 01:26 PM, Eric Fort wrote:

how can I find out who that is that designed the weather cape?  The
cape is one of those that actually has an srm associated but the only
thing listed is supp...@beagleboardtoys.com which does not seem to
answer email.  No responses from the group either which seems
generally odd.

On Wed, Jan 8, 2014 at 9:59 AM, Gerald Coley ger...@beagleboard.org wrote:

You need to ask the designer and maker of the weather cape.

Gerald


On Wed, Jan 8, 2014 at 11:57 AM, Eric Fort eric.f...@gmail.com wrote:

What is it that specificly makes the weather cape not black
comparable?  It seems to only use i2c and power so I'm a bit boggled
over what could be in conflict yet it's listed as incompatable at
sites like beagleboard toys / circuitco.  What's the issue?

Thanks,

Eric




--
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.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [beagleboard] Angstrom Abandoned for BBB? Rumor + a Rant

2014-01-06 Thread David Anders


On Saturday, January 4, 2014 5:09:53 PM UTC-6, Anguel wrote:



 On Saturday, January 4, 2014 3:20:07 PM UTC+1, Jason Kridner wrote:

 We are working with Robert Nelson's Debian images to try to produce an 
 out-of-box experience on par with the Angstrom images. Once we have a 
 few more features in, namely an updated Cloud9 IDE that works with 
 node 0.10, then we'll push out a beta image broadly for testing.


 It is good news that you are working with Robert on Debian. IMHO this is 
 the way to go. Robert is doing so much for the BBB community. TI should 
 support him in every way they can.
 It is a fact that BBB developer resources are extremely limited. So 
 efforts should really concentrate on getting the serious stuff working 
 properly, I mean the basic things a serious developer needs: kernel + 
 stability + Qt, because Linux is used for touch GUIs, not as a desktop 
 replacement.
 For me Linux Desktops, Cloud9, USB networking etc. is just a big waste of 
 precious development time, unless the intention is to fool new customers 
 that the BBB is something easy to use. This is definitely not the case and 
 will never be! Just have a look at all the posts in this thread.


just a reminder, TI has nothing to do with BeagleBoard.org other than 
selling Circuitco the chips to manufacture the beagleboard products 
it's circuitco and beagleboard.org that are working with Robert.

Dave

 

 The LCD Cape vendors should push support for their hardware into 
 https://github.com/beagleboard/kernel and 
 https://github.com/beagleboard/cape-firmware. CircuitCo does so. 
 Github pull requests are the best way to do so. 


 The problem with touch was that someone ported the ADC / touchscreen stuff 
 from an upcoming TI kernel to the 3.8 kernel and some things broke. Then 
 this somebody just did not have the time to fix the bugs and they stayed 
 there. I already discussed this in another thread.

 Anguel


-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [beagleboard] Angstrom Abandoned for BBB? Rumor + a Rant

2014-01-01 Thread David Anders


On Wednesday, January 1, 2014 6:55:38 AM UTC-6, Anguel wrote:



 On Wednesday, January 1, 2014 1:37:02 PM UTC+1, Elena Grandi wrote:

 This theory has a problem: Beagleboard.org was born in 2008 or so, 
 much earlier than the Raspberry (which started to be known to the 
 public in 2011, and was available in 2012). 


 Ok, I admit I am not much aware of the way Beagleboard.org worked before 
 the lower-cost Beaglebones were introduced, but it has always been driven 
 by marketing, initially aimed at colleges, according to Wikipedia.
 I just want to make clear that big companies don't do anything without 
 profit.


here is the thing: TI has nothing to do with beagleboard.org other than 
they sell the processors to circuitco to make the boards - that's it.

have a quick read - http://beagleboard.org/about
 

  


 Of course the success of the Raspberry did influence BB.org's 
 products: back in 2008 the standard price for this kind of 
 boards was around 150$ (e.g. the original BeagleBoard) and it had been 
 slowly coming down to just below 100$ (e.g. the BeagleBone White): 
 it was Raspberry and its extreme corner cutting that brought 
 prices down below 50$, and other producers had to adapt their offerings. 


 I totally agree. Nobody would buy a BBB for $150 when you can get a 
 Raspberry Pi. But prices of other HW components have probably also dropped 
 significantly since the old days.


here is the thing: in 2007 when beagleboard was started, the only other 
open hardware platform that was available was the arduino. the idea of an 
open hardware platform was very new. in addition in 2007 you could not 
purchase an arm development platform for less than $1000USD! beagleboard 
was the FIRST arm development platform that cost less than $200 and it was 
the FIRST arm open hardware platform 

so beagleboard has been and always will be the driving force for low 
cost open hardware platforms...


Dave
 

 Anguel


-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [beagleboard] Angstrom Abandoned for BBB? Rumor + a Rant

2013-12-30 Thread David Anders
just in case some of the folks here would like to educate themselves on 
what beagleboard.org is:

http://www.beagleboard.org/about




On Monday, December 30, 2013 8:11:57 PM UTC-6, liyaoshi wrote:

 A part of this group interest me is about the rants 

 Nest Time ,if I have chance to be abroad , I will use the skill learned 
 from here 

 :)


 2013/12/31 Gerald Coley ger...@beagleboard.org javascript:

 I designed the BBB. Other people design the capes. No capes come from 
 BeagleBoard.org. So feel free to rant, but facts do have a place in rants.


 Gerald



 On Mon, Dec 30, 2013 at 7:56 PM, Terry Storm 
 terrys...@gmail.comjavascript:
  wrote:

 Hi William

 As I said, I have no problem with the BBB hardware.
 I am 100% referring to the software. If the software sucks then to the 
 average Joe Bloggs the hardware then also, well, sucks.
 If Joe Bloggs buys a BBB and a cape made by the same company, and there 
 is a recommended software to go with it which claims compatibility, then 
 Joe Bloggs would rightly expect that the BBB + CAPE + OS will run as 
 advertised, and this isnt the case.

 I personally am using but a fraction of what the BBB is capable of 
 doing, however I wouldn't have thought using a BBB made by CircuitCo and a 
 LCD Cape made by CircuitCo, running the recommended OS with everything as 
 default, and finding that the touch does not work and things like the mouse 
 pointer jumps all over the screen, kinda not fit for purpose?

 If someone like me buys a BBB + Cape and uses an OS which is recommended 
 and claims compatibility, and finds that it doesn't work for something as 
 fundamental as the touch screen, is that classed as user error?

 I personally think not.

 I stand by my comment of it being a flop, as if the company does not 
 make a profit after selling 100K of a popular product, then really... what 
 was the point.
 And in terms of sales and people not being able to get stock, you have 
 to start to wonder how many of those are from users reading the marketting 
 and thinking that will be great, to find when they get it they have no idea 
 how to fix problems they encounter (like me) and so cannot use it as they 
 wanted to.

 Many of the happy people probably dont use Capes as you said. It just 
 sucks that the people who designed the cape also design the BBB, and they 
 dont work right purely due to the Software. BBB + LCD Cape on Android works 
 fine, so the hardware is perfectly fine, but Android is of no use to many 
 so it doesnt help much.

 Terry


 On Tuesday, 31 December 2013 14:07:17 UTC+13, William Hermans wrote:

 Terry,

 I do realize you're mostly aiming your comments at Gerald but let me 
 just say that I think you missed a few key points.

 1) This is not a Dell or common general purpose PC. So you can not 
 expect the same from such hardware. With that said, there is nothing wrong 
 with the hardware. It all works fine, and actually up until recently the 
 only thing that did not work was the SGX/DRM video drivers. Now, that has 
 been resolved, but still in alpha / beta stage (  ish ). Different people 
 seem to have experienced different problems here and there, but think this 
 is very likely mostly user error.

 2) Do you understand the idea of open source hardware ? *.org is 
 usually and possibly always non profit domain name affiliation. What 
 Gerald 
 and his partners have planned I have no idea, but in my own mind the 
 Beaglebone black is far from a flop. Quite the opposite actually when 
 electronics retailers can hardly seem to keep them in stock, because they 
 sell so fast.

 3) If you can pick up a book, or read web pages you can do this 
 yourself. Many in this group will help, even me, when you have a 
 reasonable 
 question to ask. 

 Anyways it really suck that this does not seem to be working for you. 
 Just now that many of of are perfectly happy with these little boards. 
 Heck 
 there are a few people who own ten's and possibly even hundred's of these 
 very boards . . .


  -- 
 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...@googlegroups.com javascript:.
 For more options, visit https://groups.google.com/groups/opt_out.


  -- 
 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...@googlegroups.com javascript:.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
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] Re: What is the maximum number capes that can be stacked on the BBB?

2013-12-26 Thread David Anders
AT,

maximum number of capes that contain a I2C eeprom for identification is 4, 
however as many capes as you would like can be added as long as they don't 
contain the EEPROMs. this does place the burden of enabling the support for 
the cape on the user

Dave


On Tuesday, December 24, 2013 6:14:42 PM UTC-6, atlas@gmail.com wrote:

 Hi,

 What is the maximum number of capes that can be stacked on a BBB?  Of 
 course this would take into account mechanical as well as electrical 
 considerations. For example, the maximum number may be limited by 
 capacitance and timing issues as well as cape ID (I2C addressing) space. A 
 brief explanation of the limitation would be appreciated.

 Thanks in advance.
 AT


-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] Re: Angstrom Builds v2013.09

2013-12-24 Thread David Anders
Dan,

the full log of the build error would be needed to find out what is 
happening. in the messages just after the exit, you should see a notice of 
where the log can be found...

Dave

On Tuesday, December 24, 2013 10:31:29 AM UTC-6, Daniel Metcalf wrote:

 So I have been waiting patiently for the last day or two waiting for 
 bitbake to complete a build of the v2013.09 cloud9-gnome-image task. For 
 those who have not tried this build it contains about 8000+ steps and at 
 right about 6500 I  get the following error:

 setup-scripts/sources/meta-openembedded/meta-oe/recipes-devtools/nodejs/
 nodejs_0.8.18.bb, do_configure) failed with exit code '1'

 any ideas?

 -- 
 Dan Metcalf -- KB3UUN
  

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] Re: Future of the Angstrom distribution for Beaglebone

2013-12-02 Thread David Anders
Dave,


the Angstrom website is in the process of being moved to a new hosting 
site. it should be back up to full implementation shortly...

Dave


On Monday, December 2, 2013 7:53:56 AM UTC-6, David wrote:

 Is Angstrom still the official distribution for the Beaglebone? It 
 appears that the Angstrom site recently has been reduced to a bare-bones 
 version. Does this indicate lack of support? If so, which distribution 
 is likely to replace it? 

 Dave. 



-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] Re: SPI1_D0 and SPI1_D1... what's MISO, whats MOSI?

2013-12-01 Thread David Anders
Thomas,

unlike most microcontrollers, the AM335x allows the MISO/MOSI pins to be 
software definable. one of the reasons behind this is to help with the pcb 
layout. when designing complex boards, sometimes it is easier to have these 
definable help prevent the signals having to cross during layout.

we have a wiki page that talks about setting the SPI character device 
driver with some examples of defining how MISO/MOSI are mapped to the D0/D1 
pins:

http://elinux.org/BeagleBone_Black_Enable_SPIDEV

Dave


On Wednesday, November 27, 2013 1:13:04 PM UTC-6, tond...@gmail.com wrote:

 I need to find out what the *Pins 29 and 30* on Pin *Header P9* (SPI1_D0 
 and SPI1_D1) are. 
 Which is *MISO* (Master Input Slave Output) and which is *MOSI* (Master 
 Output Slave Input)?
 I looked for that a long time but couldn't find it anywhere, can somebody 
 help me? That would be great!

 Nice Greetings
 Thomas



-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] Re: GPIO used before purchase

2013-12-01 Thread David Anders
while you can use all of the pins as GPIOs it will greatly reduce the 
features available on the BBB. you should consider carefully what you are 
using the GPIOs for and then look to offload some of the GPIOs to a I2C 
based GPIO expander such as the TCA6408 or TCA6416.

Dave


On Wednesday, November 27, 2013 12:10:52 PM UTC-6, Thibault Buisson wrote:

 hi, before ordering a BBB, for my application I need 66 GPIO and Ethernet 
 and I do not need lcd, hdmi, serial ... if I use these GPIO is that this 
 is a problem with another component on BBB?


-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] Re: Extracting eMMC contents using FAT formatted card

2013-09-26 Thread David Anders

http://elinux.org/BeagleBone_Black_Extracting_eMMC_contents

is a good place to start. i am working with bill traynor to organize 
howto pages along with other specific category groups...


Dave

On 09/26/2013 12:23 PM, Jason Kridner wrote:

On Thursday, September 26, 2013 1:20:18 PM UTC-4, David Anders wrote:


Jason,

shouldn't this info go up on the elinux.org wiki?


Absolutely. Any recommendation on the page location? I will upload it right
away.
  


Dave

On 09/26/2013 12:16 PM, Jason Kridner wrote:

There are lots of ways to extract the contents of the eMMC to save off

and

reuse. I'm proposing a method using Buildroot and an initramfs such that
you can simply drop a few files from a .zip onto a normal, FAT-formatted

SD

card to perform the extraction. There are several things really handy

here,

such as the ability to edit autorun.sh to be whatever script you want to
run on your board at boot. In the archive, I only have the necessary
autorun.sh for *saving* your eMMC content. The flip-side is provided

here

in the text such that you need to go through a couple of steps before

you

trash your eMMC.

The steps for saving off your eMMC contents to a file:
* Get a 4GB or larger uSD card that is FAT formatted.
* Download

https://s3.amazonaws.com/beagle/beagleboneblack-save-emmc.zipand

extract the contents onto your uSD card.
* Eject uSD card from your computer, insert into powered-off BeagleBone
Black and apply power to your board.
* You'll notice USR0 (the LED closest to the S1 button in the corner)

will

(after about 20 seconds) start to blink steadily, rather than the
double-pulse heartbeat pattern that is typical when your BeagleBone

Black

is running the typical Linux kernel configuration.
* It'll run for a bit under 10 minutes and then USR0 will stay ON

steady.

That's your cue to remove power, remove the uSD card and put it back

into

your computer.
* You should see a file called BeagleBoneBlack-eMMC-image-X.img,

where

X is a set of random numbers. Save off this file to use for

restoring

your image later.

Because the date won't be set on your board, you might want to adjust

the

date on the file to remember when you made it. Delete the file if you

want

to make room for a new backup image. For storage on your computer, these
images will typically compress very well, so use your favorite

compression

tool.

To restore the file, make sure there is a valid
BeagleBoneBlack-eMMC-image-.img file on the uSD card and edit
autorun.sh with your favorite text editor to contain the following:
#!/bin/sh
echo timer  /sys/class/leds/beaglebone\:green\:usr0/trigger
dd if=/mnt/BeagleBoneBlack-eMMC-image-X.img of=/dev/mmcblk1 bs=10M
sync
echo default-on  /sys/class/leds/beaglebone\:green\:usr0/trigger

*NOTE*: Be certain to replace the 'X' above with the proper name of
your image file.

This image was built using Buildroot. The sources are at
https://github.com/jadonk/buildroot with tag save-emmc-0.0.1. Download

via

https://github.com/jadonk/buildroot/releases/tag/save-emmc-0.0.1 or

clone

the git repo. It is a small fork from
git://git.buildroot.net/buildroottag
e9f6011617528646768e69203e85fe64364b7efd.

To build, 'make beagleboneblack_defconfig; make; ./mkuimage.sh'.  Output
files (am335x-boneblack.dtb, MLO, u-boot.img and uImage) will be in the
output/images subdirectory. The following files were created manually.

uEnv.txt:
bootpart=0:1
bootdir=
fdtaddr=0x81FF
optargs=quiet capemgr.disable_partno=BB-BONELT-HDMI,BB-BONELT-HDMIN
uenvcmd=load mmc 0 ${loadaddr} uImage;run loadfdt;setenv bootargs
console=${console} ${optargs};bootm ${loadaddr} - ${fdtaddr}

autorun.sh:
#!/bin/sh
echo timer  /sys/class/leds/beaglebone\:green\:usr0/trigger
dd if=/dev/mmcblk1 of=/mnt/BeagleBoneBlack-eMMC-image-$RANDOM.img bs=10M
sync
echo default-on  /sys/class/leds/beaglebone\:green\:usr0/trigger

The kernel is based on


https://github.com/beagleboard/kernel/commit/9fdb452245a58158a4bea787cdc663c17681bcfe,


but I applied the patches, added firmware and uploaded it to


https://github.com/beagleboard/linux/commit/ddd36e546e53d3c493075bbebd6188ee843208f9to

pull down in the Buildroot makefile. The link to the source for the
firmware is in the commit.

I've applied to join the Buildroot mailing list to send these patches
upstream. The power management firmware is not yet loading properly, but
that is something I can look into.

Happy hacking!





--
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.
For more options, visit https://groups.google.com/groups/opt_out.