Skip to content

Commit

Permalink
Merge pull request #7 from iq-motion-control/duplicate-power-monitor-…
Browse files Browse the repository at this point in the history
…bugfix

fixed class declaration in persistent_memory_client.hpp
  • Loading branch information
Vertiq-Ben authored Nov 1, 2022
2 parents 4246177 + 2125e2d commit 6a0ceef
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions contributors.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Contributors to this library

* **Raphael Van Hoffelen** -*work*- Helped set up repo and its architecture
* **Ben Quan** -*work*- Currently maintaining repo
6 changes: 3 additions & 3 deletions inc/persistent_memory_client.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

/*
Name: persistent_memory_client.hpp
Last update: 9/19/2022 by Ben Quan
Last update: 10/31/2022 by Ben Quan
Author: Matthew Piccoli
Contributors: Ben Quan, Raphael Van Hoffelen
*/
Expand All @@ -20,9 +20,9 @@

const uint8_t kTypePersistentMemory = 11;

class PowerMonitorClient: public ClientAbstract{
class PersistentMemoryClient: public ClientAbstract{
public:
PowerMonitorClient(uint8_t obj_idn):
PersistentMemoryClient(uint8_t obj_idn):
ClientAbstract( kTypePersistentMemory, obj_idn),
erase_( kTypePersistentMemory, obj_idn, kSubErase),
revert_to_default_( kTypePersistentMemory, obj_idn, kSubRevertToDefault),
Expand Down

0 comments on commit 6a0ceef

Please sign in to comment.