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.
|
||||
* @param None
|
||||
*/
|
||||
void led_blink(void);
|
||||
void LedBlink(void);
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* @brief Initializes the uC for the program.
|
||||
*/
|
||||
void init_prog(void);
|
||||
void InitProg(void);
|
||||
|
||||
|
||||
/**
|
||||
* @brief Reads the ADC pin
|
||||
* @param
|
||||
*/
|
||||
uint16_t readADC(void);
|
||||
uint16_t ReadADC(void);
|
||||
|
||||
/**
|
||||
* @brief
|
||||
* @param
|
||||
*/
|
||||
void motorCoast(void);
|
||||
void MotorCoast(void);
|
||||
|
||||
/**
|
||||
* @brief
|
||||
* @param
|
||||
*/
|
||||
void motorMove(int direction);
|
||||
void MotorMove(int direction);
|
||||
|
||||
/**
|
||||
* @brief
|
||||
* @param
|
||||
*/
|
||||
uint8_t readButton(void);
|
||||
uint8_t ReadButton(void);
|
||||
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue