Send IR data from SD card. I changed Chip Select signal timing.

Dependencies:   mbed

Committer:
halfpitch
Date:
Thu Sep 01 09:45:40 2011 +0000
Revision:
1:372b09a39fa4
Parent:
0:da2f4475a464
Rev.B

Who changed what in which revision?

UserRevisionLine numberNew contents of line
halfpitch 0:da2f4475a464 1 //Nest Egg Inc.
halfpitch 0:da2f4475a464 2 //http://nestegg.jp/
halfpitch 0:da2f4475a464 3 //White Wizard Board SPI Chip Select Code
halfpitch 0:da2f4475a464 4 //Auther : Yoshinari kou
halfpitch 0:da2f4475a464 5 //2010/10/03
halfpitch 0:da2f4475a464 6
halfpitch 0:da2f4475a464 7 #include "mbed.h"
halfpitch 0:da2f4475a464 8
halfpitch 0:da2f4475a464 9 class wwChipSelect
halfpitch 0:da2f4475a464 10 {
halfpitch 0:da2f4475a464 11 private:
halfpitch 0:da2f4475a464 12 DigitalOut ChipSelect;
halfpitch 0:da2f4475a464 13 public:
halfpitch 0:da2f4475a464 14 wwChipSelect(PinName); //constructor
halfpitch 0:da2f4475a464 15 void wwCSwrite(int);
halfpitch 0:da2f4475a464 16 };