FreeCalypso > hg > fc-magnetite
view src/ui3/mfw/mfw_band.h @ 624:012028896cfb
FFS dev.c, Leonardo target: Fujitsu MB84VF5F5F4J2 #if 0'ed out
The FFS code we got from TI/Openmoko had a stanza for "Fujitsu MB84VF5F5F4J2
stacked device", using a fake device ID code that would need to be patched
manually into cfgffs.c (suppressing and overriding autodetection) and using
an FFS base address in the nCS2 bank, indicating that this FFS config was
probably meant for the MCP version of Leonardo which allows for 16 MiB flash
with a second bank on nCS2.
We previously had this FFS config stanza conditionalized under
CONFIG_TARGET_LEONARDO because the base address contained therein is invalid
for other targets, but now that we actually have a Leonardo build target in
FC Magnetite, I realize that the better approach is to #if 0 out this stanza
altogether: it is already non-functional because it uses a fake device ID
code, thus it is does not add support for more Leonardo board variants,
instead it is just noise.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 22 Dec 2019 21:24:29 +0000 |
parents | f914fb46e1a5 |
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_*/