-
Notifications
You must be signed in to change notification settings - Fork 179
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
[config] Remove simpleini as submodule #1806
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,6 @@ set(ecal_submodule_dependencies | |
Protobuf | ||
qwt | ||
recycle | ||
simpleini | ||
spdlog | ||
tclap | ||
tcp_pubsub | ||
|
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# --------------------------------------------- | ||
# ecaltime-linuxptp Settings | ||
# --------------------------------------------- | ||
# | ||
# device = /dev/ptp0 The device can be any ptp clock. | ||
# Alternatively, you can use: | ||
# - CLOCK_MONOTONIC (a steady clock with undefined epoche) | ||
# - CLOCK_REALTIME (the current system time) | ||
# - CLOCK_TAI (Like CLOCK_REALTIME but in International Atomic Time) | ||
# | ||
# --------------------------------------------- | ||
linuxptp: | ||
device: "/dev/ptp0" |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -271,9 +271,7 @@ namespace eCAL | |
InitFromFile(g_default_ini_file); | ||
} | ||
|
||
Configuration::Configuration() | ||
{ | ||
} | ||
Configuration::Configuration() = default; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Seems like an unrelated change |
||
|
||
std::string Configuration::GetYamlFilePath() | ||
{ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ namespace eCAL | |
attributes.network_enabled = reg_config_.network_enabled; | ||
attributes.loopback = reg_config_.loopback; | ||
attributes.drop_out_of_order_messages = sub_config_.drop_out_of_order_messages; | ||
attributes.registation_timeout_ms = reg_config_.registration_timeout; | ||
attributes.registration_timeout_ms = reg_config_.registration_timeout; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Seems like an unrelated change |
||
attributes.topic_name = topic_name_; | ||
attributes.host_name = Process::GetHostName(); | ||
attributes.host_group_name = Process::GetHostGroupName(); | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,7 +59,7 @@ namespace eCAL | |
bool network_enabled; | ||
bool drop_out_of_order_messages; | ||
bool loopback; | ||
unsigned int registation_timeout_ms; | ||
unsigned int registration_timeout_ms; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Seems like an unrelated change |
||
|
||
SUDPAttributes udp; | ||
STCPAttributes tcp; | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ namespace eCAL | |
SHM::SAttributes attributes; | ||
|
||
attributes.process_id = attr_.process_id; | ||
attributes.registration_timeout_ms = attr_.registation_timeout_ms; | ||
attributes.registration_timeout_ms = attr_.registration_timeout_ms; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Seems like an unrelated change |
||
|
||
return attributes; | ||
} | ||
|
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Peguen why did you remove this line? It seems unrelated.