Skip to content

Commit

Permalink
Fix compilation issue from last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
noisymime committed Nov 6, 2024
1 parent fe31596 commit 43bc13c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion speeduino/comms.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ Stream* pPrimarySerial;
#endif

/** @brief Has the current receive operation timed out? */
inline bool isRxTimeout(void)
bool isRxTimeout(void)
{
return (millis() - serialReceiveStartTime) > SERIAL_TIMEOUT;
}
Expand Down
2 changes: 1 addition & 1 deletion speeduino/comms.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ void serialTransmit(void);
*
* @return true if the serial command has been waiting too long
*/
inline bool isRxTimeout(void);
bool isRxTimeout(void);

#endif // COMMS_H
2 changes: 1 addition & 1 deletion speeduino/comms_legacy.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,4 +85,4 @@ void testComm(void);
void sendToothLog_legacy(byte startOffset);
void sendCompositeLog_legacy(byte startOffset);

#endif // COMMS_H
#endif // COMMS_LEGACY_H

0 comments on commit 43bc13c

Please sign in to comment.