xt_usb: Comment out clock check for PCINT
This commit is contained in:
parent
773a9195a6
commit
42199c90f8
1 changed files with 2 additions and 1 deletions
|
|
@ -94,8 +94,9 @@ ISR(XT_INT_VECT)
|
||||||
static uint8_t data = 0;
|
static uint8_t data = 0;
|
||||||
|
|
||||||
uint8_t dbit = data_in();
|
uint8_t dbit = data_in();
|
||||||
|
|
||||||
// This is needed if using PCINT which can be called on both falling and rising edge
|
// This is needed if using PCINT which can be called on both falling and rising edge
|
||||||
if (clock_in()) return;
|
//if (clock_in()) return;
|
||||||
|
|
||||||
switch (state) {
|
switch (state) {
|
||||||
case START:
|
case START:
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue