Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Kestrel Collaboration
Kestrel Firmware
Zephyr Firmware
Commits
35be6f48
Commit
35be6f48
authored
3 years ago
by
Raptor Engineering Development Team
Browse files
Options
Download
Email Patches
Plain Diff
Minor cleanup of build warnings
parent
3d8d9147
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
kestrel/src/webportal.c
kestrel/src/webportal.c
+2
-2
No files found.
kestrel/src/webportal.c
View file @
35be6f48
...
...
@@ -179,8 +179,8 @@ int host_status_handler(struct mg_connection *conn, void *cbdata)
// Get status
#ifdef SIMPLEPWM_BASE
for
(
i
=
0
;
i
<
4
;
i
++
)
{
pwm_values
[
i
]
=
get_pwm_value
(
SIMPLEPWM_BASE
,
i
);
tach_values
[
i
]
=
get_tach_value
(
SIMPLEPWM_BASE
,
i
);
pwm_values
[
i
]
=
get_pwm_value
(
(
uint8_t
*
)
SIMPLEPWM_BASE
,
i
);
tach_values
[
i
]
=
get_tach_value
(
(
uint8_t
*
)
SIMPLEPWM_BASE
,
i
);
}
#endif
...
...
This diff is collapsed.
Click to expand it.
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