Skip to content

Commit 9901d40

Browse files
author
Mark Sproul
committed
Merge remote branch 'upstream/master'
2 parents c692793 + b656d42 commit 9901d40

File tree

7 files changed

+23
-7
lines changed

7 files changed

+23
-7
lines changed

app/lib/RXTXcomm.jar

3 Bytes
Binary file not shown.

app/src/processing/app/Base.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@
4141
* files and images, etc) that comes from that.
4242
*/
4343
public class Base {
44-
public static final int REVISION = 20;
44+
public static final int REVISION = 21;
4545
/** 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";
4747
/** Set true if this a proper release rather than a numbered revision. */
4848
static public boolean RELEASE = false;
4949

build/build.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@
315315

316316
<target name="linux-run" depends="linux-build"
317317
description="Run Linux version">
318-
<exec executable="linux/work/arduino" dir="linux/work" spawn="false"/>
318+
<exec executable="./arduino" dir="linux/work" spawn="false"/>
319319
</target>
320320

321321
<target name="linux-dist" depends="linux-build"

build/macosx/template.app/Contents/Info.plist

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77

88
<!-- all these need to change for new releases -->
99
<key>CFBundleGetInfoString</key>
10-
<string>0019</string>
10+
<string>0021</string>
1111
<key>CFBundleVersion</key>
12-
<string>0019</string>
12+
<string>0021</string>
1313
<key>CFBundleShortVersionString</key>
14-
<string>0020</string>
14+
<string>0021</string>
1515
<!-- now stop changing things and get outta here -->
1616

1717
<key>CFBundleAllowMixedLocalizations</key>

build/shared/revisions.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
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+
115
ARDUINO 0019 - 2010.09.03
216

317
[core / libraries]

hardware/arduino/cores/arduino/wiring.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,8 @@ void init()
189189
// this is better for motors as it ensures an even waveform
190190
// note, however, that fast pwm mode can achieve a frequency of up
191191
// 8 MHz (with a 16 MHz clock) at 50% duty cycle
192+
193+
TCCR1B = 0;
192194

193195
// set timer 1 prescale factor to 64
194196
sbi(TCCR1B, CS11);

todo.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
0020 arduino
1+
0021 arduino
22

33
Fix Linux make.sh, etc. scripts
44
Test on Linux.

0 commit comments

Comments
 (0)