Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
stm32_libraries
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
tools
stm32_libraries
Merge requests
!11
Moved the darwin math and kinematics modules to the darwin firmware repo.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Moved the darwin math and kinematics modules to the darwin firmware repo.
darwin_libs
into
master
Overview
0
Commits
1
Pipelines
0
Changes
11
Merged
Sergi Hernandez
requested to merge
darwin_libs
into
master
5 years ago
Overview
0
Commits
1
Pipelines
0
Changes
11
Expand
Solved some bugs in the EEPROM data structures.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
74f569a0
1 commit,
5 years ago
11 files
+
35
−
440
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
11
Search (e.g. *.vue) (Ctrl+P)
dynamixel_manager/include/modules/old/darwin_kinematics.h deleted
100755 → 0
+
0
−
24
Options
#ifndef _DARWIN_KINEMATICS_H
#define _DARWIN_KINEMATICS_H
#ifdef __cplusplus
extern
"C"
{
#endif
#include
"stm32f1xx.h"
#define DARWIN_PELVIS_LENGTH 29.0 //mm
#define DARWIN_LEG_SIDE_OFFSET 37.0 //mm
#define DARWIN_THIGH_LENGTH 93.0 //mm
#define DARWIN_CALF_LENGTH 93.0 //mm
#define DARWIN_ANKLE_LENGTH 33.5 //mm
#define DARWIN_LEG_LENGTH (DARWIN_THIGH_LENGTH + DARWIN_CALF_LENGTH + DARWIN_ANKLE_LENGTH) //mm (THIGH_LENGTH + CALF_LENGTH + ANKLE_LENGTH)
// public functions
uint8_t
darwin_leg_ik
(
float
*
out
,
float
x
,
float
y
,
float
z
,
float
a
,
float
b
,
float
c
);
#ifdef __cplusplus
}
#endif
#endif
Loading