Nut/OS  4.10.3
API Reference
LED

LED handler. More...

Collaboration diagram for LED:

Data Structures

struct  LEDEventT

Defines

#define LED_OFF   0
 LED action definitions.
#define LED_ON   1
 Switch LED on.
#define LED_FLIP   2
 Flip the LED state (toggle).
#define LED_BLINK   4
 Let the LED blink continuously.
#define LED_IS_ON   0
#define LED_IS_OFF   1

Functions

int InitLED (LEDEventT *led)
 Configures LED connection port.
void sys_led (void *arg)
 Thread to control blinking and flashing of all registered LEDs.
void NutSetLed (HANDLE ledh, uint_fast8_t fxin, uint32_t timOn, uint32_t timOff)
 sets state of a LED
int NutRegisterLed (HANDLE *ledh, int bank, int pin)
 Register an LED for handling.

Variables

LEDEventTfirst_led = NULL
HANDLE led_tmr = NULL
HANDLE led_evt = NULL

Detailed Description

LED handler.


Define Documentation

#define LED_OFF   0

LED action definitions.

The LED modifies the LED according to these tokens when calling NutSetLed().

Switch LED off.

The LED will be switched off immediately. If a timOff parameter of not 0 is given, the LED will be switched off for the given time in ms an then return to on state.

Definition at line 73 of file led.h.

#define LED_ON   1

Switch LED on.

The LED will be switched on immediately. If a timOff parameter of not 0 is given, the LED will be switched on for the given time in ms an then return off state.

Definition at line 82 of file led.h.

#define LED_FLIP   2

Flip the LED state (toggle).

Toggle the LED from its actual state the the other. Timing parameters are not supported.

Definition at line 90 of file led.h.

Referenced by NutSetLed(), and sys_led().

#define LED_BLINK   4

Let the LED blink continuously.

The parameter timOn specifies the on-time and parameter timOff the off-time. Together with higher timer settings a software dimming can as well be established as a simple blink effect or short / long flash effects. Be adviced that high timer rates can decrease overall system speed. Therefore you have to modify the timer rate in the led.c directly. Standard setting is 10ms cycle time.

Definition at line 102 of file led.h.

Referenced by NutSetLed(), and sys_led().

#define LED_IS_ON   0

Definition at line 89 of file led.c.

Referenced by NutSetLed().

#define LED_IS_OFF   1

Definition at line 90 of file led.c.

Referenced by NutRegisterLed(), and NutSetLed().


Function Documentation

int InitLED ( LEDEventT led)

Configures LED connection port.

This is an internal function called by NutRegisterLED().

Definition at line 117 of file led.c.

References LEDEventT::bank, GPIO_CFG_OUTPUT, GpioPinConfigSet(), GpioPinSetHigh(), IOExpPinConfigSet(), IOExpSetBitHigh(), IOXP_PORT0, and LEDEventT::pin.

Referenced by NutRegisterLed().

Here is the call graph for this function:

void sys_led ( void *  arg)

Thread to control blinking and flashing of all registered LEDs.

This is the internal LED handler thread. It si blocked by default, waiting for a timer event to run. The thread handles LED timing through reverse calculation of the actual timeout. This uses mor system time, but makes blinking effects more smooth even in situation where high priority tasks are delaying the timer interrupt or this threadf to be executed.

Parameters:
argHandle of an event queue.

Definition at line 165 of file led.c.

References first_led, LEDEventT::fx, LED_BLINK, LED_FLIP, LED_OFF, LED_ON, LEDEventT::next, NUT_WAIT_INFINITE, NUTASSERT, NutEventWait(), NutGetMillis(), NutSetLed(), NutThreadSetPriority(), LEDEventT::state, LEDEventT::tim, LEDEventT::timOff, and LEDEventT::timOn.

Referenced by NutRegisterLed().

Here is the call graph for this function:

void NutSetLed ( HANDLE  ledh,
uint_fast8_t  fxin,
uint32_t  timOn,
uint32_t  timOff 
)

sets state of a LED

Parameters:
ledhThe handle to the LED that should be controlled.
fxinEffect to set
timOnDuration of the LED's on-time of the effect given.
timOffDuration of the LED's off time of the effect given.
Note:
Timeout is limited to the granularity of the system timer.

Definition at line 228 of file led.c.

References LEDEventT::bank, LEDEventT::fx, GpioPinSet(), IOExpSetBit(), IOXP_PORT0, LED_BLINK, LED_FLIP, LED_IS_OFF, LED_IS_ON, LED_OFF, LED_ON, NUTASSERT, LEDEventT::pin, LEDEventT::state, LEDEventT::tim, LEDEventT::timOff, and LEDEventT::timOn.

Referenced by sys_led().

Here is the call graph for this function:

int NutRegisterLed ( HANDLE ledh,
int  bank,
int  pin 
)

Register an LED for handling.

Register a LED for beeing controlled by this driver. LED can then be set by NutSetLed() by passing over the LEDs handler to that function. Also LEDs connectd through external (I2C / SPI) port chips can be driven, if the control for that chips is enabled in Nutconf. The desired GPIO pin (internal or external) should be configured correct before you can register a LED on it.

Parameters:
ledhPointer to a HANDLE for accessing the LED after registering.
bankPort of CPU or IO-Expander the LED is connected to.
pinPin at the given port.
Returns:
-1 if registering failed, else 0.

Definition at line 288 of file led.c.

References LEDEventT::bank, first_led, InitLED(), led_evt, LED_IS_OFF, led_tmr, malloc(), memset(), LEDEventT::next, NutEnterCritical, NutExitCritical, NutThreadCreate(), NutTimerStart(), LEDEventT::pin, LEDEventT::state, and sys_led().

Here is the call graph for this function:


Variable Documentation

Definition at line 106 of file led.c.

Referenced by NutRegisterLed(), and sys_led().

HANDLE led_tmr = NULL

Definition at line 109 of file led.c.

Referenced by NutRegisterLed().

HANDLE led_evt = NULL

Definition at line 110 of file led.c.

Referenced by NutRegisterLed().