Using the µVision Socket Interface  Application Note 198
Control and monitor µVision via the built-in TCP/IP interface
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
VTG's Data Typ Codes

Enumerations

enum  VTT_TYPE {
  VTT_void = 0,
  VTT_bit = 1,
  VTT_char = 2,
  VTT_uchar = 3,
  VTT_int = 4,
  VTT_uint = 5,
  VTT_short = 6,
  VTT_ushort = 7,
  VTT_long = 8,
  VTT_ulong = 9,
  VTT_float = 10,
  VTT_double = 11,
  VTT_ptr = 12,
  VTT_union = 13,
  VTT_struct = 14,
  VTT_func = 15,
  VTT_string = 16,
  VTT_enum = 17,
  VTT_field = 18,
  VTT_int64 = 19,
  VTT_uint64 = 20,
  VTT_end
}
 

Description

Enumeration Type Documentation

enum VTT_TYPE

Variant-Types used in TVAL

Gives the type of the corresponding data in a TVAL structure.

Enumerator
VTT_void 

val.u64

VTT_bit 

val.ul & 1

VTT_char 

val.sc

VTT_uchar 

val.uc

VTT_int 

val.i

VTT_uint 

val.ul

VTT_short 

val.i16

VTT_ushort 

val.u16

VTT_long 

val.l

VTT_ulong 

val.ul

VTT_float 

val.f

VTT_double 

val.d

VTT_ptr 

val.ul

VTT_union 

Unused.

VTT_struct 

Unused.

VTT_func 

Unused.

VTT_string 

Unused.

VTT_enum 

Unused.

VTT_field 

Unused.

VTT_int64 

val.i64

VTT_uint64 

val.u64

VTT_end 

Always at end.