FreeCalypso > hg > fc-magnetite
view cdg-hybrid/cdginc/p_rrlp.val @ 600:8f50b202e81f
board preprocessor conditionals: prep for more FC hw in the future
This change eliminates the CONFIG_TARGET_FCDEV3B preprocessor symbol and
all preprocessor conditionals throughout the code base that tested for it,
replacing them with CONFIG_TARGET_FCFAM or CONFIG_TARGET_FCMODEM. These
new symbols are specified as follows:
CONFIG_TARGET_FCFAM is intended to cover all hardware designs created by
Mother Mychaela under the FreeCalypso trademark. This family will include
modem products (repackagings of the FCDEV3B, possibly with RFFE or even
RF transceiver changes), and also my desired FreeCalypso handset product.
CONFIG_TARGET_FCMODEM is intended to cover all FreeCalypso modem products
(which will be firmware-compatible with the FCDEV3B if they use TI Rita
transceiver, or will require a different fw build if we switch to one of
Silabs Aero transceivers), but not the handset product. Right now this
CONFIG_TARGET_FCMODEM preprocessor symbol is used to conditionalize
everything dealing with MCSI.
At the present moment the future of FC hardware evolution is still unknown:
it is not known whether we will ever have any beyond-FCDEV3B hardware at all
(contingent on uncertain funding), and if we do produce further FC hardware
designs, it is not known whether they will retain the same FIC modem core
(triband), if we are going to have a quadband design that still retains the
classic Rita transceiver, or if we are going to switch to Silabs Aero II
or some other transceiver. If we produce a quadband modem that still uses
Rita, it will run exactly the same fw as the FCDEV3B thanks to the way we
define TSPACT signals for the RF_FAM=12 && CONFIG_TARGET_FCFAM combination,
and the current fcdev3b build target will be renamed to fcmodem. OTOH, if
that putative quadband modem will be Aero-based, then it will require a
different fw build target, the fcdev3b target will stay as it is, and the
two targets will both define CONFIG_TARGET_FCFAM and CONFIG_TARGET_FCMODEM,
but will have different RF_FAM numbers. But no matter which way we are
going to evolve, it is not right to have conditionals on CONFIG_TARGET_FCDEV3B
in places like ACI, and the present change clears the way for future
evolution.
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Mon, 01 Apr 2019 01:05:24 +0000 |
| parents | e7a67accfad9 |
| children |
line wrap: on
line source
/* +--------------------------------------------------------------------------+ | PROJECT : PROTOCOL STACK | | FILE : p_rrlp.val | | SOURCE : "sap\rrlp.pdf" | | LastModified : "2002-11-13" | | IdAndVersion : "8443.102.02.100" | | SrcFileTime : "Thu Nov 29 09:53:06 2007" | | Generated by CCDGEN_2.5.5A on Fri Oct 14 21:41:52 2016 | | !!DO NOT MODIFY!!DO NOT MODIFY!!DO NOT MODIFY!! | +--------------------------------------------------------------------------+ */ /* PRAGMAS * PREFIX : NONE * COMPATIBILITY_DEFINES : NO (require PREFIX) * ALWAYS_ENUM_IN_VAL_FILE: NO * ENABLE_GROUP: NO * CAPITALIZE_TYPENAME: NO */ #ifndef P_RRLP_VAL #define P_RRLP_VAL #define CDG_ENTER__P_RRLP_VAL #define CDG_ENTER__FILENAME _P_RRLP_VAL #define CDG_ENTER__P_RRLP_VAL__FILE_TYPE CDGINC #define CDG_ENTER__P_RRLP_VAL__LAST_MODIFIED _2002_11_13 #define CDG_ENTER__P_RRLP_VAL__ID_AND_VERSION _8443_102_02_100 #define CDG_ENTER__P_RRLP_VAL__SRC_FILE_TIME _Thu_Nov_29_09_53_06_2007 #include "CDG_ENTER.h" #undef CDG_ENTER__P_RRLP_VAL #undef CDG_ENTER__FILENAME /* * Value constants for VAL_cause */ #define RRLP_METHOD_INVALID (0x7) /* Position method is not supported */ #define RRLP_REF_BTS_INVALID (0xa) /* The ref. BTS for E-OTD is not the serving BTS */ #define RRLP_HANDOVER (0x14) /* The measurement procedure was interrupted by a handover. No RRLP specific error message is created. */ /* * Value constants for VAL_exp_otd */ /* * Value constants for VAL_loc_method */ #define EOTD_METHOD (0x0) #define GPS_METOD (0x1) #define GPS_OR_EOTD_METOD (0x2) /* * Value constants for VAL_mfrm_offset */ /* * Value constants for VAL_otd_type */ #define ROUGH_RTD (0x0) /* only rough RTD has been provided by the NW */ #define EXPECTED_OTD (0x1) /* only expectedOTD has been provided by the NW */ #define BOTH_OTD (0x2) /* Both OTD / RTD types have been provided by the NW */ /* * Value constants for VAL_pos_method */ #define MS_ASSISTED (0x0) #define MS_BASED (0x1) #define MS_BASED_PREF (0x2) #define MS_ASSISTED_PREF (0x3) /* * Value constants for VAL_rough_rtd */ /* * Value constants for VAL_ta_correction_present */ #define TA_PRESENT (0x1) /* TA present */ #define TA_NOT_PRESENT (0x0) /* TA NOT present */ /* * Value constants for VAL_uncertainty */ #define UNC_MAX_2BIT (0x0) /* uncertainty in bits. 0 - 2 bits */ #define UNC_MAX_4BIT (0x1) /* uncertainty in bits. 3 - 4 bits */ #define UNC_MAX_8BIT (0x2) /* uncertainty in bits. 5 - 8 bits */ #define UNC_MAX_12BIT (0x3) /* uncertainty in bits. 9 - 12 bits */ #define UNC_MAX_16BIT (0x4) /* uncertainty in bits. 13 - 16 bits */ #define UNC_MAX_22BIT (0x5) /* uncertainty in bits. 17 - 22 bits */ #define UNC_MAX_30BIT (0x6) /* uncertainty in bits. 23 - 30 bits */ #define UNC_GT_30BIT (0x7) /* uncertainty in bits. > 30 bits */ /* * user defined constants */ #define R_NUM_MEAS_SETS (0x3) #define R_MAX_REF_NEIGH_BTS (0xf) #define MAX_NCELL_EOTD (0xf) #include "CDG_LEAVE.h" #endif
