/Zephyr-latest/soc/espressif/esp32c2/ |
D | soc.h | 34 extern int esp_rom_gpio_matrix_in(uint32_t gpio, uint32_t signal_index, bool inverted); 50 bool inverted);
|
/Zephyr-latest/soc/espressif/esp32c3/ |
D | soc.h | 34 extern int esp_rom_gpio_matrix_in(uint32_t gpio, uint32_t signal_index, bool inverted); 50 bool inverted);
|
/Zephyr-latest/drivers/pwm/ |
D | pwm_sam0_tc.c | 84 bool inverted; in pwm_sam0_set_cycles() local 98 inverted = ((regs->COUNT8.DRVCTRL.vec.INVEN & invert_mask) != 0); in pwm_sam0_set_cycles() 103 if (invert != inverted) { in pwm_sam0_set_cycles() 112 inverted = ((regs->COUNT16.DRVCTRL.vec.INVEN & invert_mask) != 0); in pwm_sam0_set_cycles() 117 if (invert != inverted) { in pwm_sam0_set_cycles()
|
D | pwm_nrfx.c | 59 #define PWM_NRFX_CH_VALUE(compare_value, inverted) \ argument 60 (compare_value | (inverted ? 0 : PWM_NRFX_CH_POLARITY_MASK)) 214 bool inverted = (flags & PWM_POLARITY_INVERTED); local 251 seq_values_ptr_get(dev)[channel] = PWM_NRFX_CH_VALUE(compare_value, inverted); 274 if (inverted) { 408 bool inverted = initially_inverted & BIT(i); local 410 seq_values_ptr_get(dev)[i] = PWM_NRFX_CH_VALUE(0, inverted);
|
D | pwm_led_esp32.c | 49 bool inverted; member 296 channel->inverted = true; in pwm_led_esp32_set_cycles() 298 channel->inverted = false; in pwm_led_esp32_set_cycles() 375 pwm_led_esp32_stop(data, channel, channel->inverted); in pwm_led_esp32_init() 403 .inverted = DT_PROP(node_id, inverted), \
|
D | pwm_rpi_pico.c | 86 int pico_channel, bool inverted) in pwm_rpi_set_channel_polarity() argument 94 pwm_polarity_a = inverted; in pwm_rpi_set_channel_polarity() 96 pwm_polarity_b = inverted; in pwm_rpi_set_channel_polarity()
|
D | pwm_nxp_s32_emios.c | 55 bool inverted; member 117 if ((ch_data->inverted != flags) || (!ch_data->curr_period)) { in pwm_nxp_s32_set_cycles_opwfmb() 150 ch_data->inverted = flags; in pwm_nxp_s32_set_cycles_opwfmb() 185 if ((ch_data->inverted != flags) || (!ch_data->curr_period)) { in pwm_nxp_s32_set_cycles_opwmcb() 235 ch_data->inverted = flags; in pwm_nxp_s32_set_cycles_opwmcb() 267 if ((ch_data->inverted != flags) || (!ch_data->curr_period)) { in pwm_nxp_s32_set_cycles_opwmb() 325 ch_data->inverted = flags; in pwm_nxp_s32_set_cycles_opwmb() 435 static ALWAYS_INLINE eMios_Icu_ValueType pwm_nxp_s32_pulse_calc(bool inverted, in pwm_nxp_s32_pulse_calc() argument 441 if (input_state ^ inverted) { in pwm_nxp_s32_pulse_calc() 486 data->ch_data[channel].inverted = (flags & PWM_POLARITY_MASK); in pwm_nxp_s32_capture_configure() [all …]
|
D | pwm_sam0_tcc.c | 66 bool inverted = ((regs->DRVCTRL.vec.INVEN & invert_mask) != 0); in pwm_sam0_set_cycles() local 89 if (invert != inverted) { in pwm_sam0_set_cycles()
|
D | pwm_mcux_pwt.c | 45 bool inverted : 1; member 109 data->inverted = in mcux_pwt_configure_capture() 247 if (data->inverted) { in mcux_pwt_isr()
|
D | pwm_mc_esp32.c | 81 bool inverted; member 110 if (channel->inverted) { in mcpwm_esp32_duty_set() 269 channel->inverted = (flags & PWM_POLARITY_INVERTED); in mcpwm_esp32_set_cycles() 317 channel->inverted = (flags & PWM_POLARITY_INVERTED); in mcpwm_esp32_configure_capture() 507 capture->period = channel->inverted ? in mcpwm_esp32_isr() 515 capture->pulse = channel->inverted ? in mcpwm_esp32_isr()
|
/Zephyr-latest/tests/drivers/pwm/pwm_gpio_loopback/src/ |
D | main.c | 128 bool inverted = (pwm_dt->flags & PWM_POLARITY_INVERTED) ? true : false; in check_timing() local 139 if (inverted) { in check_timing() 164 uint32_t pulse_time = inverted ? ctx.low_time : ctx.high_time; in check_timing() 196 bool inverted = (pwm_dt->flags & PWM_POLARITY_INVERTED) ? true : false; in test_run() local 200 pwm_dt->channel, pwm_dt->period, pulse, inverted ? "Yes" : "No"); in test_run()
|
/Zephyr-latest/boards/shields/lcd_par_s035/boards/ |
D | rd_rw612_bga.overlay | 77 * Note that this display is *not* buggy- we use rgb-is-inverted 78 * as a workaround here to get the display to report an inverted 81 * display should report an inverted color format to account 86 rgb-is-inverted;
|
/Zephyr-latest/soc/nuvoton/npcx/common/ |
D | soc_pins.h | 27 uint8_t inverted:1; member
|
D | scfg.c | 39 .inverted = DT_PHA(DT_PROP_BY_IDX(node_id, prop, idx), alts, inv), \ 71 if (!!alt_func != !!alt->inverted) { in npcx_pinctrl_alt_sel()
|
D | pinctrl_soc.h | 78 bool inverted: 1; member 182 .cfg.periph.inverted = DT_PHA(DT_PROP(node_id, prop), alts, inv), \
|
/Zephyr-latest/samples/sensor/qdec/boards/ |
D | nucleo_f401re.overlay | 22 st,input-polarity-inverted;
|
/Zephyr-latest/soc/espressif/esp32/ |
D | soc.h | 49 bool inverted);
|
/Zephyr-latest/soc/espressif/esp32c6/ |
D | soc.h | 45 bool inverted);
|
/Zephyr-latest/soc/espressif/esp32s2/ |
D | soc.h | 37 extern int esp_rom_gpio_matrix_in(uint32_t gpio, uint32_t signal_index, bool inverted);
|
/Zephyr-latest/soc/espressif/esp32s3/ |
D | soc.h | 54 bool inverted);
|
/Zephyr-latest/subsys/fb/ |
D | cfb.c | 65 bool inverted; member 456 fb->inverted = !fb->inverted; in cfb_framebuffer_invert() 480 if (!(fb->pixel_format & PIXEL_FORMAT_MONO10) != !(fb->inverted)) { in cfb_framebuffer_finalize() 583 fb->inverted = false; in cfb_framebuffer_init()
|
/Zephyr-latest/drivers/display/ |
D | display_st7796s.c | 33 bool inverted; /* Display color inversion */ member 334 if (config->inverted) { in st7796s_init() 387 .inverted = DT_INST_PROP(n, color_invert), \
|
/Zephyr-latest/samples/subsys/input/draw_touch_events/ |
D | README.rst | 10 if the touch screen works for a board, examine its parameters such as inverted/swapped axes.
|
/Zephyr-latest/boards/particle/boron/ |
D | particle_boron.dts | 20 /* on Boron VCTL2 is inverted VCTL1 signal via SN74LVC1G04
|
/Zephyr-latest/boards/st/stm32f429i_disc1/ |
D | stm32f429i_disc1.dts | 178 inverted-x; 179 inverted-y;
|