Skip to content

Commit

Permalink
Merge pull request #29 from sonia-auv/fix/voltage
Browse files Browse the repository at this point in the history
Fix/voltage
  • Loading branch information
supertoto29 authored May 26, 2022
2 parents ddbd1ae + e6a6894 commit 249fb0d
Show file tree
Hide file tree
Showing 10 changed files with 441 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Give a brief description of the modifications

## Fixes
Link all the related issues from the issue tracker
- Closes: #
- Closes #

## How has this been tested ?
(If possible) describe the steps to test these modifications.
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/docker-image-perception-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name: Docker Image CI - Develop Branch
on:
push:
branches: [develop]
schedule:
- cron: "12 0 * * *"

jobs:
build-ros-perception-x86-64:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/docker-image-perception-feature.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name: Docker Image CI - Feature Branch
on:
push:
branches: [feature/**]
schedule:
- cron: "12 0 * * *"

jobs:
build-ros-perception-x86-64:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/docker-image-perception-fix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name: Docker Image CI - Fix Branch
on:
push:
branches: [fix/**]
schedule:
- cron: "12 0 * * *"

jobs:
build-ros-perception-x86-64:
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,6 @@ crashlytics-build.properties
# Coverring ROS ignores
build/
devel/
/src/
/log/
latest
rospack*
Expand Down
3 changes: 2 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ include_directories(
set( TARGET_NAME provider_power_node )
add_executable( ${TARGET_NAME}
${provider_power_SRC_DIR}/main.cc
${provider_power_SRC_DIR}/provider_power_node.cc)
${provider_power_SRC_DIR}/provider_power_node.cc
${provider_power_SRC_DIR}/sharedQueue.h)
target_link_libraries( ${TARGET_NAME} ${catkin_LIBRARIES})
set_target_properties( ${TARGET_NAME} PROPERTIES LINKER_LANGUAGE CXX )
add_dependencies(${PROJECT_NAME}_node ${catkin_EXPORTED_TARGETS})
Expand Down
2 changes: 1 addition & 1 deletion package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package>
<name>provider_power</name>
<version>2.0.0</version>
<version>2.0.1</version>
<description>The provider_provider package</description>

<maintainer email="francisalonzo29@gmail.com">Francis Alonzo</maintainer>
Expand Down
Loading

0 comments on commit 249fb0d

Please sign in to comment.