FreeCalypso > hg > fc-tourmaline
view src/ui/mfw/mfw_band.h @ 267:10b3a6876273
fc-target.h preprocessor symbols: introduce CONFIG_TARGET_LEO_RFFE
Out of our currently existing supported targets, Leonardo and Tango
use TI's classic Leonardo RFFE wiring. However, we would like to
use the same quadband RFFE with the same classic wiring on our
FreeCalypso Libre Dumbphone handset, and also on the planned
development board that will serve as a stepping stone toward that
goal. Therefore, we introduce the new CONFIG_TARGET_LEO_RFFE
preprocessor symbol, and conditionalize on this symbol in tpudrv12.h,
instead of a growing || of different targets.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 09 Jun 2021 07:26:51 +0000 |
parents | 67bfe9f274f6 |
children |
line wrap: on
line source
#ifndef _MFW_BAND_H_ #define _MFW_BAND_H_ typedef enum { MFW_BAND_Busy= -2, MFW_BAND_Fail = -1, MFW_BAND_OK, MFW_BAND_InProgress } T_MFW_BAND_RET; typedef enum { MFW_BAND_MODE_Auto = 0, MFW_BAND_MODE_Manual = 1 } T_MFW_BAND_MODE; /* SPR919 - SH - Band is now a bit field*/ /*a0393213 compiler warnings removal - typedef removed*/ enum { MFW_BAND_GSM_900 = 1, MFW_BAND_DCS_1800 = 2, MFW_BAND_PCS_1900 = 4, MFW_BAND_E_GSM = 8, MFW_BAND_GSM_850 = 16 }; T_MFW_BAND_RET band_radio_mode_switch(T_MFW_BAND_MODE mode, UBYTE band); T_MFW_BAND_RET band_get_radio_modes(T_MFW_BAND_MODE* maxMode, UBYTE *band); T_MFW_BAND_RET band_get_current_radio_mode(T_MFW_BAND_MODE* mode, UBYTE *band); #endif /* _MFW_BAND_H_*/