comparison gsm-fw/bsp/abb+spi/spi_drv.c @ 589:54459b912ef0

gsm-fw/bsp/abb+spi/spi_*.c: formatting fixes (line length and tabs)
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sun, 17 Aug 2014 00:56:26 +0000
parents e48ea5875df7
children
comparison
equal deleted inserted replaced
588:1c0033c2fe33 589:54459b912ef0
1 /**********************************************************************************/ 1 /******************************************************************************/
2 /* TEXAS INSTRUMENTS INCORPORATED PROPRIETARY INFORMATION */ 2 /* TEXAS INSTRUMENTS INCORPORATED PROPRIETARY INFORMATION */
3 /* */ 3 /* */
4 /* Property of Texas Instruments -- For Unrestricted Internal Use Only */ 4 /* Property of Texas Instruments -- For Unrestricted Internal Use Only */
5 /* Unauthorized reproduction and/or distribution is strictly prohibited. This */ 5 /* Unauthorized reproduction and/or distribution is strictly prohibited. This*/
6 /* product is protected under copyright law and trade secret law as an */ 6 /* product is protected under copyright law and trade secret law as an*/
7 /* unpublished work. Created 1987, (C) Copyright 1997 Texas Instruments. All */ 7 /* unpublished work. Created 1987, (C) Copyright 1997 Texas Instruments. All*/
8 /* rights reserved. */ 8 /* rights reserved. */
9 /* */ 9 /* */
10 /* */ 10 /* */
11 /* Filename : spi_drv.c */ 11 /* Filename : spi_drv.c */
12 /* */ 12 /* */
13 /* Description : Functions to drive the SPI module. */ 13 /* Description : Functions to drive the SPI module. */
14 /* The Serial Port Interface is a bidirectional 3 lines */ 14 /* The Serial Port Interface is a bidirectional 3 lines */
15 /* interface dedicated to the transfer of data to and */ 15 /* interface dedicated to the transfer of data to and */
16 /* from up to 5 external devices offering a 3 lines */ 16 /* from up to 5 external devices offering a 3 lines */
17 /* serial interface. */ 17 /* serial interface. */
18 /* In this project, it is only used to connect the TI */ 18 /* In this project, it is only used to connect the TI */
19 /* Analog BaseBand (ABB). */ 19 /* Analog BaseBand (ABB). */
20 /* It is assumed that the ABB is connected as the SPI */ 20 /* It is assumed that the ABB is connected as the SPI */
21 /* device 0. */ 21 /* device 0. */
22 /* */ 22 /* */
23 /* This interface is specified to be compatible with */ 23 /* This interface is specified to be compatible with */
24 /* the UMA1018M Philips, the FUJITSU MB15F02, the */ 24 /* the UMA1018M Philips, the FUJITSU MB15F02, the */
25 /* SIEMENS PMB2306T synthesizers and the TI ABB. */ 25 /* SIEMENS PMB2306T synthesizers and the TI ABB. */
26 /* */ 26 /* */
27 /* This serial port is based on a looped shift-register */ 27 /* This serial port is based on a looped shift-register */
28 /* thus allowing both transmit (PISO) and receive (SIPO) */ 28 /* thus allowing both transmit (PISO) and receive (SIPO) */
29 /* modes. */ 29 /* modes. */
30 /* */ 30 /* */
31 /* */ 31 /* */
32 /* Author : Pascal PUEL */ 32 /* Author : Pascal PUEL */
33 /* */ 33 /* */
34 /* Version number : 1.45 */ 34 /* Version number : 1.45 */
35 /* */ 35 /* */
36 /* Date and time : 07/01/03 */ 36 /* Date and time : 07/01/03 */
37 /* */ 37 /* */
38 /* Previous delta : Rework */ 38 /* Previous delta : Rework */
39 /* */ 39 /* */
40 /**********************************************************************************/ 40 /******************************************************************************/
41 41
42 #include "spi_drv.h" 42 #include "spi_drv.h"
43 43
44 44
45 45