144 lines
3.9 KiB
C
144 lines
3.9 KiB
C
/****************************************************************************
|
|
* boards/arm/eoss3/quickfeather/src/eoss3_autoleds.c
|
|
*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
* this work for additional information regarding copyright ownership. The
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance with the
|
|
* License. You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
* License for the specific language governing permissions and limitations
|
|
* under the License.
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Included Files
|
|
****************************************************************************/
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#include <debug.h>
|
|
|
|
#include <nuttx/board.h>
|
|
#include <arch/board/board.h>
|
|
|
|
#include "chip.h"
|
|
#include "arm_arch.h"
|
|
#include "arm_internal.h"
|
|
|
|
#ifdef CONFIG_ARCH_LEDS
|
|
|
|
/****************************************************************************
|
|
* Pre-processor Definitions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Private Data
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Private Functions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Public Functions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Name: eoss3_autoled_initialize
|
|
*
|
|
* Description:
|
|
* Initialize NuttX-controlled LED logic
|
|
*
|
|
* Input Parameters:
|
|
* None
|
|
*
|
|
* Returned Value:
|
|
* None
|
|
*
|
|
****************************************************************************/
|
|
|
|
void board_autoled_initialize(void)
|
|
{
|
|
/* Configure LED GPIO for output */
|
|
|
|
eoss3_configgpio(GPIO_LED_B);
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: board_autoled_on
|
|
*
|
|
* Description:
|
|
* Turn on the "logical" LED state
|
|
*
|
|
* Input Parameters:
|
|
* led - Identifies the "logical" LED state (see definitions in
|
|
* include/board.h)
|
|
*
|
|
* Returned Value:
|
|
* None
|
|
*
|
|
****************************************************************************/
|
|
|
|
void board_autoled_on(int led)
|
|
{
|
|
bool ledon = true;
|
|
|
|
switch (led)
|
|
{
|
|
case 0: /* LED Off */
|
|
ledon = false;
|
|
break;
|
|
|
|
case 2: /* LED No change */
|
|
return;
|
|
|
|
case 1: /* LED On */
|
|
case 3: /* LED On */
|
|
break;
|
|
}
|
|
|
|
eoss3_gpiowrite(GPIO_LED_B, ledon); /* High illuminates */
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: board_autoled_off
|
|
*
|
|
* Description:
|
|
* Turn off the "logical" LED state
|
|
*
|
|
* Input Parameters:
|
|
* led - Identifies the "logical" LED state (see definitions in
|
|
* include/board.h)
|
|
*
|
|
* Returned Value:
|
|
* None
|
|
*
|
|
****************************************************************************/
|
|
|
|
void board_autoled_off(int led)
|
|
{
|
|
switch (led)
|
|
{
|
|
case 0: /* LED Off */
|
|
case 1: /* LED Off */
|
|
case 3: /* LED Off */
|
|
break;
|
|
|
|
case 2: /* LED No change */
|
|
return;
|
|
}
|
|
|
|
eoss3_gpiowrite(GPIO_LED_B, false); /* High illuminates */
|
|
}
|
|
|
|
#endif /* CONFIG_ARCH_LEDS */
|