You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Used to add a note within a sequence at a specific instant. Can be used by command & sequence simulator tools to print the string argument at the relevant instant within simulations.
4247
+
*/
4248
+
export interface Note {
4249
+
/**
4250
+
* Note string arg.
4251
+
*/
4252
+
string_arg: string;
4253
+
description?: Description;
4254
+
metadata?: Metadata;
4255
+
models?: Model[];
4256
+
time: Time;
4257
+
type: 'note';
4258
+
}
4238
4259
/**
4239
4260
* Object representing a single Immediate Command
4240
4261
*/
4241
-
export interface ImmediateCommand {
4262
+
export interface ImmediateFswCommand {
4242
4263
args: Args;
4243
4264
description?: Description;
4244
4265
metadata?: Metadata;
4266
+
models?: Model[];
4245
4267
/**
4246
4268
* Command stem
4247
4269
*/
4248
4270
stem: string;
4271
+
type?: 'immediate_command';
4272
+
}
4273
+
/**
4274
+
* Untimed load object
4275
+
*/
4276
+
export interface ImmediateLoad {
4277
+
args?: Args;
4278
+
description?: Description;
4279
+
/**
4280
+
* Sequence target engine.
4281
+
*/
4282
+
engine?: number;
4283
+
/**
4284
+
* Onboard epoch to pass to the sequence for derivation of epoch-relative timetags
4285
+
*/
4286
+
epoch?: string;
4287
+
metadata?: Metadata;
4288
+
models?: Model[];
4289
+
/**
4290
+
* Onboard path and filename of sequence to be loaded.
4291
+
*/
4292
+
sequence: string;
4293
+
type: 'immediate_load';
4294
+
}
4295
+
/**
4296
+
* Untimed activate object
4297
+
*/
4298
+
export interface ImmediateActivate {
4299
+
args?: Args;
4300
+
description?: Description;
4301
+
/**
4302
+
* Sequence target engine.
4303
+
*/
4304
+
engine?: number;
4305
+
/**
4306
+
* Onboard epoch to pass to the sequence for derivation of epoch-relative timetags
4307
+
*/
4308
+
epoch?: string;
4309
+
metadata?: Metadata;
4310
+
models?: Model[];
4311
+
/**
4312
+
* Onboard path and filename of sequence to be loaded.
0 commit comments