Skip to content

Commit

Permalink
Add roslint exception. Minor type fix (closes AutonomyLab#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
mani-monaj committed Apr 16, 2015
1 parent ad96a13 commit e1305b1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ target_link_libraries(
add_dependencies(ardrone_driver ardronelib ${PROJECT_NAME}_gencpp)

# roslint
set(ROSLINT_CPP_OPTS "--filter=-runtime/references-runtime/threadsafe_fn")
roslint_cpp(${AA_HEADERS} ${AA_SOURCES})

# Install Rules
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ With some hacking yes! This [wiki page](https://github.com/AutonomyLab/ardrone_a

### How to re-compile parrot SDK?

If the `git` updates include a SDK upgrade, you'd better cleanup previous vuild files.
If the `git` updates include a SDK upgrade, you'd better cleanup previous build files.

```bash
cd ARDroneLib/Soft/Build
Expand Down
3 changes: 2 additions & 1 deletion src/ardrone_sdk.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,9 @@ extern "C"
return C_OK;
}

C_RESULT navdata_custom_init(void*)
C_RESULT navdata_custom_init(void* data)
{
(void) data;
return C_OK;
}

Expand Down

0 comments on commit e1305b1

Please sign in to comment.