Add the debugger settings to the MSP430X IAR demo directory.

This commit is contained in:
Richard Barry 2011-01-01 09:32:55 +00:00
parent 0249ad47f4
commit eb94f856a8
6 changed files with 232 additions and 46 deletions

View file

@ -70,9 +70,6 @@
/* Demo application includes. */
#include "serial.h"
/* HAL includes. */
#include "hal_usb.h"
/* Constants required to setup the hardware. */
#define serTX_AND_RX ( ( unsigned portCHAR ) 0x03 )
@ -102,10 +99,6 @@ unsigned portLONG ulBaudRateCount;
xRxedChars = xQueueCreate( uxQueueLength, ( unsigned portBASE_TYPE ) sizeof( signed portCHAR ) );
xCharsForTx = xQueueCreate( uxQueueLength, ( unsigned portBASE_TYPE ) sizeof( signed portCHAR ) );
USB_PORT_SEL |= USB_PIN_RXD + USB_PIN_TXD;
USB_PORT_DIR |= USB_PIN_TXD;
USB_PORT_DIR &= ~USB_PIN_RXD;
/* Reset UART. */
UCA1CTL1 |= UCSWRST;