Skip to content
This repository was archived by the owner on Aug 5, 2022. It is now read-only.

Commit 40c3b89

Browse files
committed
Board: change default pin namespace to board
Signed-off-by: Zoltan Kis <[email protected]>
1 parent b7a8879 commit 40c3b89

File tree

5 files changed

+16
-14
lines changed

5 files changed

+16
-14
lines changed

board/README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@ The [Board](#board) API provides low level interfaces for I/O operations:
99
- [SPI - Serial Peripheral Interface](./spi.md)
1010
- [UART - Universal Asynchronous Receiver/Transmitter](./uart.md).
1111

12-
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.
1313

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](./):
1517
- [arduino101.md](./arduino101.md)
1618
- [frdm_k64f.md](./frdm_k64f.md).
1719

board/aio.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Configures an AIO pin using data provided by the `options` argument. It involves
2525
- Otherwise if `options` is a number, create a dictionary 'init' and let `init.pin` be `options`.
2626
- 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:
2727
* `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"`).
2929
* `precision` for the bit width of a sample (if the board supports setting the sampling rate).
3030
- If any property of `init` is specified and has an invalid value, throw `TypeError`.
3131
- 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
4040
| Property | Type | Optional | Default value | Represents |
4141
| --- | --- | --- | --- | --- |
4242
| `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"` |
4444
| `precision` | unsigned long | yes | `undefined` | bit length of digital sample |
4545

4646
| Method | Description |
@@ -65,12 +65,12 @@ Called when the application is no longer interested in the pin. Until the next [
6565
try {
6666
var aio = require("aio"); // initialize AIO on the board
6767

68-
var a1 = aio.open(1); // pin 1 in OS namespace
68+
var a1 = aio.open("A1"); // pin 1 in board namespace
6969
console.log(board.name + " AIO pin 1 value: " + a1.read());
7070
a1.close();
7171

72-
// Open pin A4 in board namespace, i.e. the value printed on the board
73-
var a4 = aio.open({pin: "A4", mapping: "board", precision: 12 });
72+
// Open pin A4 in system namespace
73+
var a4 = aio.open({pin: "ADC4", mapping: "system", precision: 12 });
7474

7575
setTimeout(function() {
7676
a4.close();

board/gpio.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ The following dictionary is used for initializing GPIO pins and ports.
2727
| Property | Type | Optional | Default value | Represents |
2828
| --- | --- | --- | --- | --- |
2929
| `pin ` | String or Number | no | `undefined` | pin name |
30-
| `mapping` | String | no | `"system"` | pin mapping |
30+
| `mapping` | String | no | `"board"` | pin mapping |
3131
| `mode` | String | no | `undefined` | I/O mode |
3232
| `activeLow` | boolean | yes | `false` | whether the pin is active on logical low |
3333
| `edge` | string | yes | `"any"` | Interrupt generation mode |
3434
| `state` | string | yes | `undefined` | "pulldown", "pullup" |
3535

3636
The `pin` property is either a number or string, with values defined by the OS or board documentation. The default value is `undefined`.
3737

38-
The `mapping` property represents the pin namespace, either `"system"` or `"board"`, by default `"system"`.
38+
The `mapping` property represents the pin namespace, either `"system"` or `"board"`, by default `"board"`.
3939

4040
The `mode` property MUST take the value `"in"` or `"out"`. The default value is `"out"`.
4141

board/pwm.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Configures a PWM pin using data provided by the `options` argument. It runs the
2727
- If `options` is a string or number, create a dictionary `init` and use the value of `options` to initialize the `init.pin` property.
2828
- Otherwise if `options` is a dictionary, let `init` be `options`. It may contain the following [`PWM`](#pwm) properties, but at least `name`
2929
* `pin` for pin name
30-
* `mapping` for pin mapping, either `"system"` or `"board"`, by default `"system"`
30+
* `mapping` for pin mapping, either `"system"` or `"board"`, by default `"board"`
3131
* `reversePolarity`, by default `false`.
3232
- If any of the `init` properties is specified, but has invalid value on the board, throw `InvalidAccessError`.
3333
- Let `mapping` be `init.mapping`.
@@ -43,7 +43,7 @@ Represents the properties and methods that expose PWM functionality.
4343
| Property | Type | Optional | Default value | Represents |
4444
| --- | --- | --- | --- | --- |
4545
| `pin` | String or Number | no | `undefined` | pin name |
46-
| `mapping` | String | no | `"system"` | pin mapping |
46+
| `mapping` | String | no | `"board"` | pin mapping |
4747
| `reversePolarity` | boolean | yes | `false` | PWM polarity |
4848
| `write()` | function | no | defined by implementation | set and enable PWM signal |
4949
| `stop()` | function | no | defined by implementation | stop the PWM signal |

board/webidl.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ interface AIOObject {
2424

2525
dictionary AIOOptions {
2626
PinName pin;
27-
PinMapping mapping = "system";
27+
PinMapping mapping = "board";
2828
unsigned long precision = 10;
2929
};
3030

@@ -56,7 +56,7 @@ GPIO implements EventEmitter;
5656

5757
dictionary GPIOOptions {
5858
PinName pin;
59-
PinMapping mapping = "system";
59+
PinMapping mapping = "board";
6060
GPIOMode mode = "out";
6161
boolean activeLow = false;
6262
GPIOEdge edge = "none";
@@ -74,7 +74,7 @@ interface PWMObject {
7474

7575
dictionary PWMOptions {
7676
PinName pin;
77-
PinMapping mapping = "system";
77+
PinMapping mapping = "board";
7878
boolean reversePolarity = false;
7979
double period;
8080
double pulseWidth;

0 commit comments

Comments
 (0)