FreeCalypso > hg > fc-magnetite
view src/cs/drivers/drv_app/r2d/r2d_refresh.c @ 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 | ea4daae6e1ce |
children | 41c03ea90403 |
line wrap: on
line source
/** @file: r2d_refresh.c @author Christophe Favergeon @version 0.5 Purpose: Includes LCDs depend definitions for the refresh task (Second part of LCD APIs) */ /* Date Modification ------------------------------------ 06/02/2001 Create 10/18/2001 Version 0.5 for first integration with Riviera database (C) Copyright 2001 by Texas Instruments Incorporated, All Rights Reserved */ #include "rv/general.h" #include "rvf/rvf_api.h" #include "r2d/r2d_messages.h" #include "r2d/r2d_env.h" #include "r2d/lcd_messages_ti.h" #include "r2d/lcd_messages.h" #include "r2d/r2d_config.h" #include "r2d/r2d.h" #include "r2d/r2d_i.h" #ifdef _WINDOWS #include <Windows.h> #endif #include "r2d/uwire.h" extern T_RVF_MB_ID r2d_mb_id; INT16 r2d_update_ul_x,r2d_update_ul_y,r2d_update_br_x,r2d_update_br_y; #if (R2D_REFRESH == R2D_VERTICAL) UINT32 r2d_lcd_memory_words[(((R2D_WIDTH*R2D_MWHEIGHT)+1))]; #else UINT32 r2d_lcd_memory_words[(((R2D_MWWIDTH*R2D_HEIGHT)+1))]; #endif void r2d_reinit_update_region(void) { rvf_lock_mutex(r2d_g_global_mutex); //r2d_update_ul_x=0; //r2d_update_ul_y=0; //r2d_update_br_x=R2D_WIDTH-1; //r2d_update_br_y=R2D_HEIGHT-1; r2d_update_ul_x=R2D_WIDTH; r2d_update_ul_y=R2D_HEIGHT; r2d_update_br_x=-1; r2d_update_br_y=-1; rvf_unlock_mutex(r2d_g_global_mutex); } #if (R2D_EMBEDDED_LCD == R2D_PC_COLOR_LCD) #include "lcds/ColorPC/r2d_task_i.c" #endif #if (R2D_EMBEDDED_LCD == R2D_PC_CSAMPLE) #include "lcds/PC_CSAMPLE/r2d_task_i.c" #endif #if (R2D_EMBEDDED_LCD == R2D_PC_DSAMPLE) #include "lcds/PC_DSAMPLE/r2d_task_i.c" #endif #if (R2D_EMBEDDED_LCD == R2D_SIMPLE_LCD) #include "lcds/Simple/r2d_task_i.c" #endif #if (R2D_EMBEDDED_LCD == R2D_MIRRORED_LCD) #ifdef CONFIG_TARGET_C139 #include "lcds/c139/r2d_task_i.c" #else #include "lcds/Simple/r2d_task_i.c" #endif #endif #if (R2D_EMBEDDED_LCD == R2D_CUSTOMER_LCD) #include "lcds/Customer/r2d_task_i.c" #endif #if (R2D_EMBEDDED_LCD == R2D_HORIZONTAL_LCD) #include "lcds/Horizontal/r2d_task_i.c" #endif #if (R2D_EMBEDDED_LCD == R2D_BOARD_COLOR_LCD) #include "lcds/ColorBoard/r2d_task_i.c" #endif #if (R2D_EMBEDDED_LCD == R2D_BOARD_DSAMPLE) #include "lcds/D_Sample/r2d_task_i.c" #endif #if (R2D_EMBEDDED_LCD == R2D_BOARD_BW_DSAMPLE) #include "lcds/BW_D_Sample/r2d_task_i.c" #endif