Skip to content
Snippets Groups Projects
Commit 250fce16 authored by Francisco Acosta's avatar Francisco Acosta Committed by GitHub
Browse files

Merge pull request #7852 from kYc0o/fix_servo_var

tests/driver_servo/main.c: fix var len
parents 67179e62 1c8bb804
No related branches found
No related tags found
No related merge requests found
...@@ -53,7 +53,7 @@ static servo_t servo; ...@@ -53,7 +53,7 @@ static servo_t servo;
int main(void) int main(void)
{ {
int res; int res;
int pos = (STEP_LOWER_BOUND + STEP_UPPER_BOUND) / 2; unsigned int pos = (STEP_LOWER_BOUND + STEP_UPPER_BOUND) / 2;
int step = STEP; int step = STEP;
puts("\nRIOT RC servo test"); puts("\nRIOT RC servo test");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment