lra-simple-panda: converted experiment to campaign
As we need hop chains to efficiently navigate to the injection point on pandaboard, this campaign uses these. As we do not yet have a component, which automatically navigates to a generic InjectionPoint (API needs to be properly designed), we do this explicitly. Change-Id: I26ca6ebb3f05cde735f9641551a8ce5478e463f6
This commit is contained in:
25
src/experiments/lra-simple-panda/lra_simple.proto
Normal file
25
src/experiments/lra-simple-panda/lra_simple.proto
Normal file
@ -0,0 +1,25 @@
|
||||
import "DatabaseCampaignMessage.proto";
|
||||
|
||||
message LraSimpleProtoMsg {
|
||||
required DatabaseCampaignMessage fsppilot = 1;
|
||||
|
||||
repeated group Result = 2 {
|
||||
enum ResultType {
|
||||
OK = 1;
|
||||
|
||||
ERR_WRONG_RESULT = 4;
|
||||
|
||||
ERR_TRAP = 5;
|
||||
ERR_TIMEOUT = 6;
|
||||
|
||||
ERR_OUTSIDE_TEXT = 7;
|
||||
|
||||
ERR_OUTSIDE_DATA = 8;
|
||||
}
|
||||
|
||||
required int32 bitoffset = 1 [(sql_primary_key) = true];
|
||||
required ResultType resulttype = 2;
|
||||
required uint32 experiment_number = 3;
|
||||
required uint32 loop_iteration = 4;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user