diff options
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! ; |