Skip to content

Commit 1662261

Browse files
committed
removed legacy variable assignments
1 parent c8e8c97 commit 1662261

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/NineAxesMotion.cpp

-3
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,6 @@ NineAxesMotion::NineAxesMotion()
7373
*******************************************************************************************/
7474
void NineAxesMotion::initSensor(unsigned int address, int int_pin, int reset_pin)
7575
{
76-
INT_PIN = int_pin;
77-
RESET_PIN = reset_pin;
78-
7976
//Initialize the GPIO peripheral
8077
pinMode(int_pin, INPUT_PULLUP); //Configure Interrupt pin
8178
pinMode(reset_pin, OUTPUT); //Configure Reset pin

src/NineAxesMotion.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858

5959

6060
extern "C" {
61-
#include <utility/BNO055.h>
61+
#include "utility/BNO055.h"
6262
}
6363
#include <Wire.h>
6464
#include "Arduino.h"

0 commit comments

Comments
 (0)