I'm trying to use the Maple board for SPI on the CAN shield from sparkfun, and also another device called an IVT board (current/voltage/temperature sensor board).
Anywho, I've rifled through the spi and hardwareSpi libraries and still am not sure if I need to setup the NSS function manually. If so, is it already implemented in the library(s) to do so:
example:
hardwareSpi spi(1);
digitalWrite(spi.NSS,LOW);
spi.write(0);
digitalWrite(spi.NSS, HIGH);
I am hoping this has a simple answer.