generated from TDD-Templates/cmake_cpputest_template_avr
changed style
This commit is contained in:
parent
6b3b564f62
commit
491df6d407
12
inc/main.h
12
inc/main.h
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue