Changes between Version 20 and Version 21 of HardwareUsersGuides/RadioBoard_v1.4/RadioController


Ignore:
Timestamp:
Jul 24, 2006, 1:17:00 PM (18 years ago)
Author:
sgupta
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HardwareUsersGuides/RadioBoard_v1.4/RadioController

    v20 v21  
    6666'''Selecting Antenna Configurations:''' There are four different antenna configurations that can be used to transmit and receive data. See [source:/PlatformSupport/CustomPeripherals/drivers/radio_controller_v1_04_a/src/radio_controller.h@latest#L336 radio_controller.h] for details on the different modes.
    6767
    68 '''Transmitting Data:''' Firstly enable transmit mode on the radio by calling `TxEnable(...)`. Then the amplifier should be switched on. If the center frequency is the 2.4 GHz range then select `24AmpEnable(...)` while if in the 5 Ghz range use `5AmpEnable(...)`. The data to be transmitted should be on the `radio_bridge` ports `user_DAC_I` and `user_DAC_Q`. After the transmission is completed the amplifier should be disabled and the transmit should be disabled.
     68'''Transmitting and Receiving Data:''' Firstly enable transmit mode on the radio by calling `TxEnable(...)`. Then the amplifier should be switched on. If the center frequency is the 2.4 GHz range then select `24AmpEnable(...)` while if in the 5 Ghz range use `5AmpEnable(...)`. The data to be transmitted should be on the `radio_bridge` ports `user_DAC_I` and `user_DAC_Q`. After the transmission is completed the amplifier should be disabled and the transmit should be disabled. For receiving data, use `RxEnable(...)` and the data would be available on the `user_ADC_I` and `user_ADC_Q` ports.