diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-13 09:14:05 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-13 09:14:05 -0500 |
commit | 23d746d646adb6b11fa7758a2490ff955c8a9b91 (patch) | |
tree | 6c7250219e660fa7e80e1bca615710ebab4830ac /msp430/examples/spi.txt | |
parent | af51fb5bdfd9c338b7cf8b75b792e04a2667af5e (diff) |
msp430: add spi, update uart examples
Diffstat (limited to 'msp430/examples/spi.txt')
-rw-r--r-- | msp430/examples/spi.txt | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/msp430/examples/spi.txt b/msp430/examples/spi.txt new file mode 100644 index 0000000..64a7189 --- /dev/null +++ b/msp430/examples/spi.txt @@ -0,0 +1,15 @@ +unsigned char RXData = 0; +unsigned char TXData; + +: spi-init + bit2 bit5 or bit6 or p3sel0 byte set + ucb1ctlw0 + ucswrst over reg set + ucmst ucsync or ucckpl or ucmsb or over reg set + ucssel__aclk over reg set + 2 ucb1brw reg! + ucswrst swap reg clear ; + +: spi-emit + begin ucb1ifg reg@ uctxifg and until + ucb1txbuf reg! ; |