Skip to content

Commit

Permalink
change function name
Browse files Browse the repository at this point in the history
  • Loading branch information
Spencer Chen committed Nov 16, 2022
1 parent 96bd1a5 commit b9c2a04
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/VescUart.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -568,9 +568,9 @@ void VescUart::printCustomValues()
* @return true
* @return false
*/
bool VescUart::getCustomValues()
bool VescUart::updateCustomValues()
{
return getCustomValues(0);
return updateCustomValues(0);

}

Expand All @@ -591,7 +591,7 @@ bool VescUart::getCustomValues()
* @return true
* @return false
*/
bool VescUart::getCustomValues(uint8_t canId)
bool VescUart::updateCustomValues(uint8_t canId)
{
if (debugPort != NULL)
{
Expand Down
4 changes: 2 additions & 2 deletions src/VescUart.h
Original file line number Diff line number Diff line change
Expand Up @@ -211,14 +211,14 @@ class VescUart
* @brief get the balance data
*
*/
bool getCustomValues( uint8_t canId);
bool updateCustomValues( uint8_t canId);
/**
* @brief Get the Custom Config object
*
* @return true
* @return false
*/
bool getCustomValues( );
bool updateCustomValues( );



Expand Down

0 comments on commit b9c2a04

Please sign in to comment.