Skip to content

Commit 189cc8b

Browse files
authored
Merge pull request #10 from NoahRosa/master
Restored interrupt pin on 2
2 parents 9aee5b6 + 6e67f73 commit 189cc8b

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

examples/X_NUCLEO_GNSS1A1_MicroNMEA_I2C/X_NUCLEO_GNSS1A1_MicroNMEA_I2C.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,8 @@ void setup(void)
168168
}
169169
while ((uint8_t) c != 0xFF);
170170

171-
pinMode(6, INPUT);
172-
attachInterrupt(digitalPinToInterrupt(6), ppsHandler, RISING);
171+
pinMode(2, INPUT);
172+
attachInterrupt(digitalPinToInterrupt(2), ppsHandler, RISING);
173173
}
174174

175175
void loop(void)

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=STM32duino X-NUCLEO-GNSS1A1
2-
version=1.0.1
2+
version=1.0.2
33
author=AST
44
maintainer=stm32duino
55
sentence=Allows controlling the X-NUCLEO-GNSS1A1 (GNSS expansion board based on Teseo LIV3F)

0 commit comments

Comments
 (0)