-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added sample file and minor architecture fixes
- Loading branch information
Showing
16 changed files
with
435 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,4 +12,5 @@ build/ | |
debug/ | ||
release/ | ||
docs/ | ||
gmon.out | ||
*~ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/* | ||
* cros.h | ||
* | ||
* Created on: 27/apr/2015 | ||
* Author: nico | ||
*/ | ||
|
||
#ifndef INCLUDE_CROS_H_ | ||
#define INCLUDE_CROS_H_ | ||
|
||
#include "cros_api.h" | ||
#include "cros_log.h" | ||
|
||
#endif /* INCLUDE_CROS_H_ */ |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
set(EXECUTABLE_OUTPUT_PATH ${CMAKE_CURRENT_SOURCE_DIR}) | ||
set(EXECUTABLE_OUTPUT_PATH ${CMAKE_CURRENT_SOURCE_DIR}/bin) | ||
|
||
add_executable (raw-api-test raw-api-test.c) | ||
target_link_libraries(raw-api-test cros) | ||
|
||
add_executable(parameters-test parameters-test.c) | ||
target_link_libraries(parameters-test cros) | ||
target_link_libraries(parameters-test cros) | ||
|
||
add_executable(api-test api-test.c) | ||
target_link_libraries(api-test cros) |
Oops, something went wrong.