diff options
author | Ayke van Laethem <[email protected]> | 2021-02-06 12:37:15 +0100 |
---|---|---|
committer | Ron Evans <[email protected]> | 2021-03-29 02:02:04 +0200 |
commit | 90b42799a2a91f6614ea86e8650d5fa303bc10b2 (patch) | |
tree | c98d7a684da7c5845571ce06c92d12ed320e243b /src/machine/board_hifive1b_baremetal.go | |
parent | 71bbe93ab2e482239fbab790a83c528bc077d74e (diff) | |
download | tinygo-90b42799a2a91f6614ea86e8650d5fa303bc10b2.tar.gz tinygo-90b42799a2a91f6614ea86e8650d5fa303bc10b2.zip |
machine: make machine.I2C0 and similar objects pointers
This makes it possible to assign I2C objects (machine.I2C0,
machine.I2C1, etc.) without needing to take a pointer.
This is important especially in the future when I2C may be driven using
DMA and the machine.I2C type needs to store some state.
Diffstat (limited to 'src/machine/board_hifive1b_baremetal.go')
-rw-r--r-- | src/machine/board_hifive1b_baremetal.go | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/machine/board_hifive1b_baremetal.go b/src/machine/board_hifive1b_baremetal.go index 7c88556f8..729e985de 100644 --- a/src/machine/board_hifive1b_baremetal.go +++ b/src/machine/board_hifive1b_baremetal.go @@ -10,10 +10,3 @@ var ( Bus: sifive.QSPI1, } ) - -// I2C on the HiFive1 rev B. -var ( - I2C0 = I2C{ - Bus: sifive.I2C0, - } -) |