Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Test Box v3
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Anton Sarukhanov
Test Box v3
Commits
53f39b99
Commit
53f39b99
authored
6 years ago
by
Anton Sarukhanov
Browse files
Options
Downloads
Patches
Plain Diff
Define ADC register constants, implement register access & sending commands.
parent
59c4103f
No related branches found
No related tags found
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
ads8698.c
+45
-20
45 additions, 20 deletions
ads8698.c
include/ads8698.h
+45
-4
45 additions, 4 deletions
include/ads8698.h
include/spi.h
+1
-1
1 addition, 1 deletion
include/spi.h
measure.c
+2
-1
2 additions, 1 deletion
measure.c
spi.c
+3
-3
3 additions, 3 deletions
spi.c
with
96 additions
and
29 deletions
ads8698.c
+
45
−
20
View file @
53f39b99
/**
* This file includes functions for interacting with an ADC
* This file includes functions for interacting with an ADC
.
*
* Written for: TI ADS8698 8-channel ADC
*
...
...
@@ -34,42 +34,67 @@ void ADS8698_init(void) {
// Reset the ADC.
ADS8698_reset
();
// Start measurements
ADS8698_send_command
(
ADS8698_RESET
);
SPI_transmit
(
'H'
);
SPI_transmit
(
'e'
);
SPI_transmit
(
'l'
);
SPI_transmit
(
'l'
);
SPI_transmit
(
'o'
);
SPI_transmit
(
'!'
);
}
/* Set the input range on the ADC. */
void
ADS8698_set_range
(
ADS8698_range
range
)
{
// TODO
return
;
uint8_t
address
;
for
(
uint8_t
channel
=
0
;
channel
<
8
;
channel
++
)
{
address
=
0x05
+
channel
;
ADS8698_write_register
(
address
,
range
);
ADS8698_read_register
(
address
);
}
}
/* Write to a register on the ADC. */
void
ADS8698_write_register
(
uint8_t
address
,
uint8_t
data
)
{
// TODO
return
;
/* Start the ADC's auto-scan mode. */
void
ADS8698_auto_scan
(
void
)
{
return
;
// TODO
}
/* Send a command to the ADC. */
/* Send a command to the ADC.
*
* See datasheet section 8.5.1.
*/
void
ADS8698_send_command
(
ADS8698_command
command
)
{
// TODO
return
;
ADS8698_CS_LOW
;
SPI_transmit
(
command
);
// First byte
SPI_transmit
(
0x00
);
// Second byte (always zero).
ADS8698_CS_HIGH
;
}
/* Write to a register on the ADC.
*
* See datasheet section 8.5.2.
*/
void
ADS8698_write_register
(
uint8_t
address
,
uint8_t
data
)
{
ADS8698_CS_LOW
;
address
|=
1UL
<<
7
;
// 8th bit signifies "Read/Write Mode"; set 1.
SPI_transmit
(
address
);
SPI_transmit
(
data
);
ADS8698_CS_HIGH
;
}
/* Read from a register on the ADC.
*
* See datasheet section 8.5.2.
*/
uint8_t
ADS8698_read_register
(
uint8_t
address
)
{
ADS8698_CS_LOW
;
address
|=
0UL
<<
7
;
// 8th bit signifies "Read/Write Mode"; set 0.
SPI_transmit
(
address
<<
1
);
uint8_t
data
=
SPI_receive
();
ADS8698_CS_HIGH
;
return
data
;
}
/* Reset the ADC.
*
* Pull RST low for 70ns (instructions: 40-100ns).
* See datasheet section 8.4.1.1.6.
*/
void
ADS8698_reset
(
void
)
{
PORTC
&=
~
_BV
(
PORTC0
);
// Pull RST low for 70ns (instructions: 40-100ns).
_delay_us
(
0
.
47
);
PORTC
|=
_BV
(
PORTC0
);
}
This diff is collapsed.
Click to expand it.
include/ads8698.h
+
45
−
4
View file @
53f39b99
/**
* This file includes functions for interacting with an ADC
* This file includes functions for interacting with an ADC
.
*
* Written for: TI ADS8698 8-channel ADC
*
...
...
@@ -14,7 +14,13 @@
*/
/* ADC Commands.
// Macros to toggle control pins
#define ADS8698_RST_LOW PORTC &= ~_BV(PORTC0)
#define ADS8698_RST_HIGH PORTC |= _BV(PORTC0)
#define ADS8698_CS_LOW PORTC &= ~_BV(PORTC1)
#define ADS8698_CS_HIGH PORTC |= _BV(PORTC1)
/* ADC commands
*
* See datasheet section 8.5.1.
*/
...
...
@@ -36,7 +42,36 @@ typedef enum {
}
ADS8698_command
;
/* ADC Input Ranges.
/* ADC program registers
*
* See datasheet section 8.5.1.
*/
typedef
enum
{
// Auto-Scan control
ADS8698_AUTO_CH_SEL
=
0x01
,
// Channels to use in auto-scan mode
ADS8698_CH_POWER_DN
=
0x02
,
// Channels to shut down
// Feature selection
ADS8698_FEATURE_SEL
=
0x03
,
// Enable & configure device features
// Range selection
ADS8698_CH0_RANGE
=
0x05
,
// Input range for channel 0
ADS8698_CH1_RANGE
=
0x06
,
// Input range for channel 1
ADS8698_CH2_RANGE
=
0x07
,
// Input range for channel 2
ADS8698_CH3_RANGE
=
0x08
,
// Input range for channel 3
ADS8698_CH4_RANGE
=
0x09
,
// Input range for channel 4
ADS8698_CH5_RANGE
=
0x0A
,
// Input range for channel 5
ADS8698_CH6_RANGE
=
0x0B
,
// Input range for channel 6
ADS8698_CH7_RANGE
=
0x0C
,
// Input range for channel 7
// TODO: Implement alarm-related registers.
// Command read-back (read-only)
ADS8698_COMMAND
=
0x00
,
// Current device command (mode of operation)
}
ADS8698_register
;
/* ADC input ranges
*
* See datasheet section 8.5.2.3.3.
*/
...
...
@@ -45,7 +80,7 @@ typedef enum {
ADS8698_RANGE_BIPOLAR_1_25X
=
0x01
,
// 0 +/- 1.25 x Vref
ADS8698_RANGE_BIPOLAR_0_625X
=
0x02
,
// 0 +/- 0.625 x Vref
ADS8698_RANGE_UNIPOLAR_2_5X
=
0x05
,
// 0 + 2.5 x Vref
ADS8698_RANGE_UNIPOLAR_1_25X
=
0x0
// 0 + 1.25 x Vref
ADS8698_RANGE_UNIPOLAR_1_25X
=
0x0
6
// 0 + 1.25 x Vref
}
ADS8698_range
;
...
...
@@ -58,5 +93,11 @@ void ADS8698_set_range(ADS8698_range range);
/* Send a command to the ADC. */
void
ADS8698_send_command
(
ADS8698_command
command
);
/* Write to a register on the ADC. */
void
ADS8698_write_register
(
uint8_t
address
,
uint8_t
data
);
/* Read from a register on the ADC. */
uint8_t
ADS8698_read_register
(
uint8_t
address
);
/* Reset the ADC. */
void
ADS8698_reset
(
void
);
This diff is collapsed.
Click to expand it.
include/spi.h
+
1
−
1
View file @
53f39b99
...
...
@@ -9,4 +9,4 @@ void SPI_init(void);
void
SPI_transmit
(
char
data
);
/* Receive a byte from the SPI interface. */
char
SPI_receive
(
void
);
uint8_t
SPI_receive
(
void
);
This diff is collapsed.
Click to expand it.
measure.c
+
2
−
1
View file @
53f39b99
...
...
@@ -9,7 +9,7 @@
#include
"include/ads8698.h"
#include
"include/measure.h"
#define MEASURE_RANGE ADS8698_RANGE_UNIPOLAR_1_25X
/* Acquire resistance measurements. */
struct
Measurements
measure
()
{
...
...
@@ -22,6 +22,7 @@ struct Measurements measure() {
/* Prepare for measuring resistance. */
void
Measure_init
(
void
)
{
ADS8698_init
();
ADS8698_set_range
(
MEASURE_RANGE
);
_delay_us
(
100
);
// int sample_count = 2048; // TODO: what is this
// ADS8698_config(&sample_buffer, sample_count, ADS8698_CHANNEL_0, INPUT_RANGE_UNIPOLAR_1_25X_VREF);
...
...
This diff is collapsed.
Click to expand it.
spi.c
+
3
−
3
View file @
53f39b99
...
...
@@ -11,8 +11,8 @@ void SPI_init(void) {
// Set MOSI, SCK, and SS as outputs
DDRB
=
(
1
<<
DDB3
)
|
(
1
<<
DDB5
)
|
(
1
<<
DDB2
);
// Enable SPI, become master, set clock rate to
CPU clock / 16
.
SPCR
=
(
1
<<
SPE
)
|
(
1
<<
MSTR
);
// Enable SPI, become master, set
SPI
clock rate to
1 MHz
.
SPCR
=
(
1
<<
SPE
)
|
(
1
<<
MSTR
)
|
(
1
<<
SPR0
)
;
}
/* Send a byte over the SPI interface. */
...
...
@@ -26,7 +26,7 @@ void SPI_transmit(char data) {
}
/* Receive a byte from the SPI interface. */
char
SPI_receive
(
void
)
{
uint8_t
SPI_receive
(
void
)
{
// Wait for reception to complete.
while
(
!
(
SPSR
&
(
1
<<
SPIF
)))
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment