Skip to content

Commit 2c0786c

Browse files
committed
Refactoring; moving SRAM driver to Arduino-Storage library
1 parent b5cd176 commit 2c0786c

File tree

6 files changed

+3
-431
lines changed

6 files changed

+3
-431
lines changed

README.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,19 @@ bus managers and device driver support. the library contains bus
55
manager implementations for hardware resources (AVR SPI and USI) and
66
software using Ardino-GPIO.
77

8-
Version: 1.7
8+
Version: 1.8
99

1010
## Classes
1111

1212
* [Abstract SPI Bus Manager and Device Driver Interface, SPI](./src/SPI.h)
1313
* [Hardware SPI Bus Manager, Hardware::SPI](./src/Hardware/SPI.h)
1414
* [Software SPI Bus Manager, Software::SPI](./src/Software/SPI.h)
1515

16-
## Drivers
17-
18-
* [23LC1024, 1 Mbit Serial SRAM, SRAM](./src/Driver/SRAM.h)
19-
* [SRAM Stream, SRAM::Stream](./src/Driver/SRAM.h)
20-
2116
## Example Sketches
2217

2318
* [Benchmark](./examples/Benchmark)
2419
* [ShiftIn](./examples/ShiftIn)
2520
* [ShiftOut](./examples/ShiftOut)
26-
* [SRAM](./examples/SRAM)
27-
* [Stream](./examples/Stream)
2821

2922
## Benchmarks
3023

examples/SRAM/SRAM.ino

Lines changed: 0 additions & 68 deletions
This file was deleted.

examples/Stream/Stream.ino

Lines changed: 0 additions & 123 deletions
This file was deleted.

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=Arduino-SPI
2-
version=1.7
2+
version=1.8
33
author=Mikael Patel
44
maintainer=Mikael Patel <mikael.patel@gmail.com>
55
sentence=Serial Peripheral Interface (SPI) library for Arduino.

mainpage.dox

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ for bus managers and device driver support (SPI::Device).
66
The library contains bus manager implementations for hardware
77
resources (Hardware::SPI) and using Ardino-GPIO (Software::SPI).
88

9-
Version: 1.7
9+
Version: 1.8
1010
*/
1111

1212
/** @page License

0 commit comments

Comments
 (0)