lis3dh/example/interrupts.c

88 lines
2.2 KiB
C
Raw Normal View History

2023-12-30 13:10:40 +00:00
#define _GNU_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <math.h>
#include "lis3dh.h"
#include "interrupt.h"
#include "i2c.h"
/* GPIO 12 or Pin 32 */
#define GPIO_INTERRUPT_PIN 12
int main() {
lis3dh_t lis;
struct lis3dh_fifo_data fifo;
int k;
lis.dev.init = i2c_init;
lis.dev.read = i2c_read;
lis.dev.write = i2c_write;
lis.dev.sleep = usleep;
lis.dev.deinit = i2c_deinit;
2024-01-02 15:35:35 +00:00
/* initalise LIS3DH struct */
2023-12-30 13:10:40 +00:00
if (lis3dh_init(&lis)) {
/* error handling */
}
2024-01-02 15:35:35 +00:00
/* reset device just in case */
if (lis3dh_reset(&lis)) {
/* error handling */
}
2023-12-30 13:10:40 +00:00
/* register interrupt */
if (int_register(GPIO_INTERRUPT_PIN)) {
/* error handling */
}
lis.cfg.mode = LIS3DH_MODE_NORMAL;
lis.cfg.range = LIS3DH_FS_2G;
lis.cfg.rate = LIS3DH_ODR_100_HZ;
lis.cfg.fifo.mode = LIS3DH_FIFO_MODE_STREAM;
2024-01-02 15:35:35 +00:00
lis.cfg.fifo.trig = LIS3DH_FIFO_TRIG_INT1; /* trigger interrupt into int pin1 */
lis.cfg.pin1.wtm = 1; /* trigger upon FIFO watermark level reached */
/* set up HP filter to remove DC component */
2024-01-02 15:35:35 +00:00
lis.cfg.filter.mode = LIS3DH_FILTER_MODE_NORMAL_REF;
lis.cfg.filter.cutoff = LIS3DH_FILTER_CUTOFF_4;
2023-12-30 13:10:40 +00:00
2024-01-02 15:35:35 +00:00
/* write device config */
2023-12-30 13:10:40 +00:00
if (lis3dh_configure(&lis)) {
/* error handling */
}
2024-01-02 15:35:35 +00:00
/* read REFERENCE to set filter to current accel field */
if (lis3dh_reference(&lis)) {
/* error handling */
}
2023-12-30 13:10:40 +00:00
/* wait for interrupt from LIS3DH */
if (int_poll(GPIO_INTERRUPT_PIN)) {
/* error handling */
}
2024-01-02 15:35:35 +00:00
/* read as many [x y z] sets as specified by watermark level (fth) */
/* copy them to the fifo data struct given below as `fifo' */
2023-12-30 13:10:40 +00:00
if (lis3dh_read_fifo(&lis, &fifo)) {
/* error handling */
}
2024-01-02 15:35:35 +00:00
/* above function also writes out the qty of [x y z] sets stored in `fifo' */
2023-12-30 13:10:40 +00:00
for(k=0; k<fifo.size; k++) {
printf("x: %04.04f, y: %04.04f z: %04.04f\n", fifo.x[k], fifo.y[k], fifo.z[k]);
2023-12-30 13:10:40 +00:00
}
/* unregister interrupt */
if (int_unregister(GPIO_INTERRUPT_PIN)) {
/* error handling */
}
2024-01-02 15:35:35 +00:00
/* deinitalise struct */
2023-12-30 13:10:40 +00:00
if (lis3dh_deinit(&lis)) {
/* error handling */
}
return 0;
}