generated from TDD-Templates/cmake_cpputest_template
Compare commits
3 commits
aaa2a2d16a
...
1af6862380
Author | SHA1 | Date | |
---|---|---|---|
1af6862380 | |||
59bd150ad0 | |||
600cdf88c5 |
3 changed files with 6 additions and 10 deletions
|
@ -1,7 +1,7 @@
|
|||
cmake_minimum_required(VERSION 3.20)
|
||||
|
||||
# Use the fancy version substitution
|
||||
project(cmake-cpputest-template
|
||||
project(multi-tracker
|
||||
VERSION 1.0
|
||||
DESCRIPTION "template for cmake + cpputest"
|
||||
LANGUAGES C CXX
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
add_executable(main
|
||||
main.c
|
||||
add_executable(${PROJECT}
|
||||
${PROJECT}.cpp
|
||||
)
|
||||
add_subdirectory(Radio)
|
||||
|
|
|
@ -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…
Add table
Reference in a new issue