The thing is the SD card is built into the data logging board so there are no pins to connect. The demo code for the artemis processor has
#include <SPI.h>
#include <SD.h>
#include <Wire.h>
#include <SparkFun_u-blox_GNSS_Arduino_Library.h>
const int chipSelect = 23; // The CS pin is DATA3 or 23 for the MicroMod Artemis Processor. Adjust for your processor if necessary.
What I can’t find is what the CS pin is. I’ve tried pin 30 Flash SCS and 29 Data3 etc. and cannot get it to work. I keep getting things like
entry 0x400805f0
E (29) gpio: gpio_set_level(226): GPIO output gpio_num error
E (29) gpio: gpio_set_level(226): GPIO output gpio_num error
E (30) gpio: gpio_set_level(226): GPIO output gpio_num error
E (533) gpio: gpio_set_level(226): GPIO output gpio_num error
E (533) gpio: gpio_set_level(226): GPIO output gpio_num error
E (1033) gpio: gpio_set_level(226): GPIO output gpio_num error
Card failed, or not present
I’m going to try the Artemis processor and see if it is actually working.
Bipman