Loading...
  Show Posts
Pages: [1] 2 3 ... 237
1  Development / Suggestions for the Arduino Project / Re: bug with relaxation on mega2560 on: January 02, 2013, 08:47:56 am
Here's a link to the issue for which we included the relax compiler argument: https://code.google.com/p/arduino/issues/detail?id=729
2  Development / Other Software Development / Re: State of Arduino Ethernet Library on: January 02, 2013, 08:43:18 am
BTW, there are generic Client, Server, IPAddress classes in the core, that various implementations can inherit from to provide a common interface. It probably doesn't share as much as it could but it's something.
3  Using Arduino / Microcontrollers / Re: Arduino 1.0.2 & ATtiny 85 on: December 09, 2012, 10:38:13 am
Sorry, there was a change in 1.0.2 that is incompatible with processors that don't have hardware serial support (like the ATtiny). This will be fixed in 1.0.3.  See: https://github.com/damellis/attiny/issues/8. For now, you can use 1.0.1 or change:

#error TXC0 not definable in HardwareSerial.h

to:

#warning TXC0 not definable in HardwareSerial.h

in HardwareSerial.h.
4  Products / Arduino Due / Re: Arduino IDE 1.50 on Mac OS X on: October 23, 2012, 12:37:12 pm
In the Finder, you can right-click on the application and select open. I think there's a dialog box warning, but it has an option to open the application anyway.  From then on, you should be able to launch the application normally.

We're working on getting the application properly signed so that this won't be necessary.
5  Using Arduino / Installation & Troubleshooting / Re: Defective Mac IDE Install on: June 28, 2012, 07:18:48 am
And can you enable verbose output during compilation (in the Preferences dialog) and post the full output here?
6  Using Arduino / Installation & Troubleshooting / Re: Mega 2560 > Me. on: June 27, 2012, 07:36:28 am
Hmm, if blink isn't working there's definitely some issue.  What happens when you try to upload?  What operating system are you on?  Which version of the Arduino software are you using?
7  Using Arduino / Installation & Troubleshooting / Re: Issue installing leonardo drivers on: June 24, 2012, 12:42:57 am
Hmm... what do you see in the Device Manager for the Leonardo?  Is it an official Arduino Leonardo (others may have different USB IDs and require different driver files)? 
8  Using Arduino / Installation & Troubleshooting / Re: Problems with Windows and Arduino UNO rev3 on: June 23, 2012, 10:37:06 pm
You don't need the FTDI drivers because the Uno uses a different USB to serial chip.  Which directory are you indicating when trying to install the drivers?  Make sure it's the main "drivers" directory, not the FTDI sub-directory.
9  Using Arduino / Installation & Troubleshooting / Re: Problem with running Arduino v. 1.0.1 on: June 23, 2012, 10:34:16 pm
There's an issue with the Polish translation that stops the application from running.  See: http://code.google.com/p/arduino/issues/detail?id=942 for more information.
10  Using Arduino / Installation & Troubleshooting / Re: Issue installing leonardo drivers on: June 23, 2012, 10:29:04 pm
What happens when you try to install them?
11  Using Arduino / Installation & Troubleshooting / Re: Mega 2560 Detection Problems on: June 23, 2012, 10:11:48 am
Hmmm....  the rxtx library and DLL are the things that determine which COM ports appear in the menu, so I'd start there.  Can you get rid of the custom RXTX DLL and try with the standard one? 

Also, make sure there aren't any other programs trying to scan / use COM ports (e.g. for things like cellular wifi dongles, cellphone syncing, etc). 
12  Using Arduino / Installation & Troubleshooting / Re: avrdude: stk500_getsync(): not in sync: resp=0x30 on: June 23, 2012, 10:06:33 am
Can you upload with verbose output enabled (in the Preferences dialog) and post the output here?

It might be an anti-virus program or firewall is preventing access to the serial port.  Or that some other program has it open already. 
13  Using Arduino / Installation & Troubleshooting / Re: Arduino Uno not showing up in Ports on Windows XP on: June 19, 2012, 02:49:45 pm
Do you see the Arduino under "unknown devices" in the Device Manager?
14  Using Arduino / Installation & Troubleshooting / Re: Upload Timeout Error on Mega 2560 - Not Sure What Changed on: June 19, 2012, 02:47:55 pm
Josephiah: it looks like the communication is flakey for some reason, maybe the power is cutting in and out (or there's a short appearing and disappearing).  Is it possible the board was damaged somehow (either physically or with too much current / voltage)?  Do you see the same behavior with nothing connected to the board?
15  Using Arduino / Installation & Troubleshooting / Re: Can't upload to Mega2560 on: June 19, 2012, 02:42:05 pm
There is a bug in the Mega 2560 bootloader that causes uploads to fail if your compiled sketch binary contains the string "!!!" (because this triggers a serial terminal).  This might be happening by chance with this code, e.g. in an array or lookup table or just by coincidence. 
Pages: [1] 2 3 ... 237