Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:PCA9685_MAXCHAN
(Results
1 - 2
of
2
) sorted by relevance
/kernel/linux/linux-5.10/drivers/pwm/
H
A
D
pwm-pca9685.c
58
#define
PCA9685_MAXCHAN
0x10
macro
81
DECLARE_BITMAP(pwms_inuse,
PCA9685_MAXCHAN
+ 1);
96
if (pwm_idx >=
PCA9685_MAXCHAN
) {
in pca9685_pwm_test_and_set_inuse()
101
if (!bitmap_empty(pca->pwms_inuse,
PCA9685_MAXCHAN
)) {
in pca9685_pwm_test_and_set_inuse()
110
if (test_bit(
PCA9685_MAXCHAN
, pca->pwms_inuse)) {
in pca9685_pwm_test_and_set_inuse()
216
pca->gpio.ngpio =
PCA9685_MAXCHAN
;
in pca9685_pwm_gpio_probe()
287
if (pwm->hwpwm >=
PCA9685_MAXCHAN
)
in pca9685_pwm_config()
299
if (pwm->hwpwm >=
PCA9685_MAXCHAN
)
in pca9685_pwm_config()
306
if (pwm->hwpwm >=
PCA9685_MAXCHAN
)
in pca9685_pwm_config()
314
if (pwm->hwpwm >=
PCA9685_MAXCHAN
)
in pca9685_pwm_config()
[all...]
/kernel/linux/linux-6.6/drivers/pwm/
H
A
D
pwm-pca9685.c
57
#define
PCA9685_MAXCHAN
0x10
macro
73
#define REG_ON_H(C) ((C) >=
PCA9685_MAXCHAN
? PCA9685_ALL_LED_ON_H : LED_N_ON_H((C)))
74
#define REG_ON_L(C) ((C) >=
PCA9685_MAXCHAN
? PCA9685_ALL_LED_ON_L : LED_N_ON_L((C)))
75
#define REG_OFF_H(C) ((C) >=
PCA9685_MAXCHAN
? PCA9685_ALL_LED_OFF_H : LED_N_OFF_H((C)))
76
#define REG_OFF_L(C) ((C) >=
PCA9685_MAXCHAN
? PCA9685_ALL_LED_OFF_L : LED_N_OFF_L((C)))
82
DECLARE_BITMAP(pwms_enabled,
PCA9685_MAXCHAN
+ 1);
85
DECLARE_BITMAP(pwms_inuse,
PCA9685_MAXCHAN
+ 1);
98
if (bitmap_empty(pca->pwms_enabled,
PCA9685_MAXCHAN
+ 1))
in pca9685_prescaler_can_change()
101
if (bitmap_weight(pca->pwms_enabled,
PCA9685_MAXCHAN
+ 1) > 1)
in pca9685_prescaler_can_change()
152
if (pwm->state.usage_power && channel <
PCA9685_MAXCHAN
) {
in pca9685_pwm_set_duty()
[all...]
Completed in 2 milliseconds