Compare commits

..

2 commits

Author SHA1 Message Date
721fe66cf4 Added doxygen comments to the function protopyes in header. 2025-02-13 12:22:43 -08:00
9b9b8a07e4 removed uneeded prototype 2025-02-13 12:14:52 -08:00

View file

@ -90,14 +90,6 @@ typedef struct {
//Public Prototypes
//#############################
/**
* @brief Blinks a defined led pin.
* @param None
*/
void LedBlink(void);
/**
* @brief Initializes the uC for the program.
*/
@ -106,34 +98,25 @@ void InitProg(void);
/**
* @brief Reads the ADC pin
* @param
*/
uint16_t ReadADC(void);
/**
* @brief
* @param
* @brief Moves the motor to target location based off the PB3.
* @param[in] 8bit value representing fader location.
*/
void MotorMoveTo(uint8_t target);
/**
* @brief
* @param
* @brief Turns off motor allowing free movement.
*/
void MotorCoast(void);
/**
* @brief
* @param
* @brief Activates the motor driver in forward or reverse.
* @param[in] moves foward when true and in reverse when false.
*/
void MotorMove(uint8_t fwd);
/**
* @brief
* @param
*/
uint8_t ReadButton(void);
#endif