diff options
author | deadprogram <[email protected]> | 2024-12-08 10:37:30 +0100 |
---|---|---|
committer | Ron Evans <[email protected]> | 2024-12-18 15:23:00 +0100 |
commit | 5701bf81f30d06daa4bc093f716f496c16147e10 (patch) | |
tree | adeee6085ded92d0226cac3601fcc1d546ee495f /src/machine/board_arduino_mkr1000.go | |
parent | 6110f0bc1b5cb807fa2ac01b12b5aeffcf3308c6 (diff) | |
download | tinygo-5701bf81f30d06daa4bc093f716f496c16147e10.tar.gz tinygo-5701bf81f30d06daa4bc093f716f496c16147e10.zip |
feature: modify i2s interface/implementation to better match specification
Signed-off-by: deadprogram <[email protected]>
Diffstat (limited to 'src/machine/board_arduino_mkr1000.go')
-rw-r--r-- | src/machine/board_arduino_mkr1000.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/machine/board_arduino_mkr1000.go b/src/machine/board_arduino_mkr1000.go index 2c9ae603f..f5130120e 100644 --- a/src/machine/board_arduino_mkr1000.go +++ b/src/machine/board_arduino_mkr1000.go @@ -74,8 +74,9 @@ const ( // I2S pins const ( I2S_SCK_PIN Pin = PA10 - I2S_SD_PIN Pin = PA07 - I2S_WS_PIN = NoPin // TODO: figure out what this is on Arduino Nano 33. + I2S_SDO_PIN Pin = PA07 + I2S_SDI_PIN = NoPin + I2S_WS_PIN = NoPin // TODO: figure out what this is on Arduino MKR1000 ) // USB CDC identifiers |