ece4180 lab1

Dependencies:   MCP23S17 mbed

Fork of MCP23S17_Basic_IO_Demo by jim hamblen

Committer:
tom00209
Date:
Wed Sep 07 20:30:04 2016 +0000
Revision:
5:2f407dfd888a
Parent:
4:a361b0d3aaaf
test commit yichi

Who changed what in which revision?

UserRevisionLine numberNew contents of line
4180_1 2:934a0500abde 1 // A simple IO demo using the MCP23S17 library
4180_1 2:934a0500abde 2 //
4180_1 2:934a0500abde 3 // MCP23S17 Library Copyright (c) 2010 Romilly Cocking
4180_1 2:934a0500abde 4 // Released under the MIT License: http://mbed.org/license/mit
4180_1 2:934a0500abde 5 //
4180_1 2:934a0500abde 6 // See http://mbed.org/users/romilly/notebook/mcp23s17-addressable-16-bit-io-expander-with-spi/
4180_1 2:934a0500abde 7 //
4180_1 2:934a0500abde 8 //
4180_1 2:934a0500abde 9 // MCP23S17 datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/21952b.pdf
4180_1 2:934a0500abde 10 // uses MCP23S17 library version 0.4
boalinlai 4:a361b0d3aaaf 11 //test
tom00209 5:2f407dfd888a 12 // test yichi
4180_1 0:12f4911d7ba0 13 #include "mbed.h"
4180_1 0:12f4911d7ba0 14 #include "MCP23S17.h"
4180_1 2:934a0500abde 15 // Create SPI bus
4180_1 0:12f4911d7ba0 16 SPI spi(p5, p6, p7);
4180_1 2:934a0500abde 17 //
4180_1 2:934a0500abde 18 // Wiring Connections:
4180_1 0:12f4911d7ba0 19 // mbed p5,p6,p7 are tied to MCP23S17 SI, SO, SCK pins
4180_1 2:934a0500abde 20 // mbed p20 to MCP23S17 CS
4180_1 2:934a0500abde 21 // MCP23S17 reset pin pulled high
4180_1 2:934a0500abde 22 // MCP23S17 GPA0 connected to GPB0 for loopback test
4180_1 0:12f4911d7ba0 23 // A0, A1, A2 of the MCP23S17 are tied to ground on the breadboard, so the 8-bit address for writes is 0x40
4180_1 0:12f4911d7ba0 24 // This is referred to as the opcode in the device datasheet
4180_1 2:934a0500abde 25 char Opcode = 0x40;
4180_1 0:12f4911d7ba0 26
4180_1 0:12f4911d7ba0 27 // Next create a MCP23S17
4180_1 0:12f4911d7ba0 28 // mbed p20 is connected to ~chipSelect on the MCP23S17
4180_1 2:934a0500abde 29 MCP23S17 chip = MCP23S17(spi, p20, Opcode);
boalinlai 3:2aa5a8376678 30 MCP23S17 chip2 = MCP23S17(spi, p19, Opcode);
4180_1 0:12f4911d7ba0 31
4180_1 2:934a0500abde 32 // Optional software reset - mbed p14 to MCP23S17 reset pin
4180_1 2:934a0500abde 33 // DigitalOut reset(p14);
4180_1 1:70e1ebe47253 34
4180_1 0:12f4911d7ba0 35 DigitalOut led1(LED1); // mbed LED1 is used for test status display
4180_1 0:12f4911d7ba0 36
4180_1 0:12f4911d7ba0 37 int main() {
4180_1 1:70e1ebe47253 38 // The MCP23S17 reset pin can just be pulled high, since it has a power on reset circuit.
4180_1 1:70e1ebe47253 39 // The reset pin can be used for a software forced reset by pulling it low with an mbed GPIO pin.
4180_1 1:70e1ebe47253 40 // But just leave it pulled high for this simple demo code.
4180_1 0:12f4911d7ba0 41 // After a power on reset, both IO ports default to input mode
4180_1 0:12f4911d7ba0 42 //
4180_1 1:70e1ebe47253 43 // Here is the optional code for a software reset
4180_1 1:70e1ebe47253 44 // reset = 0;
4180_1 1:70e1ebe47253 45 // wait_us(1);
4180_1 1:70e1ebe47253 46 // reset = 1;
4180_1 1:70e1ebe47253 47 //
4180_1 0:12f4911d7ba0 48 // Set all 8 Port A bits to output direction
boalinlai 3:2aa5a8376678 49 chip.direction(PORT_A, 0xFF);
4180_1 0:12f4911d7ba0 50 // Set all 8 Port B bits to input direction
boalinlai 3:2aa5a8376678 51 chip.direction(PORT_B, 0x00);
boalinlai 3:2aa5a8376678 52
boalinlai 3:2aa5a8376678 53 // second chip
boalinlai 3:2aa5a8376678 54 chip2.direction(PORT_A, 0x00);
boalinlai 3:2aa5a8376678 55 // Set all 8 Port B bits to input direction
boalinlai 3:2aa5a8376678 56 chip2.direction(PORT_B, 0xFF);
boalinlai 3:2aa5a8376678 57
boalinlai 3:2aa5a8376678 58
4180_1 0:12f4911d7ba0 59 led1=0;
4180_1 0:12f4911d7ba0 60 // Start Loopback test sending out and reading back values
4180_1 0:12f4911d7ba0 61 // loopback test uses A0 and B0 pins - so use a wire to jumper those two pins on MCP23S17 together
4180_1 0:12f4911d7ba0 62 while (1) {
4180_1 0:12f4911d7ba0 63 // write 0xAA to MCP23S17 Port A
boalinlai 3:2aa5a8376678 64 //if( < 0.1)
boalinlai 3:2aa5a8376678 65 //{
boalinlai 3:2aa5a8376678 66 chip.write(PORT_B, 0x01 & (chip2.read(PORT_B) &0x01));
boalinlai 4:a361b0d3aaaf 67
boalinlai 3:2aa5a8376678 68 //wait(0.05);
boalinlai 3:2aa5a8376678 69 //}
boalinlai 3:2aa5a8376678 70 /*else
boalinlai 3:2aa5a8376678 71 {
4180_1 0:12f4911d7ba0 72 // read back value from MCP23S17 Port B and display B0 on mbed led1
boalinlai 3:2aa5a8376678 73 //led1 = chip.read(PORT_B)& 0x01;
4180_1 0:12f4911d7ba0 74 // write 0x55 to MCP23S17 Port A
boalinlai 3:2aa5a8376678 75 chip.write(PORT_B, 0x1);
boalinlai 3:2aa5a8376678 76 }*/
boalinlai 3:2aa5a8376678 77
boalinlai 3:2aa5a8376678 78 led1 = chip.read(PORT_A)& 0x01;
4180_1 0:12f4911d7ba0 79 // read back value from MCP23S17 Port B and display B0 on mbed led1
boalinlai 3:2aa5a8376678 80 //led1 = chip.read(PORT_B)& 0x01;
boalinlai 3:2aa5a8376678 81 wait(0.05);
4180_1 2:934a0500abde 82 // led1 should blink slowly when it is all working
4180_1 0:12f4911d7ba0 83 }
4180_1 0:12f4911d7ba0 84 }