generated from TDD-Templates/cmake_cpputest_template
changed headerguard
The header guard was changed to add a '_H' to the end.
This commit is contained in:
parent
59bd150ad0
commit
1af6862380
|
@ -5,9 +5,8 @@
|
||||||
* description: module_purpose
|
* description: module_purpose
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef RADIO
|
#ifndef RADIO_H
|
||||||
#define RADIO
|
#define RADIO_H
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Preforms radio setup using defined values.
|
* @brief Preforms radio setup using defined values.
|
||||||
|
@ -19,12 +18,9 @@ void Radio_setup(void);
|
||||||
*/
|
*/
|
||||||
void Radio_reset(void);
|
void Radio_reset(void);
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Sends data to any receiving radios.
|
* @brief Sends data to any receiving radios.
|
||||||
*/
|
*/
|
||||||
int Radio_SendData();
|
int Radio_SendData();
|
||||||
|
|
||||||
|
#endif // RADIO_H
|
||||||
|
|
||||||
#endif //RADIO
|
|
||||||
|
|
Loading…
Reference in New Issue