| /**************************************************************************** |
| * boards/arm/samv7/same70-qmtech/src/sam_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. |
| * |
| ****************************************************************************/ |
| |
| /* LEDs |
| * |
| * A single LED is available driven by PC8. |
| * |
| * These LEDs are not used by the board port unless CONFIG_ARCH_LEDS is |
| * defined. In that case, the usage by the board port is defined in |
| * include/board.h and src/sam_autoleds.c. The LEDs are used to encode |
| * OS-related events as follows: |
| * |
| * ------------------- ----------------------- ------ |
| * SYMBOL Meaning LED |
| * ------------------- ----------------------- ------ |
| * LED_STARTED NuttX has been started OFF |
| * LED_HEAPALLOCATE Heap has been allocated OFF |
| * LED_IRQSENABLED Interrupts enabled OFF |
| * LED_STACKCREATED Idle stack created ON |
| * LED_INIRQ In an interrupt N/C |
| * LED_SIGNAL In a signal handler N/C |
| * LED_ASSERTION An assertion failed N/C |
| * LED_PANIC The system has crashed FLASH |
| * |
| * Thus is LED is statically on, NuttX has successfully booted and is, |
| * apparently, running normally. If LED is flashing at approximately |
| * 2Hz, then a fatal error has been detected and the system has halted. |
| */ |
| |
| /**************************************************************************** |
| * Included Files |
| ****************************************************************************/ |
| |
| #include <nuttx/config.h> |
| |
| #include <stdint.h> |
| #include <stdbool.h> |
| #include <assert.h> |
| #include <debug.h> |
| |
| #include <nuttx/board.h> |
| #include <arch/board/board.h> |
| |
| #include "sam_gpio.h" |
| #include "same70-qmtech.h" |
| |
| #ifdef CONFIG_ARCH_LEDS |
| |
| /**************************************************************************** |
| * Public Functions |
| ****************************************************************************/ |
| |
| /**************************************************************************** |
| * Name: board_autoled_initialize |
| ****************************************************************************/ |
| |
| void board_autoled_initialize(void) |
| { |
| /* Configure LED PIOs for output */ |
| |
| sam_configgpio(GPIO_LED0); |
| } |
| |
| /**************************************************************************** |
| * Name: board_autoled_on |
| ****************************************************************************/ |
| |
| void board_autoled_on(int led) |
| { |
| if (led == 1 || led == 3) |
| { |
| sam_gpiowrite(GPIO_LED0, false); /* Low illuminates */ |
| } |
| } |
| |
| /**************************************************************************** |
| * Name: board_autoled_off |
| ****************************************************************************/ |
| |
| void board_autoled_off(int led) |
| { |
| if (led == 3) |
| { |
| sam_gpiowrite(GPIO_LED0, true); /* High extinguishes */ |
| } |
| } |
| |
| #endif /* CONFIG_ARCH_LEDS */ |