samv71-xult/mrf24j40-starhub: Reset pins backward; update README.

This commit is contained in:
Gregory Nutt 2017-07-03 12:37:37 -06:00
parent 445af2e5a0
commit 72c4f12286
2 changed files with 9 additions and 4 deletions

View File

@ -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:

View File

@ -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 | \