Compare commits

..

No commits in common. "1af6862380489164f26e86886d63d621d6766b9a" and "aaa2a2d16a0a095d2dcfdafbd3eca1df68996a75" have entirely different histories.

3 changed files with 10 additions and 6 deletions

View file

@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.20)
# Use the fancy version substitution
project(multi-tracker
project(cmake-cpputest-template
VERSION 1.0
DESCRIPTION "template for cmake + cpputest"
LANGUAGES C CXX

View file

@ -1,4 +1,4 @@
add_executable(${PROJECT}
${PROJECT}.cpp
add_executable(main
main.c
)
add_subdirectory(Radio)

View file

@ -5,8 +5,9 @@
* description: module_purpose
*/
#ifndef RADIO_H
#define RADIO_H
#ifndef RADIO
#define RADIO
/**
* @brief Preforms radio setup using defined values.
@ -18,9 +19,12 @@ void Radio_setup(void);
*/
void Radio_reset(void);
/**
* @brief Sends data to any receiving radios.
*/
int Radio_SendData();
#endif // RADIO_H
#endif //RADIO