File tree 7 files changed +23
-7
lines changed
macosx/template.app/Contents
hardware/arduino/cores/arduino 7 files changed +23
-7
lines changed Original file line number Diff line number Diff line change 41
41
* files and images, etc) that comes from that.
42
42
*/
43
43
public class Base {
44
- public static final int REVISION = 20 ;
44
+ public static final int REVISION = 21 ;
45
45
/** This might be replaced by main() if there's a lib/version.txt file. */
46
- static String VERSION_NAME = "0020 " ;
46
+ static String VERSION_NAME = "0021 " ;
47
47
/** Set true if this a proper release rather than a numbered revision. */
48
48
static public boolean RELEASE = false ;
49
49
Original file line number Diff line number Diff line change 315
315
316
316
<target name =" linux-run" depends =" linux-build"
317
317
description =" Run Linux version" >
318
- <exec executable =" linux/work /arduino" dir =" linux/work" spawn =" false" />
318
+ <exec executable =" . /arduino" dir =" linux/work" spawn =" false" />
319
319
</target >
320
320
321
321
<target name =" linux-dist" depends =" linux-build"
Original file line number Diff line number Diff line change 7
7
8
8
<!-- all these need to change for new releases -->
9
9
<key >CFBundleGetInfoString </key >
10
- <string >0019 </string >
10
+ <string >0021 </string >
11
11
<key >CFBundleVersion </key >
12
- <string >0019 </string >
12
+ <string >0021 </string >
13
13
<key >CFBundleShortVersionString </key >
14
- <string >0020 </string >
14
+ <string >0021 </string >
15
15
<!-- now stop changing things and get outta here -->
16
16
17
17
<key >CFBundleAllowMixedLocalizations </key >
Original file line number Diff line number Diff line change
1
+ ARDUINO 0021 - 2010.10.02
2
+
3
+ * Modifying VID / PID combination in 8U2 firmwares.
4
+ * Fixing analogWrite() bug on pins 9 and 10 (Arduino Uno).
5
+ * Patched RXTX to include /dev/ttyACM* on Linux.
6
+
7
+ ARDUINO 0020 - 2010.09.27
8
+
9
+ * Added support for the Arduino Uno and Arduino Mega 2560.
10
+ * Including ATmega8U2 firmware used by Uno and Mega 2560.
11
+ * Including source code to optiboot bootloader used by the Uno.
12
+ * Including source code to the stk500v2 bootloader used by Mega 2560.
13
+ * New application icon (by ToDo).
14
+
1
15
ARDUINO 0019 - 2010.09.03
2
16
3
17
[core / libraries]
Original file line number Diff line number Diff line change @@ -189,6 +189,8 @@ void init()
189
189
// this is better for motors as it ensures an even waveform
190
190
// note, however, that fast pwm mode can achieve a frequency of up
191
191
// 8 MHz (with a 16 MHz clock) at 50% duty cycle
192
+
193
+ TCCR1B = 0 ;
192
194
193
195
// set timer 1 prescale factor to 64
194
196
sbi (TCCR1B , CS11 );
Original file line number Diff line number Diff line change 1
- 0020 arduino
1
+ 0021 arduino
2
2
3
3
Fix Linux make.sh, etc. scripts
4
4
Test on Linux.
You can’t perform that action at this time.
0 commit comments