diff --git a/configs/samv71-xult/README.txt b/configs/samv71-xult/README.txt index 3db6d01f1d6..56d2620ff0c 100644 --- a/configs/samv71-xult/README.txt +++ b/configs/samv71-xult/README.txt @@ -1943,6 +1943,11 @@ Configuration sub-directories STATUS: 2017-07-02: Configurations added. Not yet tested. + 2017-07-03: Initial testing, appears to be working, but endpoints + fail to associate; sniffer shows that nothing sent fro the star + hub. I am thinking that there is something wrong with the + GPIO interrupt configuration so that no MRF24J40 interrupt are + being received. mxtxplnd: diff --git a/configs/samv71-xult/src/samv71-xult.h b/configs/samv71-xult/src/samv71-xult.h index 5bb24665267..789bfb925fc 100644 --- a/configs/samv71-xult/src/samv71-xult.h +++ b/configs/samv71-xult/src/samv71-xult.h @@ -576,8 +576,8 @@ * D2 PA5 microBUS1 GPIO interrupt input PA5 * D3 PA6 microBUS2 GPIO interrupt input PA6 * D4 PD27 *** Not used *** - * D5 PD11 microBUS2 PWM PD11 PWMC0_H0 - * D6 PC19 microBUS1 PWN PC19 PWMC0_H2 + * D5 PD11 microBUS2 PWMB PD11 PWMC0_H0 + * D6 PC19 microBUS1 PWMA PC19 PWMC0_H2 * D7 PA2 *** Not used *** * D8 PA17 *** Not used *** * D9 PC9 microBUS2 CS GPIO output PC9 @@ -590,9 +590,9 @@ /* Reset (RST#) Pulled-up on the click board */ #define CLICK_MB1_RESET (GPIO_OUTPUT | GPIO_CFG_DEFAULT | GPIO_OUTPUT_CLEAR | \ - GPIO_PORT_PIOD | GPIO_PIN30) -#define CLICK_MB2_RESET (GPIO_OUTPUT | GPIO_CFG_DEFAULT | GPIO_OUTPUT_CLEAR | \ GPIO_PORT_PIOA | GPIO_PIN19) +#define CLICK_MB2_RESET (GPIO_OUTPUT | GPIO_CFG_DEFAULT | GPIO_OUTPUT_CLEAR | \ + GPIO_PORT_PIOD | GPIO_PIN30) /* Interrupts */ #define CLICK_MB1_INTR (GPIO_INPUT | GPIO_CFG_PULLUP | GPIO_CFG_DEGLITCH | \