mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-04 07:51:14 -05:00
89 lines
3.1 KiB
C
89 lines
3.1 KiB
C
/***************************************************************************
|
|
* This file is part of Qthid.
|
|
*
|
|
* Copyright (C) 2010 Howard Long, G6LVB
|
|
* CopyRight (C) 2011 Alexandru Csete, OZ9AEC
|
|
* Mario Lorenz, DL5MLO
|
|
*
|
|
* Qthid is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Qthid is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with Qthid. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
***************************************************************************/
|
|
|
|
#ifndef FCD_H
|
|
#define FCD_H 1
|
|
|
|
|
|
#ifdef FCD
|
|
#define EXTERN
|
|
#define ASSIGN (x) =x
|
|
#else
|
|
#define EXTERN extern
|
|
#define ASSIGN(x)
|
|
#endif
|
|
|
|
#ifdef _WIN32
|
|
#define FCD_API_EXPORT __declspec(dllexport)
|
|
#define FCD_API_CALL _stdcall
|
|
#else
|
|
#define FCD_API_EXPORT
|
|
#define FCD_API_CALL
|
|
#endif
|
|
|
|
#include <inttypes.h>
|
|
|
|
|
|
/** \brief FCD mode enumeration. */
|
|
typedef enum {
|
|
FCD_MODE_NONE, /*!< No FCD detected. */
|
|
FCD_MODE_DEAD,
|
|
FCD_MODE_BL, /*!< FCD present in bootloader mode. */
|
|
FCD_MODE_APP /*!< FCD present in aplpication mode. */
|
|
} FCD_MODE_ENUM; // The current mode of the FCD: none inserted, in bootloader mode or in normal application mode
|
|
|
|
/** \brief FCD capabilities that depend on both hardware and firmware. */
|
|
typedef struct {
|
|
unsigned char hasBiasT; /*!< Whether FCD has hardware bias tee (1=yes, 0=no) */
|
|
unsigned char hasCellBlock; /*!< Whether FCD has cellular blocking. */
|
|
} FCD_CAPS_STRUCT;
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Application functions */
|
|
EXTERN FCD_API_EXPORT FCD_API_CALL FCD_MODE_ENUM fcdGetMode(void);
|
|
EXTERN FCD_API_EXPORT FCD_API_CALL FCD_MODE_ENUM fcdGetFwVerStr(char *str);
|
|
EXTERN FCD_API_EXPORT FCD_API_CALL FCD_MODE_ENUM fcdGetCaps(FCD_CAPS_STRUCT *fcd_caps);
|
|
EXTERN FCD_API_EXPORT FCD_API_CALL FCD_MODE_ENUM fcdGetCapsStr(char *caps_str);
|
|
EXTERN FCD_API_EXPORT FCD_API_CALL FCD_MODE_ENUM fcdAppReset(void);
|
|
EXTERN FCD_API_EXPORT FCD_API_CALL FCD_MODE_ENUM fcdAppSetFreqkHz(int nFreq);
|
|
EXTERN FCD_API_EXPORT FCD_API_CALL FCD_MODE_ENUM fcdAppSetFreq(int nFreq);
|
|
|
|
EXTERN FCD_API_EXPORT FCD_API_CALL FCD_MODE_ENUM fcdAppSetParam(uint8_t u8Cmd, uint8_t *pu8Data, uint8_t u8len);
|
|
EXTERN FCD_API_EXPORT FCD_API_CALL FCD_MODE_ENUM fcdAppGetParam(uint8_t u8Cmd, uint8_t *pu8Data, uint8_t u8len);
|
|
|
|
|
|
/* Bootloader functions */
|
|
EXTERN FCD_API_EXPORT FCD_API_CALL FCD_MODE_ENUM fcdBlReset(void);
|
|
EXTERN FCD_API_EXPORT FCD_API_CALL FCD_MODE_ENUM fcdBlErase(void);
|
|
EXTERN FCD_API_EXPORT FCD_API_CALL FCD_MODE_ENUM fcdBlWriteFirmware(char *pc, int64_t n64Size);
|
|
EXTERN FCD_API_EXPORT FCD_API_CALL FCD_MODE_ENUM fcdBlVerifyFirmware(char *pc, int64_t n64Size);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // FCD_H
|