diff --git a/conf/airframes/examples/setup_lisam2.xml b/conf/airframes/examples/setup_lisam2.xml index 8ba479f426..7e88353d61 100644 --- a/conf/airframes/examples/setup_lisam2.xml +++ b/conf/airframes/examples/setup_lisam2.xml @@ -9,7 +9,8 @@ - + + diff --git a/conf/airframes/fraser_lisa_m_rotorcraft.xml b/conf/airframes/fraser_lisa_m_rotorcraft.xml index dee91fbb4d..bfb0eec6dc 100644 --- a/conf/airframes/fraser_lisa_m_rotorcraft.xml +++ b/conf/airframes/fraser_lisa_m_rotorcraft.xml @@ -43,7 +43,8 @@ - + + diff --git a/conf/firmwares/lisa_test_progs.makefile b/conf/firmwares/lisa_test_progs.makefile index 3bec5740db..f06a93fcea 100644 --- a/conf/firmwares/lisa_test_progs.makefile +++ b/conf/firmwares/lisa_test_progs.makefile @@ -100,12 +100,22 @@ test_led.srcs += $(SRC_LISA)/test_led.c # # test sys_time # -test_sys_time.ARCHDIR = $(ARCH) -test_sys_time.CFLAGS = $(COMMON_TEST_CFLAGS) -test_sys_time.srcs = $(COMMON_TEST_SRCS) +ifeq ($(BOARD), lisa_m) +ifeq ($(BOARD_VERSION), 2.0) +LED_DEFINES = -DLED_BLUE=3 -DLED_RED=4 -DLED_GREEN=5 +endif +endif +LED_DEFINES ?= -DLED_RED=2 -DLED_GREEN=3 -test_sys_time.CFLAGS += -DLED_RED=2 -DLED_BLUE=3 -test_sys_time.srcs += $(SRC_AIRBORNE)/test/mcu_periph/test_sys_time.c +test_sys_time_timer.ARCHDIR = $(ARCH) +test_sys_time_timer.CFLAGS = $(COMMON_TEST_CFLAGS) $(LED_DEFINES) +test_sys_time_timer.srcs = $(COMMON_TEST_SRCS) +test_sys_time_timer.srcs += $(SRC_AIRBORNE)/test/mcu_periph/test_sys_time_timer.c + +test_sys_time_usleep.ARCHDIR = $(ARCH) +test_sys_time_usleep.CFLAGS = $(COMMON_TEST_CFLAGS) $(LED_DEFINES) +test_sys_time_usleep.srcs = $(COMMON_TEST_SRCS) +test_sys_time_usleep.srcs += $(SRC_AIRBORNE)/test/mcu_periph/test_sys_time_usleep.c diff --git a/sw/airborne/test/mcu_periph/test_sys_time.c b/sw/airborne/test/mcu_periph/test_sys_time_timer.c similarity index 57% rename from sw/airborne/test/mcu_periph/test_sys_time.c rename to sw/airborne/test/mcu_periph/test_sys_time_timer.c index 95147a13cc..2d7607544a 100644 --- a/sw/airborne/test/mcu_periph/test_sys_time.c +++ b/sw/airborne/test/mcu_periph/test_sys_time_timer.c @@ -1,3 +1,24 @@ +/* + * Copyright (C) 2012 The Paparazzi Team + * + * This file is part of paparazzi. + * + * paparazzi is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2, or (at your option) + * any later version. + * + * paparazzi is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with paparazzi; see the file COPYING. If not, write to + * the Free Software Foundation, 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + */ + #include "std.h" #include "mcu.h" #include "led.h" diff --git a/sw/airborne/test/mcu_periph/test_sys_time_usleep.c b/sw/airborne/test/mcu_periph/test_sys_time_usleep.c new file mode 100644 index 0000000000..6aafc0ae02 --- /dev/null +++ b/sw/airborne/test/mcu_periph/test_sys_time_usleep.c @@ -0,0 +1,71 @@ +/* + * Copyright (C) 2012 The Paparazzi Team + * + * This file is part of paparazzi. + * + * paparazzi is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2, or (at your option) + * any later version. + * + * paparazzi is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with paparazzi; see the file COPYING. If not, write to + * the Free Software Foundation, 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + */ + +#include "std.h" +#include "mcu.h" +#include "led.h" +#include "mcu_periph/sys_time.h" + +static inline void main_periodic_1(void); +static inline void main_periodic_15(void); +static inline void main_periodic_05(uint8_t id); + +int main(void) { + + mcu_init(); + sys_time_register_timer(0.5, main_periodic_05); + + while(1) { + /* sleep for 1s */ + sys_time_usleep(1000000); + main_periodic_1(); + + /* sleep for 0.5s */ + sys_time_usleep(500000); + main_periodic_15(); + } + + return 0; +} + +/* + * Called from main loop polling + */ +static inline void main_periodic_1(void) { +#ifdef LED_GREEN + LED_TOGGLE(LED_GREEN); +#endif +} + +static inline void main_periodic_15(void) { +#ifdef LED_BLUE + LED_TOGGLE(LED_BLUE); +#endif +} + +/* + * Called from the systime interrupt handler + */ +static inline void main_periodic_05(uint8_t id) { +#ifdef LED_RED + LED_TOGGLE(LED_RED); +#endif +}