Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
help setting up toolchain
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  Messages 26 - 45 of 45 - Collapse all  -  Translate all to Translated (View all originals) < Older 
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
stottb@gmail.com  
View profile  
 More options Mar 7 2012, 6:35 pm
From: "sto...@gmail.com" <sto...@gmail.com>
Date: Wed, 07 Mar 2012 18:35:48 -0500
Local: Wed, Mar 7 2012 6:35 pm
Subject: Re: [MakerBot] Re: help setting up toolchain

@ whosa and others.

OK, my sluggish memory recalls.

Per Arduino.cc and other's directions:

Arduino's examples and working tutorials do not address the bootloader in programming using Processing, Wiring, or 'C'. They tell that the bootloader is only for easy IDE access via USB. Ease of use since many of us (me) are not programmers. Note from me: RepG uses AVRdude, the arduino bootloader (~2K), and USB to program the firmware onto the Arduino. USBISP is a programmer and uses no bootloader but, does use AVRdude. AVRdude is an application run from a PC and is not on the mcu.

 As to using our bots without a bootloader. The bootloader is for easy USB access and is used to check to see if we are accessing it to load a program prior to it running the onboard program/firmware. Thus, a tiny delay. Within the bootloader, there are no pins set for any use or timers tweaked according to arduino.cc's descriptions of the bootloader. The Arduino for several years has come with the bootloader AND a 'blink' sketch installed. The sketch uses pin 13 and the sketch is over written with any new installed sketch/firmware.

I've programmed more than 11 bare devices via USBISP. Burning fuses and bootloader. When one writes their Processing or 'C' code they initialize/assign environment, pins, timers, etc in their code and/or it will be done through a library call for special use within their application. This then is compiled using avr-gcc into assembler/hex which then is programmed to the board/chip. This is often done through the Arduino USB IDE via a bootloader. Or, as what brought this discussion to light, without a bootloader it is programmed via USBISP or other programmer and AVRdude via commandline or a GUI interface to the same.

Since MBI has not made mention to have a custom bootloader it is likely they had enough on their plates making our Uber Cool toys to just use what Arduino had installed. If so, then you real Programmers - dump the bootloader. Give yourselves ~2k of elbow room to develop within. It is not hard to program the chips. -- I knew - NOTHING -- four months ago and did not need to ask on any forums to learn. With the right tools: Google, my very expensive ($5.49 + Free Shipping) eBay bought USBISP programmer, some wires and downloaded open source software I can load a program or a bootloader in < 2 minutes.

Suggested Development process:
1) Program over the bootloader.
2) Test, tweak, refine.
3) Debug and Optimize to allow for bootloader space.
4) Compile for distribution.
5) Announce and release to prove.

FWIW..... ALL you guys are GREAT!  This is fun and History making. :-)

----- Reply message -----
From: "Whosawhatsis" <whosawhat...@gmail.com>
Date: Wed, Mar 7, 2012 3:50 pm
Subject: [MakerBot] Re: help setting up toolchain
To: <makerbot@googlegroups.com>
Cc: "Jetty" <clelland...@gmail.com>


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
stottb@gmail.com  
View profile  
 More options Mar 7 2012, 6:48 pm
From: "sto...@gmail.com" <sto...@gmail.com>
Date: Wed, 07 Mar 2012 18:48:06 -0500
Local: Wed, Mar 7 2012 6:48 pm
Subject: Re: [MakerBot] Re: help setting up toolchain

@Whosa

Again, good point. Now, you have me thinking more. Could a core of the firmware start on the ATmega then call sub-routine from external ram? This could allow the features to become fuller.

Jetty - Rob and I've not remembered you other gifted programmers names yet -

Could the above work to increase the capabilities of our bots?

----- Reply message -----
From: "Whosawhatsis" <whosawhat...@gmail.com>
Date: Wed, Mar 7, 2012 4:38 pm
Subject: [MakerBot] Re: help setting up toolchain
To: "sto...@gmail.com" <sto...@gmail.com>
Cc: "makerbot@googlegroups.com" <makerbot@googlegroups.com>


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Whosawhatsis  
View profile  
 More options Mar 7 2012, 7:08 pm
From: Whosawhatsis <whosawhat...@gmail.com>
Date: Wed, 7 Mar 2012 16:08:42 -0800
Local: Wed, Mar 7 2012 7:08 pm
Subject: Re: [MakerBot] Re: help setting up toolchain

Remember that RAM is volatile, working memory. It cannot be used for persistent storage (at least not without hacks involving a backup power supply), and with the harvard architecture you should not be able to load programs into it. Additional RAM added this way should only be usable for working with larger data sets than the internal RAM is able to.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Joey  
View profile  
 More options Mar 7 2012, 10:54 pm
From: Joey <j...@jsconsulting.com>
Date: Wed, 7 Mar 2012 19:54:21 -0800 (PST)
Local: Wed, Mar 7 2012 10:54 pm
Subject: Re: help setting up toolchain

On Mar 7, 3:50 pm, Whosawhatsis <whosawhat...@gmail.com> wrote:

> The bootloader also does a few other things, like setting the default modes for various pins and probably configuring clocks and whatnot. Your code can do all of this for itself, but if it doesn't your code will not function as expected without the bootloader.

 > From: "Jetty" <clelland...@gmail.com
(mailto:clelland...@gmail.com)>
 > A bootloader's job is to "maybe" initialize a few things, delay a
 > little watching for an incoming program upload, write that
 > program upload to flash, and if there isn't one, execute the
program
 > on flash.

 > So, if you dump the boot loader, don't expect the software to still
 > run without some alteration, because what's calling the main
program?

 > I.E. You need both unless you make changes to allow for there being
no
 > boot loader.


Actually, your both a bit off the mark. Here's how it works:

1. When the compiler builds your application (or a boot loader) it
assumes nothing is setup. The only thing the default start up code
does is to init some RAM and setup the stack before calling the main()
function. The Arduino startup which runs in main() sets up some timers
and stuff. If you don't believe me, setup the compiler to generate a
listing file and look at the code yourself. The only difference
between a boot loader and any other application is that the boot
loader is linked to run from the boot loader start address.

2. You do not need a boot loader to start your application. The
application does not know or care if a boot loader ran first. When you
program the AVR you set a fuse bit that tells the chip where to start
executing code after a reset. Either at the start of the boot loader
(you can also choose the boot loader start location from a short
list), or at zero where the application is stored. All the boot loader
does to start the application is jump to zero. Take a look at the
description of the BOOTSZ1, BOOTSZ0, and BOOTRST fuse bits in the
extended fuse byte in the AVR data sheet.

3. If you want to test that your Arduino app can run without the boot
loader, just load it the normal way and then change the fuse bits to
disable the boot loader, your app will still run fine. (The Arduino
web site even says that you can use the full flash for a sketch by
using a programmer to burn it)

 Joey


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jetty  
View profile  
 More options Mar 8 2012, 12:29 am
From: Jetty <clelland...@gmail.com>
Date: Wed, 7 Mar 2012 21:29:38 -0800 (PST)
Local: Thurs, Mar 8 2012 12:29 am
Subject: Re: help setting up toolchain

>there are no pins set for any use or timers tweaked according to arduino.cc's descriptions of the bootloader

There's a custom boot loader that's burnt onto your extruder
controller before MBI sends it to you.

It switches the FET's off that control the heater etc / fan.  I.E.
Channel A/B/C.

They say they've issued this custom boot loader to stop damage to the
FET's / circuitry by having it powered on at boot.  You can find this
boot loader under:

G3Firmware/bootloader/hardware/arduino/bootloaders/atmega:

-rwxr-xr-x  1 staff  29297 19 Feb 20:05 ATmegaBOOT_168.c
-rw-r--r--  1 staff   5513 19 Feb 20:05 ATmegaBOOT_168_ec22.hex
-rw-r--r--  1 staff   5529 19 Feb 20:05 ATmegaBOOT_168_ec3x.hex
-rw-r--r--  1 staff   5513 19 Feb 20:05 ATmegaBOOT_168_ec3x_328.hex
-rw-r--r--  1 staff  11122 19 Feb 20:05 ATmegaBOOT_168_mb2x.hex
-rwxr-xr-x  1 staff   7487 19 Feb 20:05 Makefile

There's also an mb2x.hex, I'm guessing for the motherboard, but I've
never seen this documented anywhere.

Of course, you could still switch off the FETs as part of the startup
in the main code, if you were going
to dump the bootloader.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
stottb@gmail.com  
View profile  
 More options Mar 8 2012, 9:38 am
From: "sto...@gmail.com" <sto...@gmail.com>
Date: Thu, 08 Mar 2012 09:38:29 -0500
Local: Thurs, Mar 8 2012 9:38 am
Subject: Re: [MakerBot] Re: help setting up toolchain

That is interesting about the EC bootloader. Was a bootloader customized for lack of space in the firmware?

Since the bootloader loads then steps aside to run the app. What is the advantage to put that setup in the bootloader? Do you think it was to assure an 'all off' during a firmware upgrade?

----- Reply message -----
From: "Jetty" <clelland...@gmail.com>
Date: Thu, Mar 8, 2012 12:29 am
Subject: [MakerBot] Re: help setting up toolchain
To: "MakerBot Operators" <makerbot@googlegroups.com>

>there are no pins set for any use or timers tweaked according to arduino.cc's descriptions of the bootloader

There's a custom boot loader that's burnt onto your extruder
controller before MBI sends it to you.

It switches the FET's off that control the heater etc / fan.  I.E.
Channel A/B/C.

They say they've issued this custom boot loader to stop damage to the
FET's / circuitry by having it powered on at boot.  You can find this
boot loader under:

G3Firmware/bootloader/hardware/arduino/bootloaders/atmega:

-rwxr-xr-x  1 staff  29297 19 Feb 20:05 ATmegaBOOT_168.c
-rw-r--r--  1 staff   5513 19 Feb 20:05 ATmegaBOOT_168_ec22.hex
-rw-r--r--  1 staff   5529 19 Feb 20:05 ATmegaBOOT_168_ec3x.hex
-rw-r--r--  1 staff   5513 19 Feb 20:05 ATmegaBOOT_168_ec3x_328.hex
-rw-r--r--  1 staff  11122 19 Feb 20:05 ATmegaBOOT_168_mb2x.hex
-rwxr-xr-x  1 staff   7487 19 Feb 20:05 Makefile

There's also an mb2x.hex, I'm guessing for the motherboard, but I've
never seen this documented anywhere.

Of course, you could still switch off the FETs as part of the startup
in the main code, if you were going
to dump the bootloader.

--
You received this message because you are subscribed to the Google Groups "MakerBot Operators" group.
To post to this group, send email to makerbot@googlegroups.com.
To unsubscribe from this group, send email to makerbot+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/makerbot?hl=en.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jetty  
View profile  
 More options Mar 8 2012, 10:04 am
From: Jetty <clelland...@gmail.com>
Date: Thu, 8 Mar 2012 07:04:08 -0800 (PST)
Local: Thurs, Mar 8 2012 10:04 am
Subject: Re: help setting up toolchain

>Was a bootloader customized for lack of space in the firmware?

See previous post.

>Since the bootloader loads then steps aside to run the app. What is the advantage to put that setup in the boot loader?
>Do you think it was to assure an 'all off' during a firmware upgrade?

See this: http://wiki.makerbot.com/ec22

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Rob Giseburt  
View profile  
 More options Mar 8 2012, 10:47 am
From: Rob Giseburt <giseb...@gmail.com>
Date: Thu, 8 Mar 2012 09:47:53 -0600
Local: Thurs, Mar 8 2012 10:47 am
Subject: Re: [MakerBot] Re: help setting up toolchain
I customized mine to add an I2C display to the EC.

> Do you think it was to assure an 'all off' during a firmware upgrade?

The pins to the heaters and (early on) to the DC motor needed to be
controlled during a firmware update.

I ran the EC without a bootloader for a while, and that's when I
learned that some of the pins were never setup on the main firmware. I
corrected it and makerbot merged the changes in, but that's been at
least a year ago and many things have changed.

  -Rob


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
stottb@gmail.com  
View profile  
 More options Mar 8 2012, 11:42 am
From: "sto...@gmail.com" <sto...@gmail.com>
Date: Thu, 08 Mar 2012 11:42:10 -0500
Local: Thurs, Mar 8 2012 11:42 am
Subject: Re: [MakerBot] Re: help setting up toolchain

OK. Between your direct handling and jetty pointing me to the EC wiki they had floating pins. Seems pull down resistors on the board would help. And if not then use transistors to power the mosfets. This would, obvious, have the mosfets off till turned up by application.

----- Reply message -----
From: "Rob Giseburt" <giseb...@gmail.com>
Date: Thu, Mar 8, 2012 10:47 am
Subject: [MakerBot] Re: help setting up toolchain
To: "makerbot@googlegroups.com" <makerbot@googlegroups.com>
Cc: "Jetty" <clelland...@gmail.com>

I customized mine to add an I2C display to the EC.

> Do you think it was to assure an 'all off' during a firmware upgrade?

The pins to the heaters and (early on) to the DC motor needed to be
controlled during a firmware update.

I ran the EC without a bootloader for a while, and that's when I
learned that some of the pins were never setup on the main firmware. I
corrected it and makerbot merged the changes in, but that's been at
least a year ago and many things have changed.

  -Rob


--
You received this message because you are subscribed to the Google Groups "MakerBot Operators" group.
To post to this group, send email to makerbot@googlegroups.com.
To unsubscribe from this group, send email to makerbot+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/makerbot?hl=en.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Rob Giseburt  
View profile  
 More options Mar 8 2012, 12:08 pm
From: Rob Giseburt <giseb...@gmail.com>
Date: Thu, 8 Mar 2012 11:08:02 -0600
Local: Thurs, Mar 8 2012 12:08 pm
Subject: Re: [MakerBot] Re: help setting up toolchain

Are you designing a new EC?

They can float for a small amount of time. Just as long as you set them low
as soon as possible, which is either at the beginning of the bootloader or
the beginning of the firmware (or, better, both, like it should be now.)

  -Rob

On Mar 8, 2012, at 10:42 AM, "sto...@gmail.com" <sto...@gmail.com> wrote:

OK. Between your direct handling and jetty pointing me to the EC wiki they
had floating pins. Seems pull down resistors on the board would help. And
if not then use transistors to power the mosfets. This would, obvious, have
the mosfets off till turned up by application.

----- Reply message -----
From: "Rob Giseburt" <giseb...@gmail.com>
Date: Thu, Mar 8, 2012 10:47 am
Subject: [MakerBot] Re: help setting up toolchain
To: "makerbot@googlegroups.com" <makerbot@googlegroups.com>
Cc: "Jetty" <clelland...@gmail.com>

I customized mine to add an I2C display to the EC.

> Do you think it was to assure an 'all off' during a firmware upgrade?

The pins to the heaters and (early on) to the DC motor needed to be
controlled during a firmware update.

I ran the EC without a bootloader for a while, and that's when I
learned that some of the pins were never setup on the main firmware. I
corrected it and makerbot merged the changes in, but that's been at
least a year ago and many things have changed.

 -Rob


--
You received this message because you are subscribed to the Google Groups
"MakerBot Operators" group.
To post to this group, send email to makerbot@googlegroups.com.
To unsubscribe from this group, send email to
makerbot+unsubscribe@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/makerbot?hl=en.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
B Stott  
View profile  
 More options Mar 8 2012, 12:50 pm
From: B Stott <sto...@gmail.com>
Date: Thu, 8 Mar 2012 12:50:49 -0500
Local: Thurs, Mar 8 2012 12:50 pm
Subject: Re: [MakerBot] Re: help setting up toolchain

Why not pin low on the board?


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Rob Giseburt  
View profile  
 More options Mar 8 2012, 1:02 pm
From: Rob Giseburt <giseb...@gmail.com>
Date: Thu, 8 Mar 2012 12:02:29 -0600
Local: Thurs, Mar 8 2012 1:02 pm
Subject: Re: [MakerBot] Re: help setting up toolchain

Are you redesigning the EC?

  -Rob

On Mar 8, 2012, at 11:51 AM, B Stott <sto...@gmail.com> wrote:

Why not pin low on the board?


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
stottb@gmail.com  
View profile  
 More options Mar 8 2012, 3:16 pm
From: "sto...@gmail.com" <sto...@gmail.com>
Date: Thu, 08 Mar 2012 15:16:18 -0500
Local: Thurs, Mar 8 2012 3:16 pm
Subject: Re: [MakerBot] Re: help setting up toolchain

Should I redesign the EC?

----- Reply message -----
From: "Rob Giseburt" <giseb...@gmail.com>
Date: Thu, Mar 8, 2012 1:02 pm
Subject: [MakerBot] Re: help setting up toolchain
To: "B Stott" <sto...@gmail.com>
Cc: "makerbot@googlegroups.com" <makerbot@googlegroups.com>


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Rob Giseburt  
View profile  
 More options Mar 8 2012, 3:28 pm
From: Rob Giseburt <giseb...@gmail.com>
Date: Thu, 8 Mar 2012 14:28:45 -0600
Local: Thurs, Mar 8 2012 3:28 pm
Subject: Re: [MakerBot] Re: help setting up toolchain

If you are proposing adding resistors to the board, then it sounds like
you're planning a redesign.

  -Rob

On Mar 8, 2012, at 2:16 PM, "sto...@gmail.com" <sto...@gmail.com> wrote:

Should I redesign the EC?

----- Reply message -----
From: "Rob Giseburt" <giseb...@gmail.com>
Date: Thu, Mar 8, 2012 1:02 pm
Subject: [MakerBot] Re: help setting up toolchain
To: "B Stott" <sto...@gmail.com>
Cc: "makerbot@googlegroups.com" <makerbot@googlegroups.com>

Are you redesigning the EC?

  -Rob

On Mar 8, 2012, at 11:51 AM, B Stott <sto...@gmail.com> wrote:

Why not pin low on the board?


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jetty  
View profile  
 More options Mar 8 2012, 4:18 pm
From: Jetty <clelland...@gmail.com>
Date: Thu, 8 Mar 2012 13:18:48 -0800 (PST)
Local: Thurs, Mar 8 2012 4:18 pm
Subject: Re: help setting up toolchain

> sounds like you're planning a redesign.

When you redesign the extruder, please post your design to
thingiverse.  A bigger processor would
be a good idea and robustness against static (serial to MB and
thermocouple) whilst you're in the design phase.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Joseph Chiu  
View profile  
 More options Mar 8 2012, 4:22 pm
From: Joseph Chiu <joec...@joechiu.com>
Date: Thu, 8 Mar 2012 13:22:20 -0800
Local: Thurs, Mar 8 2012 4:22 pm
Subject: Re: [MakerBot] Re: help setting up toolchain
And please add MOVs or some other transient suppressors to protect the
inputs and the FET's!


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
stottb@gmail.com  
View profile  
 More options Mar 8 2012, 4:27 pm
From: "sto...@gmail.com" <sto...@gmail.com>
Date: Thu, 08 Mar 2012 16:27:48 -0500
Local: Thurs, Mar 8 2012 4:27 pm
Subject: Re: [MakerBot] Re: help setting up toolchain

Hmmm. Not immediate. Hot end first. Extruder second. EC, guess if it can be upgraded. I think it is likely too involved for me.

----- Reply message -----
From: "Rob Giseburt" <giseb...@gmail.com>
Date: Thu, Mar 8, 2012 3:28 pm
Subject: [MakerBot] Re: help setting up toolchain
To: "sto...@gmail.com" <sto...@gmail.com>
Cc: "makerbot@googlegroups.com" <makerbot@googlegroups.com>


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dan Newman  
View profile  
 More options Mar 8 2012, 4:41 pm
From: Dan Newman <dan.new...@mtbaldy.us>
Date: Thu, 08 Mar 2012 13:41:31 -0800
Local: Thurs, Mar 8 2012 4:41 pm
Subject: Re: [MakerBot] help setting up toolchain

On 8 Mar 2012 , at 1:18 PM, Jetty wrote:

>> sounds like you're planning a redesign.

> When you redesign the extruder, please post your design to
> thingiverse.  A bigger processor would
> be a good idea and robustness against static (serial to MB and
> thermocouple) whilst you're in the design phase.

And space and processing cycles for the snake game so that
it can be taken off of the motherboard freeing up space for
more amazing new features.  (Or maybe a two player
version with networking over the rs485 cable?)

Dan


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
W. Craig Trader  
View profile  
 More options Mar 8 2012, 5:21 pm
From: "W. Craig Trader" <craig.tra...@gmail.com>
Date: Thu, 8 Mar 2012 17:21:06 -0500
Local: Thurs, Mar 8 2012 5:21 pm
Subject: Re: [MakerBot] Re: help setting up toolchain

Ok, I'll bite (and probably cause more thread fragmentation) ...

What's wrong with the hot end?

There's a laundry list of problems with extruders (and just as many
proposed solutions), and the problems with the existing MBI EC are well
documented, but what's wrong with the Mk7/8 hot end?  For the moment, let's
leave value-system judgements[1] out of it and stick to physics and
engineering problems.

- Craig -

[1] We wouldn't be here without the RepRap project, and I'm currently
working with the local RepRap group to build 10+ Prusas, but I got my TOM
to print things, not to work on the next iteration of the Universal
Constructor.  I don't mind building a printer out of non-printable parts,
as long as they are cheap and plentiful.

- C -


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Aaron Double  
View profile  
 More options Mar 8 2012, 5:40 pm
From: Aaron Double <aad...@gmail.com>
Date: Thu, 8 Mar 2012 17:40:51 -0500
Local: Thurs, Mar 8 2012 5:40 pm
Subject: Re: [MakerBot] help setting up toolchain
Now why would the extruder need to compete with the motherboard playing the snake game?

On Mar 8, 2012, at 4:41 PM, Dan Newman wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages < Older 
« Back to Discussions « Newer topic     Older topic »