mirror of
https://github.com/arduino/Arduino.git
synced 2025-04-10 02:02:21 +02:00
INTERNAL -> INTERNAL1V1 AND INTERNAL2V56 on the Mega (issue #194).
This commit is contained in:
parent
0cb0132db2
commit
52e0e1a999
@ -19,7 +19,9 @@ FALLING LITERAL1 AttachInterrupt
|
|||||||
RISING LITERAL1 AttachInterrupt
|
RISING LITERAL1 AttachInterrupt
|
||||||
DEFAULT LITERAL1 AnalogReference
|
DEFAULT LITERAL1 AnalogReference
|
||||||
EXTERNAL LITERAL1 AnalogReference
|
EXTERNAL LITERAL1 AnalogReference
|
||||||
INTERAL LITERAL1 AnalogReference
|
INTERNAL LITERAL1 AnalogReference
|
||||||
|
INTERNAL1V1 LITERAL1 AnalogReference
|
||||||
|
INTERNAL2V56 LITERAL1 AnalogReference
|
||||||
|
|
||||||
# KEYWORD1 specifies datatypes and C/C++ keywords
|
# KEYWORD1 specifies datatypes and C/C++ keywords
|
||||||
|
|
||||||
|
@ -20,6 +20,9 @@ ARDUINO 0019
|
|||||||
|
|
||||||
* Disabling interrupts while digitalWrite() and pinMode() write to pins.
|
* Disabling interrupts while digitalWrite() and pinMode() write to pins.
|
||||||
http://code.google.com/p/arduino/issues/detail?id=146
|
http://code.google.com/p/arduino/issues/detail?id=146
|
||||||
|
|
||||||
|
* Replacing INTERNAL analog reference with INTERNAL1V1 AND INTERNAL2V56 on
|
||||||
|
the Arduino Mega. http://code.google.com/p/arduino/issues/detail?id=194
|
||||||
|
|
||||||
[environment]
|
[environment]
|
||||||
|
|
||||||
@ -30,6 +33,8 @@ ARDUINO 0019
|
|||||||
|
|
||||||
* Synchronized with the Processing 1.1 code base, bringing various changes.
|
* Synchronized with the Processing 1.1 code base, bringing various changes.
|
||||||
|
|
||||||
|
* Modified the parsing of avr-gcc / avr-g++ output and error messages.
|
||||||
|
|
||||||
* Adding control over scrolling in serial monitor.
|
* Adding control over scrolling in serial monitor.
|
||||||
http://code.google.com/p/arduino/issues/detail?id=97
|
http://code.google.com/p/arduino/issues/detail?id=97
|
||||||
|
|
||||||
|
@ -57,7 +57,12 @@ extern "C"{
|
|||||||
#define FALLING 2
|
#define FALLING 2
|
||||||
#define RISING 3
|
#define RISING 3
|
||||||
|
|
||||||
|
#if defined(__AVR_ATmega1280__)
|
||||||
|
#define INTERNAL1V1 2
|
||||||
|
#define INTERNAL2V56 3
|
||||||
|
#else
|
||||||
#define INTERNAL 3
|
#define INTERNAL 3
|
||||||
|
#endif
|
||||||
#define DEFAULT 1
|
#define DEFAULT 1
|
||||||
#define EXTERNAL 0
|
#define EXTERNAL 0
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user