changed headerguard

The header guard was changed to add a '_H' to the end.
This commit is contained in:
Jake Goodwin 2024-10-01 17:25:56 -07:00
parent 59bd150ad0
commit 1af6862380
1 changed files with 3 additions and 7 deletions

View File

@ -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