Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
Firmware
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
Package Registry
Model registry
Operate
Environments
Terraform modules
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alberto Ruiz Garcia
Firmware
Commits
1a007c13
Commit
1a007c13
authored
6 years ago
by
David Sidrane
Committed by
Daniel Agar
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
mindpx-v2:Add On board reset
parent
e0b73146
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/drivers/boards/mindpx-v2/board_config.h
+4
-0
4 additions, 0 deletions
src/drivers/boards/mindpx-v2/board_config.h
src/drivers/boards/mindpx-v2/init.c
+46
-18
46 additions, 18 deletions
src/drivers/boards/mindpx-v2/init.c
with
50 additions
and
18 deletions
src/drivers/boards/mindpx-v2/board_config.h
+
4
−
0
View file @
1a007c13
...
...
@@ -334,6 +334,10 @@
#define BOARD_DMA_ALLOC_POOL_SIZE 5120
/* This board provides the board_on_reset interface */
#define BOARD_HAS_ON_RESET 1
__BEGIN_DECLS
/****************************************************************************************************
...
...
This diff is collapsed.
Click to expand it.
src/drivers/boards/mindpx-v2/init.c
+
46
−
18
View file @
1a007c13
...
...
@@ -118,6 +118,39 @@ __END_DECLS
/****************************************************************************
* Protected Functions
****************************************************************************/
/************************************************************************************
* Name: board_on_reset
*
* Description:
* Optionally provided function called on entry to board_system_reset
* It should perform any house keeping prior to the rest.
*
* status - 1 if resetting to boot loader
* 0 if just resetting
*
************************************************************************************/
__EXPORT
void
board_on_reset
(
int
status
)
{
/* configure the GPIO pins to outputs and keep them low */
stm32_configgpio
(
GPIO_GPIO0_OUTPUT
);
stm32_configgpio
(
GPIO_GPIO1_OUTPUT
);
stm32_configgpio
(
GPIO_GPIO2_OUTPUT
);
stm32_configgpio
(
GPIO_GPIO3_OUTPUT
);
stm32_configgpio
(
GPIO_GPIO4_OUTPUT
);
stm32_configgpio
(
GPIO_GPIO5_OUTPUT
);
stm32_configgpio
(
GPIO_GPIO6_OUTPUT
);
stm32_configgpio
(
GPIO_GPIO7_OUTPUT
);
/**
* On resets invoked from system (not boot) insure we establish a low
* output state (discharge the pins) on PWM pins before they become inputs.
*/
if
(
status
>=
0
)
{
up_mdelay
(
400
);
}
}
/****************************************************************************
* Public Functions
****************************************************************************/
...
...
@@ -134,34 +167,29 @@ __END_DECLS
__EXPORT
void
stm32_boardinitialize
(
void
)
{
// Reset all PWM to Low outputs.
board_on_reset
(
-
1
);
/* configure LEDs */
board_autoled_initialize
();
/* configure ADC pins */
px4_arch
_configgpio
(
GPIO_ADC1_IN4
);
/* VDD_5V_SENS */
px4_arch
_configgpio
(
GPIO_ADC1_IN10
);
/* BATT_CURRENT_SENS */
px4_arch
_configgpio
(
GPIO_ADC1_IN12
);
/* BATT_VOLTAGE_SENS */
px4_arch
_configgpio
(
GPIO_ADC1_IN11
);
/* RSSI analog in */
px4_arch
_configgpio
(
GPIO_ADC1_IN13
);
/* FMU_AUX_ADC_1 */
px4_arch
_configgpio
(
GPIO_ADC1_IN14
);
/* FMU_AUX_ADC_2 */
px4_arch
_configgpio
(
GPIO_ADC1_IN15
);
/* PRESSURE_SENS */
stm32
_configgpio
(
GPIO_ADC1_IN4
);
/* VDD_5V_SENS */
stm32
_configgpio
(
GPIO_ADC1_IN10
);
/* BATT_CURRENT_SENS */
stm32
_configgpio
(
GPIO_ADC1_IN12
);
/* BATT_VOLTAGE_SENS */
stm32
_configgpio
(
GPIO_ADC1_IN11
);
/* RSSI analog in */
stm32
_configgpio
(
GPIO_ADC1_IN13
);
/* FMU_AUX_ADC_1 */
stm32
_configgpio
(
GPIO_ADC1_IN14
);
/* FMU_AUX_ADC_2 */
stm32
_configgpio
(
GPIO_ADC1_IN15
);
/* PRESSURE_SENS */
/* configure power supply control/sense pins */
px4_arch
_configgpio
(
GPIO_SBUS_INV
);
px4_arch
_configgpio
(
GPIO_FRSKY_INV
);
stm32
_configgpio
(
GPIO_SBUS_INV
);
stm32
_configgpio
(
GPIO_FRSKY_INV
);
/* configure the GPIO pins to outputs and keep them low */
px4_arch_configgpio
(
GPIO_GPIO0_OUTPUT
);
px4_arch_configgpio
(
GPIO_GPIO1_OUTPUT
);
px4_arch_configgpio
(
GPIO_GPIO2_OUTPUT
);
px4_arch_configgpio
(
GPIO_GPIO3_OUTPUT
);
px4_arch_configgpio
(
GPIO_GPIO4_OUTPUT
);
px4_arch_configgpio
(
GPIO_GPIO5_OUTPUT
);
px4_arch_configgpio
(
GPIO_GPIO6_OUTPUT
);
px4_arch_configgpio
(
GPIO_GPIO7_OUTPUT
);
/* configure SPI interfaces */
...
...
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