1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 06:23:53 +01:00

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

boards/lobaro-lorabox: Remove auto init LED0
This commit is contained in:
Martine Lenders 2019-02-26 21:35:21 +01:00 committed by GitHub
commit 07260661bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 4 deletions

View File

@ -28,7 +28,6 @@ extern "C" {
* @name LED pin definitions and handlers
* @{
*/
#define AUTO_INIT_LED0
#define LED0_PORT GPIOA
#define LED0_PIN GPIO_PIN(PORT_A, 1)
#define LED0_MASK (1 << 1)

View File

@ -31,13 +31,11 @@ extern "C" {
*/
static const saul_gpio_params_t saul_gpio_params[] =
{
#ifdef AUTO_INIT_LED0
{
.name = "LED(green)",
.pin = LED0_PIN,
.mode = GPIO_OUT
},
#endif
}
};
#ifdef __cplusplus