Changes between Version 4 and Version 5 of warpradio_max2829.c


Ignore:
Timestamp:
Jan 27, 2006, 3:52:53 PM (18 years ago)
Author:
bratton
Comment:

Added 6 descriptions

Legend:

Unmodified
Added
Removed
Modified
  • warpradio_max2829.c

    v4 v5  
    55This file provides functions for controlling the WARP radio board's ADC and RF transceiver chips.
    66
     7'''References'''
     8[[BR]]''baseaddr'' refers to the base address of the SPI core.
     9[[BR]]''radbaseaddr'' is base address of the Radio Controller peripheral.
     10[[BR]]''radios'' is the value applied to the Slave Select Register to select the radios.
     11
     12
     13
    714''[source:"/PlatformSupport/WARP_Libraries/warpradio_max2829.c@latest#L134" void WARPRadio_InitializeSPI(unsigned int* baseaddr)]''
    8 [[BR]]Initializes the SPI controller. This function must be called before any radio setup functions can be used. ''baseaddr'' is the base address of the SPI controller on the SPI bus.
     15[[BR]]Initializes the SPI controller. This function must be called before any radio setup functions can be used. ''baseaddr'' refers to the base address of the SPI core.
    916
    1017
    1118
    1219''[source:"/PlatformSupport/WARP_Libraries/warpradio_max2829.c@latest#L144" void WarpRadio_InitializeRadio(unsigned int* baseaddr, unsigned int* radbaseaddr, unsigned char radios)]''
    13 [[BR]]Initiates the selected radios.  This function must be called at the start of the program and needs to be called only once.  ''baseaddr'' is the base address of the SPI controller on the SPI bus. ''radbaseaddr'' is base address of the Radio Controller peripheral. ''radios'' is the value applied to the Slave Select Register to select the radios.
     20[[BR]]Initiates the selected radios.  This function must be called at the start of the program and needs to be called only once.  ''baseaddr'' refers to the base address of the SPI core. ''radbaseaddr'' is base address of the Radio Controller peripheral. ''radios'' is the value applied to select the desired radios.
    1421
    1522
    1623
    1724''[source:"/PlatformSupport/WARP_Libraries/warpradio_max2829.c@latest#L180" void WarpRadio_RxEnable(unsigned int* baseaddr, unsigned int* radbaseaddr, unsigned char radios)]''
    18 [[BR]]''''' DESCRIPTION TO BE ADDED'''''
     25[[BR]]Enables the receive mode in the radio board. Forcibly turns off the transmit mode and amplifiers. ''baseaddr'' refers to the base address of the SPI core. ''radbaseaddr'' is base address of the Radio Controller peripheral. ''radios'' is the value applied to select the radios to be enabled.
    1926
    2027
    2128
    2229''[source:"/PlatformSupport/WARP_Libraries/warpradio_max2829.c@latest#L216" void WarpRadio_RxDisable(unsigned int* baseaddr, unsigned int* radbaseaddr, unsigned char radios)]''
    23 [[BR]] '''''DESCRIPTION TO BE ADDED'''''
     30[[BR]]Disables receive mode in the specified radios. ''baseaddr'' refers to the base address of the SPI core. ''radbaseaddr'' is base address of the Radio Controller peripheral. ''radios'' is the value applied to select the desired radios to be disabled.
     31
    2432
    2533
    2634''[source:"/PlatformSupport/WARP_Libraries/warpradio_max2829.c@latest#L235" void WarpRadio_24AmpEnable(unsigned int* baseaddr, unsigned int* radbaseaddr, unsigned char radios)]''
    27 [[BR]] '''''DESCRIPTION TO BE ADDED'''''
     35[[BR]]Turns on the 2.4GHz amplifier for the radios selected based on the value applied in ''radios''. ''baseaddr'' refers to the base address of the SPI core. ''radbaseaddr'' is base address of the Radio Controller peripheral.
    2836
    2937
    3038''[source:"/PlatformSupport/WARP_Libraries/warpradio_max2829.c@latest#L254" void WarpRadio_24AmpDisable(unsigned int* baseaddr, unsigned int* radbaseaddr, unsigned char radios)]''
    31 [[BR]] '''''DESCRIPTION TO BE ADDED'''''
     39[[BR]]Turns off the 2.4GHz amplifier for the radios selected based on the value applied in ''radios''. ''baseaddr'' refers to the base address of the SPI core. ''radbaseaddr'' is base address of the Radio Controller peripheral.
    3240
    3341
    3442''[source:"/PlatformSupport/WARP_Libraries/warpradio_max2829.c@latest#L276" void WarpRadio_TxEnable(unsigned int* baseaddr, unsigned int* radbaseaddr, unsigned char radios)]''
    35 [[BR]] '''''DESCRIPTION TO BE ADDED'''''
     43[[BR]]Enables the transmit enable mode on the Radios specified and turns on the 2.4GHz amplifier. ''radios'' refers to the Radios in the slots whose transmit mode is turned on.
    3644
    3745