fixed function prototypes

This commit is contained in:
2019-08-10 15:28:48 -04:00
parent 3807ed2588
commit 402eaed8e6
2 changed files with 4 additions and 4 deletions

View File

@@ -28,12 +28,12 @@
/** /**
* Initialize the driver. * Initialize the driver.
*/ */
void DANCEPAD_Initialize(); void DANCEPAD_Initialize(void);
/** /**
* Perform any driver-related tasks. Must be called once every loop. * Perform any driver-related tasks. Must be called once every loop.
*/ */
void DANCEPAD_Tasks(); void DANCEPAD_Tasks(void);
#endif /* DANCEPAD_H */ #endif /* DANCEPAD_H */

View File

@@ -28,13 +28,13 @@
/** /**
* Initialize IO for reading the pad sensors. * Initialize IO for reading the pad sensors.
*/ */
void PADHAL_Initialize(); void PADHAL_Initialize(void);
/** /**
* Get the current state of all pad sensors. * Get the current state of all pad sensors.
* @return the pad states, as the first 6 bits in a uint8_t. * @return the pad states, as the first 6 bits in a uint8_t.
*/ */
uint8_t PADHAL_GetButtons(); uint8_t PADHAL_GetButtons(void);
#endif /* PADHAL_H */ #endif /* PADHAL_H */