Skip to content

Commit 40e138d

Browse files
Update service name
1 parent 9f354b6 commit 40e138d

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/CommandLineUtilities/AliceLowlevelFrontend/ProgramAlfScaWriteSequence.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class ProgramAlfScaWriteSequence: public Program
5454

5555
// Initialize DIM objects
5656
Alf::ServiceNames names(mSerialNumber, mLink);
57-
Alf::ScaWriteSequence scaWriteSequence(names.scaWriteSequence());
57+
Alf::ScaWriteSequence scaWriteSequence(names.scaSequence());
5858

5959
// Read file
6060
std::ifstream file(mFilePath);

src/CommandLineUtilities/AliceLowlevelFrontend/ProgramAliceLowlevelFrontendClient.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class ProgramAliceLowlevelFrontendClient: public Program
7373
Alf::ScaWriteRpc scaWriteRpc(names.scaWrite());
7474
Alf::ScaGpioReadRpc scaGpioReadRpc(names.scaGpioRead());
7575
Alf::ScaGpioWriteRpc scaGpioWriteRpc(names.scaGpioWrite());
76-
Alf::ScaWriteSequence scaWriteSequence(names.scaWriteSequence());
76+
Alf::ScaWriteSequence scaWriteSequence(names.scaSequence());
7777
Alf::PublishRegistersStartRpc publishRegistersStartRpc(names.publishRegistersStart());
7878
Alf::PublishRegistersStopRpc publishRegistersStopRpc(names.publishRegistersStop());
7979
Alf::PublishScaSequenceStartRpc publishScaSequenceStartRpc(names.publishScaSequenceStart());

src/CommandLineUtilities/AliceLowlevelFrontend/ProgramAliceLowlevelFrontendServer.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ class ProgramAliceLowlevelFrontendServer: public AliceO2::Common::Program
273273
servers.push_back(makeServer(names.scaWrite(),
274274
[bar2, linkInfo](auto parameter){
275275
return scaWrite(parameter, bar2, linkInfo);}));
276-
servers.push_back(makeServer(names.scaWriteSequence(),
276+
servers.push_back(makeServer(names.scaSequence(),
277277
[bar2, linkInfo](auto parameter){
278278
return scaBlobWrite(parameter, bar2, linkInfo);}));
279279
servers.push_back(makeServer(names.scaGpioRead(),

src/CommandLineUtilities/AliceLowlevelFrontend/ServiceNames.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ DEFSERVICENAME(publishScaSequenceStart, "PUBLISH_SCA_SEQUENCE_START")
2525
DEFSERVICENAME(publishScaSequenceStop, "PUBLISH_SCA_SEQUENCE_STOP")
2626
DEFSERVICENAME(scaRead, "SCA_READ")
2727
DEFSERVICENAME(scaWrite, "SCA_WRITE")
28-
DEFSERVICENAME(scaWriteSequence, "SCA_WRITE_SEQUENCE")
28+
DEFSERVICENAME(scaSequence, "SCA_SEQUENCE")
2929
DEFSERVICENAME(scaGpioWrite, "SCA_GPIO_WRITE")
3030
DEFSERVICENAME(scaGpioRead, "SCA_GPIO_READ")
3131
DEFSERVICENAME(temperature, "TEMPERATURE")

src/CommandLineUtilities/AliceLowlevelFrontend/ServiceNames.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class ServiceNames
2424
std::string registerReadRpc() const;
2525
std::string registerWriteRpc() const;
2626
std::string scaWrite() const;
27-
std::string scaWriteSequence() const;
27+
std::string scaSequence() const;
2828
std::string scaRead() const;
2929
std::string scaGpioWrite() const;
3030
std::string scaGpioRead() const;

0 commit comments

Comments
 (0)