source: PlatformSupport/CustomPeripherals/pcores/radio_controller_v1_30_a/src/radio_controller_5ghz.h

Last change on this file was 685, checked in by sgupta, 17 years ago

Doxygen documentation

File size: 940 bytes
Line 
1// Copyright (c) 2006 Rice University
2// All Rights Reserved
3// This code is covered by the Rice-WARP license
4// See http://warp.rice.edu/license/ for details
5
6/**
7 * \file radio_controller_5ghz.h
8 * \brief Header file for the functions controlling 5GHz functionality.
9 *
10 * @version 1.09
11 * @author Siddharth Gupta
12 *
13 * 5GHz drivers for the radio controller. Has calls to changing the center frequency to that part
14 * of the spectrum and setting up amplifiers.
15 */
16
17#ifndef RADIO_CONTROLLER_5GHZ_H
18#define RADIO_CONTROLLER_5GHZ_H
19
20/***************************** Include Files *******************************/
21
22#include "radio_prototypes.h"
23
24/****************************** Functions **********************************/
25
26void WarpRadio_v1_5AmpEnable(unsigned int radios);
27
28void WarpRadio_v1_5AmpDisable(unsigned int radios);
29
30int WarpRadio_v1_SetCenterFreq5GHz(char freqset, unsigned int radios);
31
32
33#endif
Note: See TracBrowser for help on using the repository browser.