Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
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
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
cm-projects
RIOT
Commits
3f622d96
Commit
3f622d96
authored
9 years ago
by
Hauke Petersen
Browse files
Options
Downloads
Patches
Plain Diff
board/stm32f4discovery: added Arduino configuration
parent
ff799978
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
boards/stm32f4discovery/Makefile.features
+1
-0
1 addition, 0 deletions
boards/stm32f4discovery/Makefile.features
boards/stm32f4discovery/include/arduino_board.h
+46
-0
46 additions, 0 deletions
boards/stm32f4discovery/include/arduino_board.h
with
47 additions
and
0 deletions
boards/stm32f4discovery/Makefile.features
+
1
−
0
View file @
3f622d96
...
@@ -12,6 +12,7 @@ FEATURES_PROVIDED += periph_uart
...
@@ -12,6 +12,7 @@ FEATURES_PROVIDED += periph_uart
# Various other features (if any)
# Various other features (if any)
FEATURES_PROVIDED
+=
cpp
FEATURES_PROVIDED
+=
cpp
FEATURES_PROVIDED
+=
arduino
# The board MPU family (used for grouping by the CI system)
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP
=
cortex_m4
FEATURES_MCU_GROUP
=
cortex_m4
...
...
This diff is collapsed.
Click to expand it.
boards/stm32f4discovery/include/arduino_board.h
0 → 100644
+
46
−
0
View file @
3f622d96
/*
* Copyright (C) 2015 Freie Universität Berlin
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
/**
* @ingroup boards_stm32f4discovery
* @{
*
* @file
* @brief Board specific configuration for the Arduino API
*
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
*/
#ifndef ARDUINO_BOARD_H
#define ARDUINO_BOARD_H
#include
"periph/gpio.h"
#ifdef __cplusplus
extern
"C"
{
#endif
#define ARDUINO_LED (2)
static
const
gpio_t
arduino_pinmap
[]
=
{
GPIO_PIN
(
PORT_D
,
12
),
GPIO_PIN
(
PORT_D
,
13
),
GPIO_PIN
(
PORT_D
,
14
),
GPIO_PIN
(
PORT_D
,
15
),
GPIO_PIN
(
PORT_A
,
12
),
GPIO_PIN
(
PORT_A
,
15
),
GPIO_PIN
(
PORT_B
,
1
),
GPIO_PIN
(
PORT_B
,
2
),
};
#ifdef __cplusplus
}
#endif
#endif
/* ARDUINO_BOARD_H */
/** @} */
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