1
0
forked from fsfw/fsfw

srv2 tweak: CSB params now configurable

This commit is contained in:
2020-07-07 17:21:47 +02:00
parent 7698f3f13e
commit 684b56ac88
2 changed files with 10 additions and 10 deletions

View File

@ -12,9 +12,10 @@
Service2DeviceAccess::Service2DeviceAccess(object_id_t objectId,
uint16_t apid, uint8_t serviceId, object_id_t tcSource,
object_id_t tmDestination):
object_id_t tmDestination, uint8_t numberOfParallelCommands,
uint16_t commandTimeoutSeconds):
CommandingServiceBase(objectId, apid, serviceId,
NUM_OF_PARALLEL_COMMANDS, COMMAND_TIMEOUT_SECONDS,
numberOfParallelCommands, commandTimeoutSeconds,
tcSource, tmDestination) {}
Service2DeviceAccess::~Service2DeviceAccess() {}