Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
bioloid_stm32_fw
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
humanoides
bioloid_stm32_fw
Commits
4426c4ba
Commit
4426c4ba
authored
9 years ago
by
Sergi Hernandez
Browse files
Options
Downloads
Patches
Plain Diff
Solved problems with the generation and execution of actions files in the bioloid robot.
parent
a0da87d8
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/action.c
+1
-1
1 addition, 1 deletion
src/action.c
src/motion_pages.c
+217
-217
217 additions, 217 deletions
src/motion_pages.c
with
218 additions
and
218 deletions
src/action.c
+
1
−
1
View file @
4426c4ba
...
...
@@ -123,7 +123,7 @@ void action_load_next_step(void)
}
}
// compute trajectory
action_pause_time
=
((
action_current_page
.
steps
[
action_current_step_index
].
pause
<<
14
)
/
action_current_page
.
header
.
speed
);
action_pause_time
=
((
action_current_page
.
steps
[
action_current_step_index
].
pause
<<
14
)
*
action_current_page
.
header
.
speed
);
action_step_time
=
((
action_current_page
.
steps
[
action_current_step_index
].
time
<<
14
)
/
action_current_page
.
header
.
speed
);
if
(
action_step_time
<
action_period
)
action_step_time
=
action_period
;
// 0.078 in 16|16 format
...
...
This diff is collapsed.
Click to expand it.
src/motion_pages.c
+
217
−
217
View file @
4426c4ba
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment