Skip to content

Instantly share code, notes, and snippets.

@bqqbarbhg
Last active December 21, 2015 10:58
Show Gist options
  • Save bqqbarbhg/6295192 to your computer and use it in GitHub Desktop.
Save bqqbarbhg/6295192 to your computer and use it in GitHub Desktop.
#include <msp430.h>
#include <stdio.h>
int main(void)
{
printf("Hello World\n");
return 0;
}
int putchar(int c)
{
// Write a driver here that writes c somewhere
return 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment