Skip to content

Commit

Permalink
Correct letter transposition
Browse files Browse the repository at this point in the history
  • Loading branch information
adamvoss committed Sep 23, 2017
1 parent 761ec28 commit 022441d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
File renamed without changes.
File renamed without changes.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
SD HSCMI for the Arduino Due
SD HSMCI for the Arduino Due
==============
Firmware for Arduino Due SD HSCMI Card.
Firmware for Arduino Due SD HSMCI Card.
Pin wiring set for the PowerDué.
Reference for PowerDué lab for Low Power System on Chip Spring 2016 at CMU-SV.

Install
==============
1. Download the files
2. Move the folder `Arduino_Due_SD_HSCMI` to your Arduino Libraries
3. Move the folder `SD_HSMCI` to your Arduino Libraries (Same level as `Arduino_Due_SD_HSCMI`)
2. Move the folder `Arduino_Due_SD_HSMCI` to your Arduino Libraries
3. Move the folder `SD_HSMCI` to your Arduino Libraries (Same level as `Arduino_Due_SD_HSMCI`)

Storage manipulation
==============
* The `SD` object will be created on `#include <Arduino_Due_SD_HSCMI.h>`
* The `SD` object will be created on `#include <Arduino_Due_SD_HSMCI.h>`
* Use `SD.MakeDirectory` to create a directory

Creating a file
Expand All @@ -25,7 +25,7 @@ Creating a file

Arduino Wiring
==============
### Arduino_Due_SD_HSCMI.h
### Arduino_Due_SD_HSMCI.h
Change following values to match the wiring of your board.
```
static const uint8_t PIN_HSMCI_MCCDA_GPIO = 101;
Expand Down
2 changes: 1 addition & 1 deletion examples/directory/directory.ino
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include <Arduino_Due_SD_HSCMI.h> // This creates the object SD
#include <Arduino_Due_SD_HSMCI.h> // This creates the object SD

void setup() {
SD.Init();
Expand Down

0 comments on commit 022441d

Please sign in to comment.