-
-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[NMEA2K]: Altered value change detection to ignore timestamp
Fixed every NMEA2K message triggering a callback/event because the timestamp was being considered as something that changed.
- Loading branch information
Showing
4 changed files
with
18 additions
and
12 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 |
---|---|---|
@@ -1,16 +1,19 @@ | ||
cmake_minimum_required(VERSION 3.16) | ||
project(fast_packet_protocol_example) | ||
|
||
set(CMAKE_CXX_STANDARD 14) | ||
set(CMAKE_CXX_STANDARD_REQUIRED ON) | ||
|
||
if(NOT BUILD_EXAMPLES) | ||
find_package(isobus REQUIRED) | ||
endif() | ||
find_package(Threads REQUIRED) | ||
|
||
add_executable(NMEA2KFastPacketTarget main.cpp) | ||
|
||
set_target_properties( | ||
NMEA2KFastPacketTarget | ||
PROPERTIES CXX_STANDARD 14 | ||
CXX_EXTENSIONS OFF | ||
CXX_STANDARD_REQUIRED ON) | ||
|
||
target_link_libraries( | ||
NMEA2KFastPacketTarget PRIVATE isobus::Isobus isobus::HardwareIntegration | ||
Threads::Threads isobus::Utility) |
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,16 +1,19 @@ | ||
cmake_minimum_required(VERSION 3.16) | ||
project(nmea2000_generator_example) | ||
|
||
set(CMAKE_CXX_STANDARD 14) | ||
set(CMAKE_CXX_STANDARD_REQUIRED ON) | ||
|
||
if(NOT BUILD_EXAMPLES) | ||
find_package(isobus REQUIRED) | ||
endif() | ||
find_package(Threads REQUIRED) | ||
|
||
add_executable(NMEA2KGeneratorTarget main.cpp) | ||
|
||
set_target_properties( | ||
NMEA2KGeneratorTarget | ||
PROPERTIES CXX_STANDARD 14 | ||
CXX_EXTENSIONS OFF | ||
CXX_STANDARD_REQUIRED ON) | ||
|
||
target_link_libraries( | ||
NMEA2KGeneratorTarget PRIVATE isobus::Isobus isobus::HardwareIntegration | ||
Threads::Threads isobus::Utility) |
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
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