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
7efdddb78c1315046205b1c1689c7420bdd6dbaf to 3f3095e95600f52d2fdaf030b8ac9514d79c010c
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
3f3095e95600f52d2fdaf030b8ac9514d79c010c
Select Git revision
Swap
Target
avn/swd/miosix-kernel
Select target project
avn/swd/miosix-kernel
emilio.corigliano/miosix-kernel
2 results
7efdddb78c1315046205b1c1689c7420bdd6dbaf
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
[gemini-gs] Added missing ethernet pin configurations
· 3f3095e9
Davide Mor
authored
1 year ago
3f3095e9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
miosix/arch/cortexM7_stm32f7/stm32f767zi_gemini_gs/interfaces-impl/bsp.cpp
+6
-0
6 additions, 0 deletions
...xM7_stm32f7/stm32f767zi_gemini_gs/interfaces-impl/bsp.cpp
with
6 additions
and
0 deletions
miosix/arch/cortexM7_stm32f7/stm32f767zi_gemini_gs/interfaces-impl/bsp.cpp
View file @
3f3095e9
...
...
@@ -275,6 +275,12 @@ void IRQbspInit() {
radio2
::
dio1
::
mode
(
Mode
::
INPUT
);
radio2
::
dio3
::
mode
(
Mode
::
INPUT
);
ethernet
::
cs
::
mode
(
Mode
::
OUTPUT
);
ethernet
::
cs
::
high
();
ethernet
::
nrst
::
mode
(
Mode
::
OUTPUT
);
ethernet
::
nrst
::
high
();
ethernet
::
intr
::
mode
(
Mode
::
INPUT
);
DefaultConsole
::
instance
().
IRQset
(
intrusive_ref_ptr
<
Device
>
(
new
STM32Serial
(
defaultSerial
,
defaultSerialSpeed
,
STM32Serial
::
NOFLOWCTRL
)));
}
...
...
This diff is collapsed.
Click to expand it.