White Wizard SPI Chip Select test program. I changed chip select signal timing.

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers wwChipSelect.h Source File

wwChipSelect.h

00001 //Nest Egg Inc.
00002 //http://nestegg.jp/
00003 //White Wizard Board SPI Chip Select Code
00004 //Auther : Yoshinari kou
00005 //2010/10/03
00006 
00007 #include "mbed.h"
00008 
00009 class wwChipSelect
00010 {
00011     private:
00012         DigitalOut  ChipSelect;
00013     public:
00014         wwChipSelect(PinName);  //constructor
00015         void wwCSwrite(int);
00016 };