You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
void cs_trigger_enable(void)
{
cs_trigger = 0;
ISER0 = ISER0_ISE_EINT3;
IO2IntClr = PIN_GIO6; // Clear pending
IO2IntEnF |= PIN_GIO6; // Enable port 2.2 falling (CS active low)
}
The cs_trigger_enable function enable the external EINT3 of LPC17XX so the CC2400 carrier sense signal can interrupt the PCX17XX.
My ubertooth-one stick use a LPC1756 chip (175X family). On this chip there is only ONE external interrupt pin : EINT0.
So this function would not work. It could work with a LPC176X chip witch have 4 external interrupt EINT0:1:2:3.
Am I missing something ? Are there some ubertooth-one sticks using LPC176X chip ?
The text was updated successfully, but these errors were encountered:
This code path, if not dead, is basically dormant and untested. I haven't checked the datasheet for the LPC175x but I'll take your word for it. Feel free to submit a PR to fix this!
Great Scott Gadgets has retired Ubertooth One and we have no plans to lead any hardware or software enhancements at this time. We will leave this issue open and will continue to monitor pull requests should anyone take on implementing this feature request themselves.
in source file ubertooth_cs.c
void cs_trigger_enable(void)
{
cs_trigger = 0;
ISER0 = ISER0_ISE_EINT3;
IO2IntClr = PIN_GIO6; // Clear pending
IO2IntEnF |= PIN_GIO6; // Enable port 2.2 falling (CS active low)
}
The cs_trigger_enable function enable the external EINT3 of LPC17XX so the CC2400 carrier sense signal can interrupt the PCX17XX.
My ubertooth-one stick use a LPC1756 chip (175X family). On this chip there is only ONE external interrupt pin : EINT0.
So this function would not work. It could work with a LPC176X chip witch have 4 external interrupt EINT0:1:2:3.
Am I missing something ? Are there some ubertooth-one sticks using LPC176X chip ?
The text was updated successfully, but these errors were encountered: