Skip to content

Commit

Permalink
fixing initialization flag always true
Browse files Browse the repository at this point in the history
  • Loading branch information
mcbed committed Jun 27, 2023
1 parent c9c6b10 commit 0c87844
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class EcCiA402Drive : public GenericEcSlave
virtual ~EcCiA402Drive();
/** Returns true if drive has reached "operation enabled" state.
* The transition through the state machine is handled automatically. */
bool initialized() const;
bool initialized();

virtual void processData(size_t index, uint8_t * domain_address);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ EcCiA402Drive::EcCiA402Drive()
: GenericEcSlave() {}
EcCiA402Drive::~EcCiA402Drive() {}

bool EcCiA402Drive::initialized() const {return initialized_;}
bool EcCiA402Drive::initialized() {return initialized_;}

void EcCiA402Drive::processData(size_t index, uint8_t * domain_address)
{
Expand Down

0 comments on commit 0c87844

Please sign in to comment.