BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mangoh-drivers
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
mangoh-drivers
Commits
2031a4c8
Commit
2031a4c8
authored
Apr 04, 2019
by
David Frey
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
allow for use of hardcoded OWM API key if cfg tree fails
parent
f583b83a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
owmAmbientTemperature.c
...herMapAmbientTemperatureComponent/owmAmbientTemperature.c
+5
-5
No files found.
apps/OpenWeatherMapAmbientTemperature/openWeatherMapAmbientTemperatureComponent/owmAmbientTemperature.c
View file @
2031a4c8
...
...
@@ -116,11 +116,11 @@ static void DcsStateHandler
COMPONENT_INIT
{
const
le_result_t
cfgRes
=
le_cfg_QuickGetString
(
"/ApiKey"
,
ApiKey
,
sizeof
(
ApiKey
),
""
);
LE_FATAL_IF
(
cfgRes
!=
LE_OK
||
ApiKey
[
0
]
==
'\0'
,
"Failed to read OpenWeatherMap API Key from config tree"
);
const
char
*
defaultOpenWeatherMapKey
=
""
;
LE_ASSERT_OK
(
le_cfg_QuickGetString
(
"/ApiKey"
,
ApiKey
,
sizeof
(
ApiKey
),
defaultOpenWeatherMapKey
));
LE_FATAL_IF
(
ApiKey
[
0
]
==
'\0'
,
"No valid API key was provided"
);
LE_INFO
(
"Using OpenWeatherMap key:
\"
%s
\"
"
,
ApiKey
);
LastResult
.
lock
=
le_mutex_CreateNonRecursive
(
"owm LastResult"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment