MPU9255
MPU9255 Arduino Library
MPU9255_Interrupts.cpp
Go to the documentation of this file.
1 
6 // This file is a part of MPU9255 library.
7 // Copyright (c) 2017-2020 Krzysztof Adamkiewicz <kadamkiewicz835@gmail.com>
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining a copy of
10 // this software and associated documentation files (the “Software”), to deal in the
11 // Software without restriction, including without limitation the rights to use, copy,
12 // modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
13 // and to permit persons to whom the Software is furnished to do so, subject to the
14 // following conditions: THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
15 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
18 // OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
19 
20 #include "MPU9255.h"
21 #include "Arduino.h"
22 
27 void MPU9255::set_INT_signal_mode(interrupt_pin selected_mode)
28 {
29  switch(selected_mode)
30  {
31  case latched_output://if latch mode is selected
32  write_OR(MPU_address,INT_PIN_CFG,(1<<5));//set LATCH_INT_EN bit
33  break;
34 
35  case pulse_output://if pulse mode is selected
36  write_AND(MPU_address,INT_PIN_CFG,~(1<<5));//clear LATCH_INT_EN bit
37  break;
38  }
39 }
40 
45 {
46  read(MPU_address,INT_STATUS);//read interrupt status register to clear the flags
47 }
48 
53 void MPU9255::set_INT_active_state(interrupt_pin selected_mode)
54 {
55  switch (selected_mode)
56  {
57  case active_low:
58  write_OR(MPU_address,INT_PIN_CFG,(1<<7));
59  break;
60 
61  case active_high:
62  write_AND(MPU_address,INT_PIN_CFG,~(1<<7));
63  break;
64  }
65 }
66 
71 void MPU9255::set_INT_pin_mode(interrupt_pin selected_mode)
72 {
73  switch (selected_mode)
74  {
75  case open_drain:
76  write_OR(MPU_address,INT_PIN_CFG,(1<<6));
77  break;
78 
79  case push_pull:
80  write_AND(MPU_address,INT_PIN_CFG,~(1<<6));
81  break;
82  }
83 }
84 
89 void MPU9255::enable_interrupt_output(interrupts selected_interrupt)
90 {
91  switch(selected_interrupt)
92  {
93  case motion_interrupt:
94  write_OR(MPU_address,INT_ENABLE,(1<<6));
95  break;
96 
97  case FIFO_overflow_interrupt:
98  write_OR(MPU_address,INT_ENABLE,(1<<4));
99  break;
100 
101  case Fsync_interrupt:
102  write_OR(MPU_address,INT_ENABLE,(1<<3));
103  break;
104 
105  case raw_rdy_interrupt:
106  write_OR(MPU_address,INT_ENABLE,(1<<0));
107  break;
108  }
109 }
110 
115 void MPU9255::disable_interrupt_output(interrupts selected_interrupt)
116 {
117  switch(selected_interrupt)
118  {
119  case motion_interrupt:
120  write_OR(MPU_address,INT_ENABLE,~(1<<6));
121  break;
122 
123  case FIFO_overflow_interrupt:
124  write_OR(MPU_address,INT_ENABLE,~(1<<4));
125  break;
126 
127  case Fsync_interrupt:
128  write_OR(MPU_address,INT_ENABLE,~(1<<3));
129  break;
130 
131  case raw_rdy_interrupt:
132  write_OR(MPU_address,INT_ENABLE,~(1<<0));
133  break;
134  }
135 }
136 
141 void MPU9255::set_motion_threshold_level(uint8_t threshold)
142 {
143  write(MPU_address,WOM_THR,threshold);//write threshold value to the WOM_THR register
144 }
145 
150 {
151  write(MPU_address,MOT_DETECT_CTRL,(1<<7)|(1<<7));
152 }
153 
158 {
159  write(MPU_address,MOT_DETECT_CTRL,~((1<<7)|(1<<7)));
160 }
void disable_interrupt_output(interrupts selected_interrupt)
Disable interrupt.
void set_INT_signal_mode(interrupt_pin selected_mode)
Set interrupt signal mode.
void enable_motion_interrupt()
Enable motion detector interrupt.
void set_INT_active_state(interrupt_pin selected_mode)
Set interrupt pin active state.
void disable_motion_interrput()
Disable motion detector interrupt.
void enable_interrupt_output(interrupts selected_interrupt)
Enable interrupt.
void clear_interrupt()
Clear interrupt flag (this also clears interrupt pin).
void set_INT_pin_mode(interrupt_pin selected_mode)
Set interrupt pin mode.
void set_motion_threshold_level(uint8_t threshold)
Set motion detector threeshold level.
Main header of the library.