Skip to content

probe-web / @probe-web/client / wire / InfoEvent

Type Alias: InfoEvent

ts
type InfoEvent = 
  | {
  Message: string;
}
  | {
  ProtocolNotSupportedByArch: {
     architecture: string;
     protocol: WireProtocol;
  };
}
  | {
  ProbeInterfaceMissing: {
     interface: string;
     architecture: string;
  };
}
  | {
  Error: {
     architecture: string;
     error: string;
  };
}
  | {
  ArmError: {
     dp_addr: DpAddress;
     error: string;
  };
}
  | {
  Idcode: {
     architecture: string;
     idcode: number | null;
  };
}
  | {
  ArmDp: DebugPortInfo;
};

Defined in: wire.ts:457

probe-rs-rpc InfoEvent: info/data topic.