Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

communications public interface #1863

Merged
merged 2 commits into from
Aug 1, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions communication/src/build.mk
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
# based on the root of the project
TARGET_SRC_PATH = src

INCLUDE_DIRS += $(TARGET_SRC_PATH)

# C source files included in this build.
# CSRC +=
Expand Down
2 changes: 1 addition & 1 deletion communication/src/include.mk
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@

INCLUDE_DIRS += $(COMMUNICATION_MODULE_PATH)/src
INCLUDE_DIRS += $(COMMUNICATION_MODULE_PATH)/inc

1 change: 0 additions & 1 deletion hal/src/nRF52840/ota_flash_hal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
#include "ota_flash_hal_impl.h"
#include "dct_hal.h"
#include "dct.h"
#include "handshake.h"
#include "core_hal.h"
#include "flash_mal.h"
#include "dct_hal.h"
Expand Down
2 changes: 1 addition & 1 deletion test/unit_tests/cloud/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ target_compile_options( ${target_name}

# Set include path specific to target
target_include_directories( ${target_name}
PRIVATE ${DEVICE_OS_DIR}/communication/src/
PRIVATE ${DEVICE_OS_DIR}/communication/inc/
PRIVATE ${DEVICE_OS_DIR}/hal/inc/
PRIVATE ${DEVICE_OS_DIR}/hal/shared/
PRIVATE ${DEVICE_OS_DIR}/hal/src/stm32/
Expand Down
1 change: 1 addition & 0 deletions test/unit_tests/communication/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ target_compile_options( ${target_name}
# Set include path specific to target
target_include_directories( ${target_name}
PRIVATE ${THIRD_PARTY_DIR}/fakeit/fakeit/single_header/catch/
PRIVATE ${DEVICE_OS_DIR}/communication/inc/
PRIVATE ${DEVICE_OS_DIR}/communication/src/
PRIVATE ${DEVICE_OS_DIR}/hal/inc/
PRIVATE ${DEVICE_OS_DIR}/hal/shared/
Expand Down
2 changes: 1 addition & 1 deletion test/unit_tests/wiring/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ target_compile_options( ${target_name}

# Set include path specific to target
target_include_directories( ${target_name}
PRIVATE ${DEVICE_OS_DIR}/communication/src/
PRIVATE ${DEVICE_OS_DIR}/communication/inc/
PRIVATE ${DEVICE_OS_DIR}/hal/inc/
PRIVATE ${DEVICE_OS_DIR}/hal/shared/
PRIVATE ${DEVICE_OS_DIR}/services/inc/
Expand Down
2 changes: 1 addition & 1 deletion user/tests/unit/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ INCLUDE_DIRS += $(HAL)shared
INCLUDE_DIRS += $(HAL)inc
INCLUDE_DIRS += $(HAL)src/electron
INCLUDE_DIRS += $(HAL)src/gcc
INCLUDE_DIRS += $(COMMUNICATION)src
INCLUDE_DIRS += $(COMMUNICATION)inc
INCLUDE_DIRS += dynalib/inc
INCLUDE_DIRS += $(PLATFORM)shared/inc
INCLUDE_DIRS += $(PLATFORM)MCU/gcc/inc
Expand Down