You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 5, 2022. It is now read-only.
Hardware pin names are usually marked on the circuit boards. However, operating systems, such as [Zephyr](https://www.zephyrproject.org/doc/) define a pin name mapping that is consistent across the boards supported by the OS. This API supports both board and OS defined namespaces. In this API, [`Pin`](#pin) names are opaque to the application. Applications can open a given pin with a pin name that is either a string or a number, in either board or OS namespace. Implementations encapsulate the pin mapping. Also, the API exposes board name, OS name (including OS version) and API version for all board APIs.
12
+
Hardware pin names are usually marked on the circuit boards, that defines a board namespace for pins. However, operating systems, such as Linux, or [Zephyr](https://www.zephyrproject.org/doc/) define a pin name mapping that is consistent across the boards supported by the OS. This API supports both board and OS (system) defined namespaces. Pin names are opaque to the application, either strings or numbers that gain meaning in either the board or OS namespace. Also, the API exposes board name, OS name (including OS version) and API version for all board APIs.
13
13
14
-
The supported board namespaces are listed in [this directory](./):
14
+
Since it is generally easier for developers to just look at a given board and use the names printed there in the API, by default the board namespace is used, but developers can specify to use the system namespace as well. If a given pin value is not found in the default (or provided) namespace, an error is thrown: there is no fallback search in the other namespace.
15
+
16
+
Examples for the supported board namespaces are listed in [this directory](./):
Copy file name to clipboardexpand all lines: board/aio.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ Configures an AIO pin using data provided by the `options` argument. It involves
25
25
- Otherwise if `options` is a number, create a dictionary 'init' and let `init.pin` be `options`.
26
26
- Otherwise if `options` is a dictionary, let `init` be `options`. It may contain the following [`AIO`](#aio) properties, where at least `pin` MUST be specified:
27
27
*`pin` for board pin name with the valid values defined by the board, or for the numeric index of the analog pin;
28
-
*`mapping` to specify if OS or board namespace is to be used with the pin (by default `"system"`).
28
+
*`mapping` to specify if OS or board namespace is to be used with the pin (by default `"board"`).
29
29
*`precision` for the bit width of a sample (if the board supports setting the sampling rate).
30
30
- If any property of `init` is specified and has an invalid value, throw `TypeError`.
31
31
- Request the underlying platform to initialize AIO on the pin identified by `init.pin` in the namespace specified by `init.mapping` if that is defined. If not found, throw `InvalidAccessError`. If `init.mapping is not defined, then search `init.pin` first in the OS namespace, then in board namespace. In case of failure, throw `InvalidAccessError`.
@@ -40,7 +40,7 @@ Configures an AIO pin using data provided by the `options` argument. It involves
40
40
| Property | Type | Optional | Default value | Represents |
41
41
| --- | --- | --- | --- | --- |
42
42
|`pin`| String or Number | no |`undefined`| pin name |
43
-
|`mapping`| enum | no |`"system"`| pin mapping, `"system"` or `"board"`|
43
+
|`mapping`| enum | no |`"board"`| pin mapping, `"system"` or `"board"`|
44
44
|`precision`| unsigned long | yes |`undefined`| bit length of digital sample |
45
45
46
46
| Method | Description |
@@ -65,12 +65,12 @@ Called when the application is no longer interested in the pin. Until the next [
65
65
try {
66
66
var aio =require("aio"); // initialize AIO on the board
67
67
68
-
var a1 =aio.open(1); // pin 1 in OS namespace
68
+
var a1 =aio.open("A1"); // pin 1 in board namespace
0 commit comments