Skip to content
This repository has been archived by the owner on Dec 19, 2022. It is now read-only.

fix: use new port assignments (#65), standardise service name (#66) #67

Merged
merged 1 commit into from
May 26, 2021
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
6 changes: 3 additions & 3 deletions res/configuration.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[Service]
Host = "edgex-device-grove"
ServerBindAddr = '0.0.0.0'
Port = 49992
Port = 59992
ConnectRetries = 3
HealthCheck = ""
StartupMsg = "device Grove PI started"
Expand All @@ -12,11 +12,11 @@
[Clients]
[Clients.Data]
Host = "edgex-core-data"
Port = 48080
Port = 59880

[Clients.Metadata]
Host = "edgex-core-metadata"
Port = 48081
Port = 59881

[Device]
DataTransform = true
Expand Down
2 changes: 1 addition & 1 deletion src/c/device_grove.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ extern "C" {
#define GROVE_ROTARY_MAX_ANGLE 300
#define GROVE_ADC_REF 5

#define GROVE_SVC "Device-Grove"
#define GROVE_SVC "device-grove"

typedef enum
{
Expand Down