mruby-linux-spi 0.9.2 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +10 -1
- data/lib/mruby/spi/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1283070b428333dfaa3ae502cddcc4db90bb667cbf289e576def6e1daf4dc09e
|
4
|
+
data.tar.gz: 9589c58cbd81b8a71a6ce7a5a9bb71007ac110203eb849fa69dd2c38f2b15e15
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a2a41eeba28993ed7a62e971e2a65db32999806e96840110fd57cbc92f22c042efbea2473561e3471a7ab313008a84e36a0e050a20ba4faab39aee3aafad3faf
|
7
|
+
data.tar.gz: 461aaf3b27e5c6e68cd405effafb783be163fc5a559819cffd932e9ed8ef6ddea8c906104dc32b750f3a9ed344cc1dda7fb6070c34b326e46e1a7297e71a3837
|
data/README.md
CHANGED
@@ -7,7 +7,9 @@
|
|
7
7
|
This is an implementation of the SPI class library for Linux.
|
8
8
|
Follows [mruby, mruby/c common I/O API guidelines.](https://github.com/mruby/microcontroller-peripheral-interface-guide)
|
9
9
|
|
10
|
-
This library uses the Linux spidev device driver.
|
10
|
+
This library uses the Linux spidev device driver.
|
11
|
+
Works well on 32-bit and 64-bit OS.
|
12
|
+
|
11
13
|
|
12
14
|
## Installation
|
13
15
|
|
@@ -19,6 +21,13 @@ This library uses the Linux spidev device driver.
|
|
19
21
|
* This class defines only master devices and transfers in 8-bit units.
|
20
22
|
* The Chip Select (CS/SS) will be managed spidev device driver automatically.
|
21
23
|
|
24
|
+
|
25
|
+
## Operation check target
|
26
|
+
|
27
|
+
* [Raspberry Pi 4](https://www.raspberrypi.com/products/raspberry-pi-4-model-b/)
|
28
|
+
* [Armadillo-IoT G3](https://armadillo.atmark-techno.com/armadillo-iot-g3)
|
29
|
+
|
30
|
+
|
22
31
|
## Usage
|
23
32
|
|
24
33
|
about RaspberryPi...
|
data/lib/mruby/spi/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mruby-linux-spi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- HirohitoHigashi
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-12-02 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email:
|
@@ -26,8 +26,8 @@ licenses:
|
|
26
26
|
- BSD 3-CLAUSE
|
27
27
|
metadata:
|
28
28
|
homepage_uri: https://github.com/HirohitoHigashi/mruby-mio/
|
29
|
-
source_code_uri: https://github.com/HirohitoHigashi/mruby-mio/tree/
|
30
|
-
documentation_uri: https://www.rubydoc.info/gems/mruby-linux-spi
|
29
|
+
source_code_uri: https://github.com/HirohitoHigashi/mruby-mio/tree/v1.0.0/mruby-linux-spi
|
30
|
+
documentation_uri: https://www.rubydoc.info/gems/mruby-linux-spi/1.0.0/
|
31
31
|
post_install_message:
|
32
32
|
rdoc_options: []
|
33
33
|
require_paths:
|
@@ -36,7 +36,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
36
36
|
requirements:
|
37
37
|
- - ">="
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: 2.
|
39
|
+
version: 2.5.0
|
40
40
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
41
41
|
requirements:
|
42
42
|
- - ">="
|