X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=firmware%2Finclude%2Fplatform.h;h=067d3f6a5f3512b1cfa935a73b60edf65d30f002;hb=8bba67a8aeb9e40bb81ba2749710b9fef660d689;hp=b5e1fa8c9ffc22b67bc4cbe7b7ae5a40477ddf14;hpb=b614c80d8ec3090b8d1b9cb9ec50e1328cf06d8b;p=goodfet diff --git a/firmware/include/platform.h b/firmware/include/platform.h index b5e1fa8..067d3f6 100644 --- a/firmware/include/platform.h +++ b/firmware/include/platform.h @@ -1,18 +1,12 @@ -//! \file platform.h +/*! \file platform.h + \author Travis Goodspeed + \brief Port and baud rate definitions. + + The functions specified here are defined in the platform + definition file, such as msp430x1612.c or msp430x2618.c. +*/ -#include -#include -#include - - -//Use P3 instead of P5 for target I/O on chips without P5. -#ifdef __msp430x22x4 -#warning "2274, using P3 instead. Will break 2618 and 1612 support." -#define P5OUT P3OUT -#define P5DIR P3DIR -#define P5REN P3REN -#define P5IN P3IN -#endif +#include "gfports.h" unsigned char serial_rx(); void serial_tx(unsigned char); @@ -27,9 +21,11 @@ void setbaud1(unsigned char); void msp430_init_uart(); //! Initialize the DCO Clock void msp430_init_dco(); +//! Called by monitor() when the DCO is correct and communication established. +void msp430_init_dco_done(); //LED on P1.0 #define PLEDOUT P1OUT #define PLEDDIR P1DIR -#define PLEDPIN 0x1 +#define PLEDPIN BIT0