8000 Jira-556: Add comments to I2S examples · arduino/ArduinoCore-arc32@9ae91d3 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9ae91d3

Browse files
unknowncalvinatintel
unknown
authored andcommitted
Jira-556: Add comments to I2S examples
1 parent b317284 commit 9ae91d3

File tree

2 files changed

+18
-9
lines changed

2 files changed

+18
-9
lines changed

libraries/CurieI2S/examples/I2SDMA_RXCallBack/I2SDMA_RXCallBack.ino

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,15 @@
1010
* To test this sketch you will need a second Arduino/Genuino 101 board with the I2SDMA_TxCallback sketch uploaded
1111
*
1212
* Connection:
13-
* GND -> GND
14-
* I2S_RSCK(pin 8) -> I2S_TSCK(pin 2)
15-
* I2S_RWS(pin 3) -> I2S_TWS(pin 4)
16-
* I2S_RXD(pin 5) -> I2S_TXD(pin 7)
17-
*
13+
* I2S_RSCK(pin 8) -> I2S_TSCK(pin 2)
14+
* I2S_RWS (pin 3) -> I2S_TWS (pin 4)
15+
* I2S_RXD (pin 5) -> I2S_TXD (pin 7)
16+
* Ground (GND) -> Ground (GND)
17+
* Notes:
18+
* Transmission is sensitive to noise. To reduce noise:
19+
* - Power both boards with an external power supply. Usb power is not always clean.
20+
* - Insure that both boards are sharing the same ground.
21+
* - Use short wires to connect between the board or use shielded wire.
1822
**/
1923
#include <CurieI2SDMA.h>
2024

libraries/CurieI2S/examples/I2S_RxCallback/I2S_RxCallback.ino

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,15 @@
55
* To test this sketch you will need a second Arduino/Genuino 101 board with the I2S_TxCallback sketch uploaded
66
*
77
* Connection:
8-
* I2S_RSCK(pin 8) -> I2S_TSCK(pin 2)
9-
* I2S_RWS(pin 3) -> I2S_TWS(pin 4)
10-
* I2S_RXD(pin 5) -> I2S_TXD(pin 7)
11-
*
8+
* I2S_RSCK(pin 8) -> I2S_TSCK(pin 2)
9+
* I2S_RWS (pin 3) -> I2S_TWS (pin 4)
10+
* I2S_RXD (pin 5) -> I2S_TXD (pin 7)
11+
* Ground (GND) -> Ground (GND)
12+
* Notes:
13+
* Transmission is sensitive to noise. To reduce noise:
14+
* - Power both boards with an external power supply. Usb power is not always clean.
15+
* - Insure that both boards are sharing the same ground.
16+
* - Use short wires to connect between the board or use shielded wire.
1217
**/
1318
#include <CurieI2S.h>
1419

0 commit comments

Comments
 (0)
0