mruby-linux-spi 0.9.0 → 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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +10 -1
  3. data/lib/mruby/spi/version.rb +1 -1
  4. metadata +11 -7
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4a72961a5cd63b9763984c28407d942c81de8311e0780eb24e9bc371aedeaf56
4
- data.tar.gz: 07034c750af72824ff3436e7ef44435c69ccb2b5b78cda3d25fde26238a14cab
3
+ metadata.gz: 1283070b428333dfaa3ae502cddcc4db90bb667cbf289e576def6e1daf4dc09e
4
+ data.tar.gz: 9589c58cbd81b8a71a6ce7a5a9bb71007ac110203eb849fa69dd2c38f2b15e15
5
5
  SHA512:
6
- metadata.gz: 79d7b82d3217cbec07af1551c33c3af4404423913cdd986ee14367bf685c77432d62ce24cdb09012488bc28fe31b5a40624c0fa177beb99d8a2585b7532f30e8
7
- data.tar.gz: 33b8175d33eb5a0d29db8b30689f1108bf7f8b4f2c567ed9c155b285564c267e7acf3fa9c99daed5c5a2b6f4a2d6a54e02f9f65abdbbbd7452993ed731ad0472
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...
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SPI
4
- VERSION = "0.9.0"
4
+ VERSION = "1.0.0"
5
5
  end
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.9.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-10-13 00:00:00.000000000 Z
11
+ date: 2023-12-02 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email:
@@ -21,10 +21,13 @@ files:
21
21
  - README.md
22
22
  - lib/mruby/spi.rb
23
23
  - lib/mruby/spi/version.rb
24
- homepage: https://github.com/HirohitoHigashi/mruby-mio/tree/main/mruby-linux-spi
25
- licenses: []
24
+ homepage: https://github.com/HirohitoHigashi/mruby-mio/
25
+ licenses:
26
+ - BSD 3-CLAUSE
26
27
  metadata:
27
- homepage_uri: https://github.com/HirohitoHigashi/mruby-mio/tree/main/mruby-linux-spi
28
+ homepage_uri: https://github.com/HirohitoHigashi/mruby-mio/
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/
28
31
  post_install_message:
29
32
  rdoc_options: []
30
33
  require_paths:
@@ -33,7 +36,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
33
36
  requirements:
34
37
  - - ">="
35
38
  - !ruby/object:Gem::Version
36
- version: 2.6.0
39
+ version: 2.5.0
37
40
  required_rubygems_version: !ruby/object:Gem::Requirement
38
41
  requirements:
39
42
  - - ">="
@@ -43,5 +46,6 @@ requirements: []
43
46
  rubygems_version: 3.4.13
44
47
  signing_key:
45
48
  specification_version: 4
46
- summary: SPI bus driver class library using Linux spidev.
49
+ summary: SPI bus driver class library using Linux spidev. Compliant with mruby, mruby/c
50
+ common I/O API guidelines.
47
51
  test_files: []