2014-02-09 22:56:20 +01:00
|
|
|
/****************************************************************************
|
2019-08-13 18:08:49 +02:00
|
|
|
* boards/arm/lpc17xx_40xx/olimex-lpc1766stk/src/lpc17_40_leds.c
|
2014-02-09 22:56:20 +01:00
|
|
|
*
|
2015-02-28 01:49:24 +01:00
|
|
|
* Copyright (C) 2010-2011, 2013, 2015 Gregory Nutt. All rights reserved.
|
2014-02-09 22:56:20 +01:00
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <debug.h>
|
|
|
|
|
2015-02-28 01:49:24 +01:00
|
|
|
#include <nuttx/board.h>
|
2014-02-09 22:56:20 +01:00
|
|
|
#include <arch/board/board.h>
|
|
|
|
|
|
|
|
#include "chip.h"
|
2020-05-01 03:20:29 +02:00
|
|
|
#include "arm_arch.h"
|
|
|
|
#include "arm_internal.h"
|
2014-02-09 22:56:20 +01:00
|
|
|
|
2019-07-11 18:50:00 +02:00
|
|
|
#include "lpc17_40_gpio.h"
|
2014-02-09 22:56:20 +01:00
|
|
|
|
|
|
|
#include "lpc1766stk.h"
|
|
|
|
|
|
|
|
/****************************************************************************
|
2015-02-28 01:49:24 +01:00
|
|
|
* Pre-processor Definitions
|
2014-02-09 22:56:20 +01:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/* Dump GPIO registers */
|
|
|
|
|
2016-06-15 22:12:19 +02:00
|
|
|
#ifdef CONFIG_DEBUG_LEDS_INFO
|
2019-07-11 18:50:00 +02:00
|
|
|
# define led_dumpgpio(m) lpc17_40_dumpgpio(LPC1766STK_LED1, m)
|
2014-02-09 22:56:20 +01:00
|
|
|
#else
|
|
|
|
# define led_dumpgpio(m)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef CONFIG_ARCH_LEDS
|
|
|
|
static bool g_uninitialized = true;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2015-11-01 19:45:58 +01:00
|
|
|
* Name: board_userled_initialize/board_autoled_initialize
|
2014-02-09 22:56:20 +01:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef CONFIG_ARCH_LEDS
|
2020-06-05 12:08:02 +02:00
|
|
|
uint32_t board_userled_initialize(void) /* Name when invoked externally */
|
2014-02-09 22:56:20 +01:00
|
|
|
#else
|
2019-07-11 18:50:00 +02:00
|
|
|
void board_autoled_initialize(void) /* Name when invoked via lpc17_40_boot.c */
|
2014-02-09 22:56:20 +01:00
|
|
|
#endif
|
|
|
|
{
|
|
|
|
/* Configure all LED GPIO lines */
|
|
|
|
|
2015-11-01 19:45:58 +01:00
|
|
|
led_dumpgpio("board_*led_initialize() Entry)");
|
2014-02-09 22:56:20 +01:00
|
|
|
|
2019-07-11 18:50:00 +02:00
|
|
|
lpc17_40_configgpio(LPC1766STK_LED1);
|
|
|
|
lpc17_40_configgpio(LPC1766STK_LED2);
|
2014-02-09 22:56:20 +01:00
|
|
|
|
2015-11-01 19:45:58 +01:00
|
|
|
led_dumpgpio("board_*led_initialize() Exit");
|
2020-06-05 12:08:02 +02:00
|
|
|
#ifndef CONFIG_ARCH_LEDS
|
|
|
|
return BOARD_NLEDS;
|
|
|
|
#endif
|
2014-02-09 22:56:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
2015-11-01 19:45:58 +01:00
|
|
|
* Name: board_userled
|
2014-02-09 22:56:20 +01:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef CONFIG_ARCH_LEDS
|
2015-11-01 19:45:58 +01:00
|
|
|
void board_userled(int led, bool ledon)
|
2014-02-09 22:56:20 +01:00
|
|
|
{
|
|
|
|
if (led == BOARD_LED1)
|
|
|
|
{
|
2019-07-11 18:50:00 +02:00
|
|
|
lpc17_40_gpiowrite(LPC1766STK_LED1, !ledon);
|
2014-02-09 22:56:20 +01:00
|
|
|
}
|
|
|
|
else if (led == BOARD_LED2)
|
|
|
|
{
|
2019-07-11 18:50:00 +02:00
|
|
|
lpc17_40_gpiowrite(LPC1766STK_LED2, !ledon);
|
2014-02-09 22:56:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
2015-11-01 19:45:58 +01:00
|
|
|
* Name: board_userled_all
|
2014-02-09 22:56:20 +01:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef CONFIG_ARCH_LEDS
|
2020-06-06 12:35:44 +02:00
|
|
|
void board_userled_all(uint32_t ledset)
|
2014-02-09 22:56:20 +01:00
|
|
|
{
|
2019-07-11 18:50:00 +02:00
|
|
|
lpc17_40_gpiowrite(LPC1766STK_LED1, (ledset & BOARD_LED1_BIT) == 0);
|
|
|
|
lpc17_40_gpiowrite(LPC1766STK_LED2, (ledset & BOARD_LED2_BIT) == 0);
|
2014-02-09 22:56:20 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
2015-11-01 16:07:36 +01:00
|
|
|
* Name: board_autoled_on
|
2014-02-09 22:56:20 +01:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef CONFIG_ARCH_LEDS
|
2015-11-01 16:07:36 +01:00
|
|
|
void board_autoled_on(int led)
|
2014-02-09 22:56:20 +01:00
|
|
|
{
|
|
|
|
switch (led)
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
case 0 : /* STARTED, HEAPALLOCATE, IRQSENABLED */
|
2019-07-11 18:50:00 +02:00
|
|
|
lpc17_40_gpiowrite(LPC1766STK_LED1, true);
|
|
|
|
lpc17_40_gpiowrite(LPC1766STK_LED2, true);
|
2014-02-09 22:56:20 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 1 : /* STACKCREATED */
|
2019-07-11 18:50:00 +02:00
|
|
|
lpc17_40_gpiowrite(LPC1766STK_LED1, false);
|
|
|
|
lpc17_40_gpiowrite(LPC1766STK_LED2, true);
|
2014-02-09 22:56:20 +01:00
|
|
|
g_uninitialized = false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2 : /* INIRQ, SIGNAL, ASSERTION, PANIC */
|
2019-07-11 18:50:00 +02:00
|
|
|
lpc17_40_gpiowrite(LPC1766STK_LED2, false);
|
2014-02-09 22:56:20 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 3 : /* IDLE */
|
2019-07-11 18:50:00 +02:00
|
|
|
lpc17_40_gpiowrite(LPC1766STK_LED1, true);
|
2014-02-09 22:56:20 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
2015-11-01 16:10:08 +01:00
|
|
|
* Name: board_autoled_off
|
2014-02-09 22:56:20 +01:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef CONFIG_ARCH_LEDS
|
2015-11-01 16:10:08 +01:00
|
|
|
void board_autoled_off(int led)
|
2014-02-09 22:56:20 +01:00
|
|
|
{
|
|
|
|
switch (led)
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
case 0 : /* STARTED, HEAPALLOCATE, IRQSENABLED */
|
|
|
|
case 1 : /* STACKCREATED */
|
2019-07-11 18:50:00 +02:00
|
|
|
lpc17_40_gpiowrite(LPC1766STK_LED1, true);
|
2014-02-09 22:56:20 +01:00
|
|
|
|
|
|
|
case 2 : /* INIRQ, SIGNAL, ASSERTION, PANIC */
|
2019-07-11 18:50:00 +02:00
|
|
|
lpc17_40_gpiowrite(LPC1766STK_LED2, true);
|
2014-02-09 22:56:20 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 3 : /* IDLE */
|
2019-07-11 18:50:00 +02:00
|
|
|
lpc17_40_gpiowrite(LPC1766STK_LED1, g_uninitialized);
|
2014-02-09 22:56:20 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|