Honestly I noticed this consideration by reading the manual of avrdude , but it was the only way of experiencing different arduino with a positive result , normally look to the result if it works for me is ok

Moderator: Benj
hi benjBenj wrote:
..The Arduino Due board and Atmel SAM3X range is not currently supported at all in Flowcode, maybe it is something we can add further down the road...
LeighM wrote:Hi Rudi,
Please try the attached updated AVR CAL file
Regards,
Leigh
Code: Select all
#include "IRremote.h"
IRrecv irrecv(11); //
decode_results results;
void setup()
{
Serial.begin(9600); //
irrecv.enableIRIn(); //
}
void loop() {
if (irrecv.decode(&results)) //
{
Serial.println(results.value, HEX); //
irrecv.resume(); //
}
}
Code: Select all
#include <IRremote.h>
IRsend irsend;
int i=0;
void setup()
{
}
void loop()
{
i++;
irsend.sendNEC(i, 32);
delay(50);
}
This is strange because bootloader works pretty good at this baud rate. Also any program compiled in arduino IDE works perfect at 115200.Rudi wrote: ↑Sun Feb 01, 2015 10:53 amMEGA 2560 R3 ATMEGA Board compatibel Arduino MEGA2560 R3
USB CI: CH340G from WCH
http://www.ebay.de/itm/171641663903
Hi guys
RS232 works well until 57600.
If set 115200 the character will be illegible.
best wishes
rudi
older infos:
https://forums.ni.com/t5/LabVIEW/Arduin ... -p/1963481