Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
karudu
/
Scope
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Pipelines
Members
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
6b68f03d
authored
Oct 19, 2022
by
karudu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mõõtmisperioodi muutmine, kursorid
parent
ac21eb86
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
87 additions
and
20 deletions
scope.ino
scope.ino
View file @
6b68f03d
...
@@ -2,13 +2,17 @@
...
@@ -2,13 +2,17 @@
#define PIN_BUTTON_2 4
#define PIN_BUTTON_2 4
#define PIN_BUTTON_3 3
#define PIN_BUTTON_3 3
#define PIN_BUTTON_4 2
#define PIN_BUTTON_4 2
#define PIN_ADC
0 // A0
#define PIN_ADC
7 // A7
#define BUTTON_1 0
#define BUTTON_1 0
#define BUTTON_2 1
#define BUTTON_2 1
#define BUTTON_3 2
#define BUTTON_3 2
#define BUTTON_4 3
#define BUTTON_4 3
// Cursor values
#define CURSOR_1 "5.00"
#define CURSOR_2 "0.00"
// https://www.gammon.com.au/adc
// https://www.gammon.com.au/adc
unsigned
long
G_LastDebounceTime
[
4
];
unsigned
long
G_LastDebounceTime
[
4
];
...
@@ -34,33 +38,108 @@ byte ReadButton(int Button)
...
@@ -34,33 +38,108 @@ byte ReadButton(int Button)
return
0
;
return
0
;
}
}
// Error occured, light the onboard LED and stop the program
void
Error
()
{
cli
();
digitalWrite
(
LED_BUILTIN
,
HIGH
);
for
(;;)
{}
}
// Set up the ADC registers
void
InitADC
()
{
ADCSRA
=
bit
(
ADEN
)
|
bit
(
ADIE
)
|
bit
(
ADIF
);
// Enable the ADC and the read complete interrupt
ADCSRA
|=
bit
(
ADPS2
);
// Prescaler 16
ADMUX
=
bit
(
REFS0
)
|
PIN_ADC
;
ADCSRB
=
bit
(
ADTS0
)
|
bit
(
ADTS2
);
// Timer 1 CompareB
ADCSRA
|=
bit
(
ADATE
);
// Enable auto trigger
}
#define PERIOD_10MS 0
#define PERIOD_1MS 1
#define PERIOD_100US 2
#define PERIOD_10US 3
#define PERIOD_100MS 4
#define PERIOD_1S 5
// Set timer 1 to a specified measuring interval
// Set timer 1 to a specified measuring interval
void
SetTimerPeriod
()
void
SetTimerPeriod
(
int
Period
)
{
{
cli
();
cli
();
TCCR1A
=
0
;
TCCR1A
=
0
;
TCCR1B
=
0
;
// Reset TCCR
TCCR1B
=
0
;
// Reset TCCR
TCNT0
=
0
;
// Reset the counter
TCNT0
=
0
;
// Reset the counter
// http://www.8bit-era.cz/arduino-timer-interrupts-calculator.html
switch
(
Period
)
{
case
PERIOD_1S
:
{
TCCR1B
=
bit
(
CS12
)
|
bit
(
WGM12
);
// CTC mode, prescaler 256
OCR1A
=
62499
;
// 1 Hz ((16 MHz / 256 * 1 Hz) - 1)
}
break
;
case
PERIOD_100MS
:
{
TCCR1B
=
bit
(
CS10
)
|
bit
(
CS11
)
|
bit
(
WGM12
);
// CTC mode, prescaler 64
OCR1A
=
24999
;
// 10 Hz ((16 MHz / 64 * 10 Hz) - 1)
}
break
;
case
PERIOD_10MS
:
{
TCCR1B
=
bit
(
CS11
)
|
bit
(
WGM12
);
// CTC mode, prescaler 8
TCCR1B
=
bit
(
CS11
)
|
bit
(
WGM12
);
// CTC mode, prescaler 8
OCR1A
=
19999
;
// 100 Hz ((16 MHz / 8 * 100 Hz) - 1)
OCR1A
=
19999
;
// 100 Hz ((16 MHz / 8 * 100 Hz) - 1)
}
break
;
case
PERIOD_1MS
:
{
TCCR1B
=
bit
(
CS10
)
|
bit
(
WGM12
);
// CTC mode, prescaler 1
OCR1A
=
15999
;
// 1000 Hz ((16 MHz / 1000 Hz) - 1)
}
break
;
case
PERIOD_100US
:
{
TCCR1B
=
bit
(
CS10
)
|
bit
(
WGM12
);
// CTC mode, prescaler 1
OCR1A
=
1599
;
// 10000 Hz ((16 MHz / 10000 Hz) - 1)
}
break
;
case
PERIOD_10US
:
{
TCCR1B
=
bit
(
CS10
)
|
bit
(
WGM12
);
// CTC mode, prescaler 1
OCR1A
=
159
;
// 100000 Hz ((16 MHz / 100000 Hz) - 1)
}
break
;
default:
{
Serial
.
print
(
"SetTimerPeriod: Invalid period "
);
Serial
.
println
(
Period
);
Error
();
}
break
;
}
TIMSK1
|=
bit
(
OCIE1B
);
// Enable CompareB interrupt
TIMSK1
|=
bit
(
OCIE1B
);
// Enable CompareB interrupt
sei
();
sei
();
}
}
volatile
int
results
[
100
];
volatile
int
results
[
100
];
volatile
int
resultNumber
=
0
;
volatile
int
resultNumber
=
0
;
char
G_PrintfBuf
[
32
];
// ADC complete ISR
// ADC complete ISR
ISR
(
ADC_vect
)
ISR
(
ADC_vect
)
{
{
if
(
resultNumber
<=
99
)
results
[
resultNumber
++
]
=
ADC
;
//int tstart = micros();
// Range is 0-4.8 V
// TODO the printing here needs to be faster
sprintf
(
G_PrintfBuf
,
"%s
\t
%s
\t
"
,
CURSOR_1
,
CURSOR_2
);
Serial
.
print
(
G_PrintfBuf
);
Serial
.
println
((
ADC
/
1023.0
)
*
4.8
);
//Serial.println(5);
//sprintf(G_PrintfBuf, "%d\n", micros() - tstart);
//Serial.println(G_PrintfBuf);
}
}
EMPTY_INTERRUPT
(
TIMER1_COMPB_vect
);
EMPTY_INTERRUPT
(
TIMER1_COMPB_vect
);
char
G_PrintFBuf
[
32
];
void
setup
()
void
setup
()
{
{
pinMode
(
LED_BUILTIN
,
OUTPUT
);
pinMode
(
PIN_BUTTON_1
,
INPUT_PULLUP
);
pinMode
(
PIN_BUTTON_1
,
INPUT_PULLUP
);
pinMode
(
PIN_BUTTON_2
,
INPUT_PULLUP
);
pinMode
(
PIN_BUTTON_2
,
INPUT_PULLUP
);
pinMode
(
PIN_BUTTON_3
,
INPUT_PULLUP
);
pinMode
(
PIN_BUTTON_3
,
INPUT_PULLUP
);
...
@@ -68,13 +147,8 @@ void setup()
...
@@ -68,13 +147,8 @@ void setup()
Serial
.
begin
(
2000000
);
Serial
.
begin
(
2000000
);
SetTimerPeriod
();
// Set timer to 100 Hz
SetTimerPeriod
(
PERIOD_100US
);
InitADC
();
ADCSRA
=
bit
(
ADEN
)
|
bit
(
ADIE
)
|
bit
(
ADIF
);
// Enable the ADC and the read complete interrupt
ADCSRA
|=
bit
(
ADPS2
);
// Prescaler 16
ADMUX
=
bit
(
REFS0
)
|
PIN_ADC
;
ADCSRB
=
bit
(
ADTS0
)
|
bit
(
ADTS2
);
// Timer 1 CompareB
ADCSRA
|=
bit
(
ADATE
);
// Enable auto trigger
for
(
int
i
=
0
;
i
<
4
;
i
++
)
G_LastDebounceTime
[
i
]
=
0
;
for
(
int
i
=
0
;
i
<
4
;
i
++
)
G_LastDebounceTime
[
i
]
=
0
;
for
(
int
i
=
0
;
i
<
4
;
i
++
)
G_PrevButtonState
[
i
]
=
HIGH
;
for
(
int
i
=
0
;
i
<
4
;
i
++
)
G_PrevButtonState
[
i
]
=
HIGH
;
...
@@ -87,15 +161,8 @@ void loop()
...
@@ -87,15 +161,8 @@ void loop()
byte
State
=
ReadButton
(
i
);
byte
State
=
ReadButton
(
i
);
if
(
State
==
1
)
if
(
State
==
1
)
{
{
sprintf
(
G_Print
F
Buf
,
"Button %d is %d
\n
"
,
i
,
State
);
sprintf
(
G_Print
f
Buf
,
"Button %d is %d
\n
"
,
i
,
State
);
Serial
.
println
(
G_Print
F
Buf
);
Serial
.
println
(
G_Print
f
Buf
);
}
}
}
}
if
(
resultNumber
==
100
)
{
for
(
int
i
=
0
;
i
<
100
;
i
++
)
Serial
.
println
(
results
[
i
]);
resultNumber
=
0
;
}
}
}
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