Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

 

Guardant Mobile SDK.

Code Block
#include <stddef.h> 
#include "c99/stdint.h"

...

Variables

  • static const uint32_t GrdFM_NProg = 0x00000001
    In order to compare the field program number with the value in the dongle, as equal, this bit must be set.
  • static const uint32_t GrdFM_ID = 0x00000002
    To search dongle with specified ID, this bit must be set.
  • static const uint32_t GrdFM_SN = 0x00000004
    In order to compare the field serial number with the value in the dongle, as equal, this bit must be set.
  • static const uint32_t GrdFM_Ver = 0x00000008
    In order to compare the field program version with the value in the dongle, as less or equal, this bit must be set.
  • static const uint32_t GrdFM_Mask = 0x00000010
    In order to compare the field mask with the value in the dongle, as bit mask, this bit must be set.
  • static const uint32_t GrdFM_Type = 0x00000020
    To search for a specified feature this bit must be set.
  • static const uint32_t GrdFM_Model = 0x80000000
    To search for a model this bit must be set.
  • static const uint16_t GrdDT_RTC = 0x00000040
    To search dongles that support "Real Time Clock" feature.
  • static const uint16_t GrdDT_LoadableCode = 0x00000400
    To search dongles that support "Loadable Code" feature.
  • static const uint32_t GrdFMM_GC = 0x00000100
    To search for a Guardant Code model this bit must be set.
  • static const uint32_t GrdFMM_GSD = 0x00000400
    To search for a Guardant JavaCard model this bit must be set.
  • static const uint32_t GrdInvalidHandle = 0xFFFFFFFF
    Invalid handle value.

...

Detailed Description

Guardant Mobile SDK.

...