1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2026-01-01 01:41:18 +01:00

tests/periph_gpio_exti: let build fail w/o GPIO

This commit is contained in:
Ludwig Ortmann 2014-10-16 19:06:45 +02:00
parent 7cea2f536e
commit 2cb8ea672a

View File

@ -24,9 +24,6 @@
#include "periph_conf.h"
#include "periph/gpio.h"
/* only compile this if at least one GPIO device is defined */
#if GPIO_NUMOF
#define ACTIVE_FLANK GPIO_RISING
#define PULL GPIO_NOPULL
@ -187,14 +184,3 @@ int main(void)
return 0;
}
#else
int main(void)
{
puts("No low-level GPIO device defined for this platform.");
return 0;
}
#endif /* GPIO_NUMOF */