• Stars
    star
    170
  • Rank 217,140 (Top 5 %)
  • Language
    C
  • License
    MIT License
  • Created about 3 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

ADXL345 full function driver for general MCU and Linux.

English | 简体中文 | 繁體中文 | 日本語 | Deutsch | 한국어

LibDriver ADXL345

MISRA API License

The ADXL345 is a small, thin, ultralow power, 3-axis accelerometer launched by Analog Devices. It has high resolution (13-bit) measurement at up to ±16 g. Digital output data is formatted as 16-bit twos complement and is accessible through either a SPI (3- or 4-wire) or I2C digital interface.The ADXL345 is well suited for mobile device applications. It measures the static acceleration of gravity in tilt-sensing applications, as well as dynamic acceleration resulting from motion or shock. Its high resolution (3.9 mg/LSB) enables measurement of inclination changes less than 1.0°.Several special sensing functions are provided. Activity and inactivity sensing detect the presence or lack of motion by comparing the acceleration on any axis with user-set thresholds.Tap sensing detects single and double taps in any direction. Freefall sensing detects if the device is falling. These functions can be mapped individually to either of two interrupt output pins.An integrated memory management system with a 32-level first in,first out (FIFO) buffer can be used to store data to minimize host processor activity and lower overall system power consumption.Low power modes enable intelligent motion-based power management with threshold sensing and active acceleration measurement at extremely low power dissipation.

LibDriver ADXL345 is the full function driver of adxl345 launched by LibDriver. It provides acceleration reading, acceleration FIFO mode acquisition, free fall detection, activity /inactivity state detection, tap detection and other functions. LibDriver is MISRA compliant.

Table of Contents

Instruction

/src includes LibDriver ADXL345 source files.

/interface includes LibDriver ADXL345 IIC and SPI platform independent template.

/test includes LibDriver ADXL345 driver test code and this code can test the chip necessary function simply.

/example includes LibDriver ADXL345 sample code.

/doc includes LibDriver ADXL345 offline document.

/datasheet includes ADXL345 datasheet.

/project includes the common Linux and MCU development board sample code. All projects use the shell script to debug the driver and the detail instruction can be found in each project's README.md.

/misra includes the LibDriver MISRA code scanning results.

Install

Reference /interface IIC and SPI platform independent template and finish your platform IIC and SPI driver.

Add /src, /interface and /example to your project.

Usage

example basic

#include "driver_adxl345_basic.h"

uint8_t res;
uint8_t i;
float g[3];

res = adxl345_basic_init(ADXL345_INTERFACE_IIC, ADXL345_ADDRESS_ALT_0);                
if (res != 0)
{
    return 1;
}

...
    
for (i = 0; i < 3; i++)
{
    res = adxl345_basic_read((float *)g);
    if (res != 0)
    {
        (void)adxl345_basic_deinit();
        
        return 1;
    }
    adxl345_interface_debug_print("adxl345: x is %0.3f.\n", g[0]);
    adxl345_interface_debug_print("adxl345: y is %0.3f.\n", g[1]);
    adxl345_interface_debug_print("adxl345: z is %0.3f.\n", g[2]);
    adxl345_interface_delay_ms(1000);
    
    ...
        
}

...
    
(void)adxl345_basic_deinit();

return 0;

example fifo

#include "driver_adxl345_fifo.h"

uint8_t res;
float g[3];

void fifo_callback(float (*g)[3], uint16_t len)
{
    ...
    
    return 0;
}

res = gpio_interrupt_init(adxl345_fifo_irq_handler);
if (res != 0)
{
    return 1;
}
res = adxl345_fifo_init(ADXL345_INTERFACE_IIC, ADXL345_ADDRESS_ALT_0, fifo_callback);
if (res != 0)
{
    (void)gpio_interrupt_deinit();

    return 1;
}

while (1)
{
    adxl345_interface_delay_ms(10);
    
    ...    
}
...
    
(void)gpio_interrupt_deinit();
(void)adxl345_fifo_deinit();

return 0;

example interrupt

#include "driver_adxl345_interrupt.h"

uint8_t res;

void interrupt_callback(uint8_t type)
{
    switch (type)
    {
        case ADXL345_INTERRUPT_DATA_READY :
        {
            ...
                
            break;
        }
        case ADXL345_INTERRUPT_SINGLE_TAP :
        {
            adxl345_interface_debug_print("adxl345: irq single tap.\n");
         
            ...
                
            break;
        }
        case ADXL345_INTERRUPT_DOUBLE_TAP :
        {
            adxl345_interface_debug_print("adxl345: irq double tap.\n");
            
            ...
                
            break;
        }
        case ADXL345_INTERRUPT_ACTIVITY :
        {
            adxl345_interface_debug_print("adxl345: irq activity.\n");
            
            ...
                
            break;
        }
        case ADXL345_INTERRUPT_INACTIVITY :
        {
            adxl345_interface_debug_print("adxl345: irq inactivity.\n");
            
            ...
                
            break;
        }
        case ADXL345_INTERRUPT_FREE_FALL :
        {
            adxl345_interface_debug_print("adxl345: irq free fall.\n");
            
            ...
                
            break;
        }
        case ADXL345_INTERRUPT_OVERRUN :
        {
            ...
                
            break;
        }
        default :
        {
            ...
                
            break;
        }
    }
}

res = gpio_interrupt_init(adxl345_interrupt_irq_handler);
if (res != 0)
{
    return 1;
}
res = adxl345_interrupt_init(ADXL345_INTERFACE_SPI, ADXL345_ADDRESS_ALT_0,
                             interrupt_callback,
                             ADXL345_BOOL_TRUE 
                             ADXL345_BOOL_TRUE,
                             ADXL345_BOOL_TRUE,
                             ADXL345_BOOL_TRUE
                            );
if (res != 0)
{
    (void)gpio_interrupt_deinit();

    return 1;
}

...
    
while (1)
{
    if (adxl345_interrupt_server() != 0)
    {
        return 1;
    }
    adxl345_interface_delay_ms(10);
    
    ...
}

...
    
(void)gpio_interrupt_deinit();
(void)adxl345_interrupt_deinit();

return 0;

Document

Online documents: https://www.libdriver.com/docs/adxl345/index.html.

Offline documents: /doc/html/index.html.

Contributing

Please refer to CONTRIBUTING.md.

License

Copyright (c) 2015 - present LibDriver All rights reserved

The MIT License (MIT)

Permission is hereby granted, free of charge, to any person obtaining a copy

of this software and associated documentation files (the "Software"), to deal

in the Software without restriction, including without limitation the rights

to use, copy, modify, merge, publish, distribute, sublicense, and/or sell

copies of the Software, and to permit persons to whom the Software is

furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all

copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR

IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,

FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE

AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER

LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,

OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE

SOFTWARE.

Contact Us

Please sent an e-mail to [email protected].

More Repositories

1

w25qxx

W25QXX full function driver for general MCU and Linux.
C
470
star
2

ssd1306

SSD1306 full function driver for general MCU and Linux.
C
402
star
3

mpu9250

MPU9250 full function driver for general MCU and Linux.
C
332
star
4

nrf24l01

NRF24L01 full function driver for general MCU and Linux.
C
323
star
5

mpu6050

MPU6050 full function driver for general MCU and Linux.
C
300
star
6

ds18b20

DS18B20 full function driver for general MCU and Linux.
C
233
star
7

mfrc522

MFRC522 full function driver for general MCU and Linux.
C
157
star
8

mifare_classic

MIFARE Classic full function driver for general MCU and Linux.
C
155
star
9

ws2812b

WS2812B full function driver for general MCU and Linux.
C
153
star
10

dht11

DHT11 full function driver for general MCU and Linux.
C
139
star
11

pcf8574

PCF8574 full function driver for general MCU and Linux.
C
109
star
12

max7219

MAX7219 full function driver for general MCU and Linux.
C
96
star
13

max30102

MAX30102 full function driver for general MCU and Linux.
C
95
star
14

nrf905

NRF905 full function driver for general MCU and Linux.
C
94
star
15

as5600

AS5600 full function driver for general MCU and Linux.
C
86
star
16

hmc5883l

HMC5883L full function driver for general MCU and Linux.
C
79
star
17

amg8833

AMG8833 full function driver for general MCU and Linux.
C
79
star
18

bmp180

BMP180 full function driver for general MCU and Linux.
C
75
star
19

pca9685

PCA9685 full function driver for general MCU and Linux.
C
70
star
20

hx711

HX711 full function driver for general MCU and Linux.
C
66
star
21

ds3231

DS3231 full function driver for general MCU and Linux.
C
64
star
22

htu21d

HTU21D full function driver for general MCU and Linux.
C
63
star
23

tea5767

TEA5767 full function driver for general MCU and Linux.
C
62
star
24

ir_remote

NEC IR remote decode full function driver for general MCU and Linux.
C
60
star
25

bh1750fvi

BH1750FVI full function driver for general MCU and Linux.
C
54
star
26

ms5837

MS5837 full function driver for general MCU and Linux.
C
52
star
27

max31865

MAX31865 full function driver for general MCU and Linux.
C
51
star
28

mifare_ultralight

MIFARE Ultralight full function driver for general MCU and Linux.
C
51
star
29

ads1115

ADS1115 full function driver for general MCU and Linux.
C
43
star
30

ssd1351

SSD1351 full function driver for general MCU and Linux.
C
40
star
31

sx1268

SX1268 full function driver for general MCU and Linux.
C
40
star
32

max30105

MAX30105 full function driver for general MCU and Linux.
C
39
star
33

st7920

ST7920 full function driver for general MCU and Linux.
C
39
star
34

sps30

SPS30 full function driver for general MCU and Linux.
C
36
star
35

sgp30

SGP30 full function driver for general MCU and Linux.
C
35
star
36

tsl2561

TSL2561 full function driver for general MCU and Linux.
C
35
star
37

pcf8591

PCF8591 full function driver for general MCU and Linux.
C
34
star
38

at24cxx

AT24CXX full function driver for general MCU and Linux.
C
32
star
39

ntag21x

NTAG21X full function driver for general MCU and Linux.
C
32
star
40

sht31

SHT31 full function driver for general MCU and Linux.
C
31
star
41

max6675

MAX6675 full function driver for general MCU and Linux.
C
31
star
42

ina219

INA219 full function driver for general MCU and Linux.
C
30
star
43

hcsr04

HCSR04 full function driver for general MCU and Linux.
C
27
star
44

l3gd20h

L3GD20H full function driver for general MCU and Linux.
C
25
star
45

apds9960

APDS9960 full function driver for general MCU and Linux.
C
25
star
46

mcp9600

MCP9600 full function driver for general MCU and Linux.
C
24
star
47

ld3320

LD3320 full function driver for general MCU and Linux.
C
24
star
48

mlx90614

MLX90614 full function driver for general MCU and Linux.
C
24
star
49

pmw3901mb

PMW3901MB full function driver for general MCU and Linux.
C
23
star
50

isd17xx

ISD17XX full function driver for general MCU and Linux.
C
22
star
51

aht20

AHT20 full function driver for general MCU and Linux.
C
22
star
52

dht20

DHT20 full function driver for general MCU and Linux.
C
21
star
53

max30205

MAX30205 full function driver for general MCU and Linux.
C
20
star
54

tcs34725

TCS34725 full function driver for general MCU and Linux.
C
20
star
55

syn6288

SYN6288 full function driver for general MCU and Linux.
C
19
star
56

bmp390

BMP390 full function driver for general MCU and Linux.
C
18
star
57

mcp4725

MCP4725 full function driver for general MCU and Linux.
C
18
star
58

bmp388

BMP388 full function driver for general MCU and Linux.
C
16
star
59

uvis25

UVIS25 full function driver for general MCU and Linux.
C
15
star
60

adxl362

ADXL362 full function driver for general MCU and Linux.
C
15
star
61

lm75b

LM75B full function driver for general MCU and Linux.
C
15
star
62

fm24clxx

FM24CLXX full function driver for general MCU and Linux.
C
15
star
63

ssd1681

SSD1681 full function driver for general MCU and Linux.
C
12
star
64

sgp41

SGP41 full function driver for general MCU and Linux.
C
4
star
65

sgp40

SGP40 full function driver for general MCU and Linux.
C
1
star
66

lan8720

LAN8720 full function driver for general MCU and Linux.
C
1
star
67

ch9121

CH9121 full function driver for general MCU and Linux.
C
1
star