lis3dh/main.c

89 lines
2.3 KiB
C
Raw Normal View History

2023-12-21 20:52:17 +00:00
#define _GNU_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <math.h>
2023-12-21 18:17:20 +00:00
#include "lis3dh.h"
#include "interrupt.h"
#include "spi.h"
2024-01-04 14:37:44 +00:00
/* GPIO 12 or Pin 32 */
#define GPIO_INTERRUPT_PIN 12
2023-12-21 18:17:20 +00:00
int main() {
lis3dh_t lis;
struct lis3dh_fifo_data fifo;
int i;
2023-12-21 18:17:20 +00:00
lis.dev.init = spi_init;
lis.dev.read = spi_read;
lis.dev.write = spi_write;
2023-12-21 20:52:17 +00:00
lis.dev.sleep = usleep;
lis.dev.deinit = spi_deinit;
2023-12-21 20:52:17 +00:00
/* initalise LIS3DH struct */
2023-12-22 08:26:10 +00:00
if (lis3dh_init(&lis)) {
/* error handling */
2023-12-21 23:29:22 +00:00
}
2024-01-04 14:37:44 +00:00
/* reset device just in case */
if (lis3dh_reset(&lis)) {
/* error handling */
}
/* register interrupt */
if (int_register(GPIO_INTERRUPT_PIN)) {
/* error handling */
2023-12-28 18:10:34 +00:00
}
lis.cfg.mode = LIS3DH_MODE_NORMAL;
2023-12-23 10:28:43 +00:00
lis.cfg.range = LIS3DH_FS_2G;
lis.cfg.rate = LIS3DH_ODR_100_HZ;
lis.cfg.fifo.mode = LIS3DH_FIFO_MODE_STREAM;
lis.cfg.fifo.trig = LIS3DH_FIFO_TRIG_INT1; /* trigger interrupt into int pin1 */
lis.cfg.pin1.overrun = 1; /* trigger upon FIFO overrun */
2024-01-02 11:00:49 +00:00
/* set up HP filter to remove DC component */
lis.cfg.filter.mode = LIS3DH_FILTER_MODE_NORMAL_REF;
lis.cfg.filter.cutoff = LIS3DH_FILTER_CUTOFF_4;
lis.cfg.filter.fds = 1; /* remove this line, or set to 1 to enable filter */
2023-12-23 13:31:59 +00:00
/* write device config */
2023-12-22 08:26:10 +00:00
if (lis3dh_configure(&lis)) {
/* error handling */
2024-01-04 14:37:44 +00:00
}
/* read REFERENCE to set filter to current accel field */
if (lis3dh_reference(&lis)) {
/* error handling */
}
/* wait for interrupt from LIS3DH */
if (int_poll(GPIO_INTERRUPT_PIN)) {
/* error handling */
2024-01-04 14:37:44 +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' */
if (lis3dh_read_fifo(&lis, &fifo)) {
/* error handling */
2023-12-21 18:17:20 +00:00
}
2023-12-29 23:24:15 +00:00
/* above function also writes out the qty of [x y z] sets stored in `fifo' */
for(i=0; i<fifo.size; i++) {
printf("x: %d mg, y: %d mg, z: %d mg\n", fifo.x[i], fifo.y[i], fifo.z[i]);
2024-01-02 11:00:49 +00:00
}
/* unregister interrupt */
if (int_unregister(GPIO_INTERRUPT_PIN)) {
/* error handling */
}
/* deinitalise struct */
2023-12-22 08:26:10 +00:00
if (lis3dh_deinit(&lis)) {
/* error handling */
2023-12-21 18:17:20 +00:00
}
return 0;
}