Skip to content
Snippets Groups Projects
Unverified Commit 07260661 authored by Martine Lenders's avatar Martine Lenders Committed by GitHub
Browse files

Merge pull request #11060 from leandrolanzieri/pr/boards/lobaro-lorabox_remove_auto_init_led0

boards/lobaro-lorabox: Remove auto init LED0
parents dd1bad25 609db0c2
No related branches found
No related tags found
No related merge requests found
...@@ -28,7 +28,6 @@ extern "C" { ...@@ -28,7 +28,6 @@ extern "C" {
* @name LED pin definitions and handlers * @name LED pin definitions and handlers
* @{ * @{
*/ */
#define AUTO_INIT_LED0
#define LED0_PORT GPIOA #define LED0_PORT GPIOA
#define LED0_PIN GPIO_PIN(PORT_A, 1) #define LED0_PIN GPIO_PIN(PORT_A, 1)
#define LED0_MASK (1 << 1) #define LED0_MASK (1 << 1)
......
...@@ -31,13 +31,11 @@ extern "C" { ...@@ -31,13 +31,11 @@ extern "C" {
*/ */
static const saul_gpio_params_t saul_gpio_params[] = static const saul_gpio_params_t saul_gpio_params[] =
{ {
#ifdef AUTO_INIT_LED0
{ {
.name = "LED(green)", .name = "LED(green)",
.pin = LED0_PIN, .pin = LED0_PIN,
.mode = GPIO_OUT .mode = GPIO_OUT
}, }
#endif
}; };
#ifdef __cplusplus #ifdef __cplusplus
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment