changed style

This commit is contained in:
Jake Goodwin 2025-02-10 15:06:15 -08:00
parent 6b3b564f62
commit 491df6d407
1 changed files with 6 additions and 6 deletions

View File

@ -94,39 +94,39 @@ typedef struct {
* @brief Blinks a defined led pin. * @brief Blinks a defined led pin.
* @param None * @param None
*/ */
void led_blink(void); void LedBlink(void);
/** /**
* @brief Initializes the uC for the program. * @brief Initializes the uC for the program.
*/ */
void init_prog(void); void InitProg(void);
/** /**
* @brief Reads the ADC pin * @brief Reads the ADC pin
* @param * @param
*/ */
uint16_t readADC(void); uint16_t ReadADC(void);
/** /**
* @brief * @brief
* @param * @param
*/ */
void motorCoast(void); void MotorCoast(void);
/** /**
* @brief * @brief
* @param * @param
*/ */
void motorMove(int direction); void MotorMove(int direction);
/** /**
* @brief * @brief
* @param * @param
*/ */
uint8_t readButton(void); uint8_t ReadButton(void);
#endif #endif