Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Miosix Kernel
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
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
Avionics
Software Development
Miosix Kernel
Compare revisions
ed0ed118e979bee276efa0e19af295dc53fc62d1 to f1665f63038e515ffaeb3d29afa769d7ab6a906d
Project 'elc/miosix-kernel' was moved to 'avn/swd/miosix-kernel'. Please update any links and bookmarks that may still have the old path.
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
avn/swd/miosix-kernel
Select target project
No results found
f1665f63038e515ffaeb3d29afa769d7ab6a906d
Select Git revision
Swap
Target
avn/swd/miosix-kernel
Select target project
avn/swd/miosix-kernel
emilio.corigliano/miosix-kernel
2 results
ed0ed118e979bee276efa0e19af295dc53fc62d1
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
[tortellino] Servo and HBridge pins set to alternate function
· f1665f63
Luca Conterio
authored
5 years ago
f1665f63
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
miosix/arch/cortexM4_stm32f4/stm32f407vg_skyward_tortellino/interfaces-impl/bsp.cpp
+4
-3
4 additions, 3 deletions
...f4/stm32f407vg_skyward_tortellino/interfaces-impl/bsp.cpp
with
4 additions
and
3 deletions
miosix/arch/cortexM4_stm32f4/stm32f407vg_skyward_tortellino/interfaces-impl/bsp.cpp
View file @
f1665f63
...
...
@@ -111,12 +111,13 @@ void IRQbspInit()
using
namespace
actuators
;
hbridge
::
is
::
mode
(
Mode
::
INPUT
);
hbridge
::
in
::
mode
(
Mode
::
OUTPUT
);
hbridge
::
in
::
low
(
);
hbridge
::
in
::
mode
(
Mode
::
ALTERNATE
);
hbridge
::
in
::
alternateFunction
(
2
);
hbridge
::
inh
::
mode
(
Mode
::
OUTPUT
);
hbridge
::
inh
::
low
();
servo
::
in
::
mode
(
Mode
::
OUTPUT
);
servo
::
in
::
mode
(
Mode
::
ALTERNATE
);
servo
::
in
::
alternateFunction
(
3
);
servo
::
in
::
low
();
using
namespace
misc
;
...
...
This diff is collapsed.
Click to expand it.