Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
ArduinoCore-avr
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
ArduinoCore-avr
Commits
bb567ae6
Commit
bb567ae6
authored
Sep 07, 2016
by
Niklas Mischkulnig
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Requested changes to not change code for non ATtinyX5s
parent
1a280c0d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
5 deletions
+9
-5
cores/arduino/Arduino.h
cores/arduino/Arduino.h
+4
-4
cores/arduino/wiring_analog.c
cores/arduino/wiring_analog.c
+5
-1
No files found.
cores/arduino/Arduino.h
View file @
bb567ae6
...
...
@@ -68,11 +68,11 @@ void yield(void);
#define INTERNAL INTERNAL1V1
#elif defined(__AVR_ATtiny25__) || defined(__AVR_ATtiny45__) || defined(__AVR_ATtiny85__)
#define DEFAULT 0
#define EXTERNAL
1
#define INTERNAL1V1
2
#define EXTERNAL
4
#define INTERNAL1V1
8
#define INTERNAL INTERNAL1V1
#define INTERNAL2V56
6
#define INTERNAL2V56_EXTCAP
7
#define INTERNAL2V56
9
#define INTERNAL2V56_EXTCAP
13
#else
#if defined(__AVR_ATmega1280__) || defined(__AVR_ATmega2560__) || defined(__AVR_ATmega1284__) || defined(__AVR_ATmega1284P__) || defined(__AVR_ATmega644__) || defined(__AVR_ATmega644A__) || defined(__AVR_ATmega644P__) || defined(__AVR_ATmega644PA__)
#define INTERNAL1V1 2
...
...
cores/arduino/wiring_analog.c
View file @
bb567ae6
...
...
@@ -64,7 +64,11 @@ int analogRead(uint8_t pin)
// channel (low 4 bits). this also sets ADLAR (left-adjust result)
// to 0 (the default).
#if defined(ADMUX)
ADMUX
=
((
analog_reference
&
0x3
)
<<
6
)
|
((
analog_reference
&
0x4
)
?
0x10
:
0
)
|
(
pin
&
0x07
);
#if defined(__AVR_ATtiny25__) || defined(__AVR_ATtiny45__) || defined(__AVR_ATtiny85__)
ADMUX
=
(
analog_reference
<<
4
)
|
(
pin
&
0x07
);
#else
ADMUX
=
(
analog_reference
<<
6
)
|
(
pin
&
0x07
);
#endif
#endif
// without a delay, we seem to read from the wrong channel
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment