hal_spi.c

来自「基于msp430f149与CC2420的无线传感器网络平台」· C语言 代码 · 共 51 行

C
51
字号
/************************************************************************************

  Filename:     hal_spi.c

  Description:  Initialise USART1 for SPI.

************************************************************************************/

#include <include.h>

//-----------------------------------------------------------------------------------
//	void halSpiInit(void)
//
//	DESCRIPTION:
//		Initalises the MSP430 Port 5/UART1 for SPI use.
//
//-----------------------------------------------------------------------------------
void halSpiInit(void)
{	
	U1CTL  = CHAR + SYNC + MM + SWRST;	// SW  reset, 8-bit transfer, SPI master
	U1TCTL = CKPH + SSEL1 + STC;	    // Data on Rising Edge, SMCLK, 3-wire

	U1BR0  = 0x02;		 	            // SPICLK set baud
	U1BR1  = 0;                         // Dont need baud rate control register 2 - clear it
	U1MCTL = 0;		 	                // Dont need modulation control

	P5SEL= BIT1+BIT2+BIT3;				// Select Peripheral functionality (SPI)
	P5DIR= BIT1+BIT3+BIT4;			    // Configure as outputs(SIMO,CLK,CSn)
	
	ME2   |= USPIE1;		            // Module enable
	U1CTL &= ~SWRST;	                // Remove RESET
} // SpiInit

/***********************************************************************************
  Copyright 2007 Texas Instruments Incorporated. All rights reserved.

  IMPORTANT: Your use of this Software is limited to those specific rights
  granted under the terms of a software license agreement between the user
  who downloaded the software, his/her employer (which must be your employer)
  and Texas Instruments Incorporated (the "License").  You may not use this
  Software unless you agree to abide by the terms of the License. The License
  limits your use, and you acknowledge, that the Software may not be modified,
  copied or distributed unless embedded on a Texas Instruments microcontroller
  or used solely and exclusively in conjunction with a Texas Instruments radio
  frequency transceiver, which is integrated into your product.  Other than for
  the foregoing purpose, you may not use, reproduce, copy, prepare derivative
  works of, modify, distribute, perform, display or sell this Software and/or
  its documentation for any purpose.

  YOU FURTHER ACKNOWLEDGE AND AGREE THAT THE SOFTWARE AND DOCUMENTATION ARE
  PROVIDED 揂S IS

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?