40cd67eee6
Gregory Nutt has submitted the SGA and we can migrate the licenses to Apache. Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
99 lines
2.9 KiB
C
99 lines
2.9 KiB
C
/****************************************************************************
|
|
* boards/arm/kinetis/freedom-k28f/src/k28_userleds.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 "chip.h"
|
|
#include "kinetis.h"
|
|
#include "freedom-k28f.h"
|
|
|
|
#include <arch/board/board.h>
|
|
|
|
#ifndef CONFIG_ARCH_LEDS
|
|
|
|
/****************************************************************************
|
|
* Public Functions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Name: board_userled_initialize
|
|
****************************************************************************/
|
|
|
|
uint32_t board_userled_initialize(void)
|
|
{
|
|
kinetis_pinconfig(GPIO_LED_R);
|
|
kinetis_pinconfig(GPIO_LED_G);
|
|
kinetis_pinconfig(GPIO_LED_B);
|
|
return BOARD_NLEDS;
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: board_userled
|
|
****************************************************************************/
|
|
|
|
void board_userled(int led, bool ledon)
|
|
{
|
|
uint32_t ledcfg;
|
|
|
|
if (led == BOARD_LED_R)
|
|
{
|
|
ledcfg = GPIO_LED_R;
|
|
}
|
|
else if (led == BOARD_LED_G)
|
|
{
|
|
ledcfg = GPIO_LED_G;
|
|
}
|
|
else if (led == BOARD_LED_B)
|
|
{
|
|
ledcfg = GPIO_LED_B;
|
|
}
|
|
else
|
|
{
|
|
return;
|
|
}
|
|
|
|
kinetis_gpiowrite(ledcfg, ledon);
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: board_userled_all
|
|
****************************************************************************/
|
|
|
|
void board_userled_all(uint32_t ledset)
|
|
{
|
|
/* Low illuminates */
|
|
|
|
kinetis_gpiowrite(GPIO_LED_R, (ledset & BOARD_LED_R_BIT) != 0);
|
|
kinetis_gpiowrite(GPIO_LED_G, (ledset & BOARD_LED_G_BIT) != 0);
|
|
kinetis_gpiowrite(GPIO_LED_B, (ledset & BOARD_LED_B_BIT) != 0);
|
|
}
|
|
|
|
#endif /* !CONFIG_ARCH_LEDS */
|