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
|
||||
*/
|
||||
|
||||
#ifndef RADIO
|
||||
#define RADIO
|
||||
|
||||
#ifndef RADIO_H
|
||||
#define RADIO_H
|
||||
|
||||
/**
|
||||
* @brief Preforms radio setup using defined values.
|
||||
|
@ -19,12 +18,9 @@ void Radio_setup(void);
|
|||
*/
|
||||
void Radio_reset(void);
|
||||
|
||||
|
||||
/**
|
||||
* @brief Sends data to any receiving radios.
|
||||
*/
|
||||
int Radio_SendData();
|
||||
|
||||
|
||||
|
||||
#endif //RADIO
|
||||
#endif // RADIO_H
|
||||
|
|
Loading…
Reference in New Issue