Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Linux/drivers/leds/   (Open Source Betriebssystem Version 6.17.9©)  Datei vom 24.10.2025 mit Größe 2 kB image not shown  

Quelle  leds-expresswire.c   Sprache: C

 
// SPDX-License-Identifier: GPL-2.0-only
/*
 * Shared library for Kinetic's ExpressWire protocol.
 * This protocol works by pulsing the ExpressWire IC's control GPIO.
 * ktd2692 and ktd2801 are known to use this protocol.
 */


#include <linux/bits.h>
#include <linux/delay.h>
#include <linux/export.h>
#include <linux/gpio/consumer.h>
#include <linux/types.h>

#include <linux/leds-expresswire.h>

void expresswire_power_off(struct expresswire_common_props *props)
{
 gpiod_set_value_cansleep(props->ctrl_gpio, 0);
 usleep_range(props->timing.poweroff_us, props->timing.poweroff_us * 2);
}
EXPORT_SYMBOL_NS_GPL(expresswire_power_off, "EXPRESSWIRE");

void expresswire_enable(struct expresswire_common_props *props)
{
 gpiod_set_value(props->ctrl_gpio, 1);
 udelay(props->timing.detect_delay_us);
 gpiod_set_value(props->ctrl_gpio, 0);
 udelay(props->timing.detect_us);
 gpiod_set_value(props->ctrl_gpio, 1);
}
EXPORT_SYMBOL_NS_GPL(expresswire_enable, "EXPRESSWIRE");

void expresswire_start(struct expresswire_common_props *props)
{
 gpiod_set_value(props->ctrl_gpio, 1);
 udelay(props->timing.data_start_us);
}
EXPORT_SYMBOL_NS_GPL(expresswire_start, "EXPRESSWIRE");

void expresswire_end(struct expresswire_common_props *props)
{
 gpiod_set_value(props->ctrl_gpio, 0);
 udelay(props->timing.end_of_data_low_us);
 gpiod_set_value(props->ctrl_gpio, 1);
 udelay(props->timing.end_of_data_high_us);
}
EXPORT_SYMBOL_NS_GPL(expresswire_end, "EXPRESSWIRE");

void expresswire_set_bit(struct expresswire_common_props *props, bool bit)
{
 if (bit) {
  gpiod_set_value(props->ctrl_gpio, 0);
  udelay(props->timing.short_bitset_us);
  gpiod_set_value(props->ctrl_gpio, 1);
  udelay(props->timing.long_bitset_us);
 } else {
  gpiod_set_value(props->ctrl_gpio, 0);
  udelay(props->timing.long_bitset_us);
  gpiod_set_value(props->ctrl_gpio, 1);
  udelay(props->timing.short_bitset_us);
 }
}
EXPORT_SYMBOL_NS_GPL(expresswire_set_bit, "EXPRESSWIRE");

void expresswire_write_u8(struct expresswire_common_props *props, u8 val)
{
 expresswire_start(props);
 for (int i = 7; i >= 0; i--)
  expresswire_set_bit(props, val & BIT(i));
 expresswire_end(props);
}
EXPORT_SYMBOL_NS_GPL(expresswire_write_u8, "EXPRESSWIRE");

Messung V0.5
C=94 H=95 G=94

¤ Dauer der Verarbeitung: 0.2 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.