xt_usb: Comment out clock check for PCINT
parent
773a9195a6
commit
42199c90f8
|
|
@ -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…
Reference in New Issue