Skip to content

Instantly share code, notes, and snippets.

Created May 14, 2014 14:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/88fde91f7f8c00e5189f to your computer and use it in GitHub Desktop.
Save anonymous/88fde91f7f8c00e5189f to your computer and use it in GitHub Desktop.
// MSP430
#pragma vector=USCIAB0TX_VECTOR
__interrupt void USCI0TX_ISR() {
if (IFG2 & UCA0TXIFG) {
UCA0TXBUF = 7;
} }
// RPI
RXD:
10000011
11000001
11100000
11110000
01111000
00111100
00011110
00001111
00000111
10000011
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment