1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

boards/lobaro-lorabox: Remove auto init LED0

This commit is contained in:
Leandro Lanzieri 2019-02-25 13:43:50 +01:00
parent 7e0891ebe5
commit 609db0c2f6
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