FreeCalypso > hg > fc-magnetite
view src/ui3/mfw/mfw_bt_private.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 | e8ddbb0837ed |
children |
line wrap: on
line source
/*******************************************************************************\ * * * TEXAS INSTRUMENTS ISRAEL PROPRIETARY AND CONFIDENTIAL INFORMATION * * * * LEGAL NOTE: THE TRANSFER OF THE TECHNICAL INFORMATION IS BEING MADE * * UNDER AN EXPORT LICENSE ISSUED BY THE ISRAELI GOVERNMENT AND THAT THE * * APPLICABLE EXPORT LICENSE DOES NOT ALLOW THE TECHNICAL INFORMATION TO * * BE USED FOR THE MODIFICATION OF THE BT ENCRYPTION OR THE DEVELOPMENT * * OF ANY NEW ENCRYPTION. THE INFORMATION CAN BE USED FOR THE INTERNAL * * DESIGN AND MANUFACTURE OF TI PRODUCTS THAT WILL CONTAIN THE BT IC. * * * \*******************************************************************************/ /*******************************************************************************\ * * FILE NAME: mfw_bt_Private.h * * DESCRIPTION: This file defines the structures needed for BMI BT interface * that are not exposed to BT * * AUTHOR: Anandhi Ramesh * * Rev 0.1 * \*******************************************************************************/ #ifndef __MFW_BT_PRIVATE #define __MFW_BT_PRIVATE #include "mfw_fm.h" #include "mfw_bt_api.h" #define BMI_BT_NOTCONNECTED 0 #define BMI_BT_CONNECTED 1 /*---------------------------------------------------------------------------*/ /* * BMI_BT_CMD_SRCTYPE * Contains the types of commands that can occur. */ /*---------------------------------------------------------------------------*/ typedef enum { BMI_BT_COMMAND_NONE = 0, BMI_BT_HANDSET_COMMAND, BMI_BT_HEADSET_COMMAND }BMI_BT_CMD_SRCTYPE; /*---------------------------------------------------------------------------*/ /* * BMI_BT_STRUCTTYPE * Global structure that contains the following information * Connection status * State of audio - play/pause/stop etc * Source of the command - could be from headset or handset * callback function for BT */ /*---------------------------------------------------------------------------*/ typedef struct { BOOL bConnected; T_FM_AUD_STATE tAudioState; BMI_BT_CMD_SRCTYPE tCmdSrc; void (*BmiEventCallback)(BmiAvEvent); }BMI_BT_STRUCTTYPE; #endif // __MFW_BT_PRIVATE