:orphan: .. title:: COUNTER_ESP32_PRESCALER .. option:: CONFIG_COUNTER_ESP32_PRESCALER *Prescaling value for counter device* Type: ``int`` Help ==== .. code-block:: none Sets prescaler value for Timer clock. Direct dependencies =================== \ :option:`COUNTER_ESP32 ` && \ :option:`COUNTER ` *(Includes any dependencies from ifs and menus.)* Default ======= - 2 Kconfig definition ================== At ``/counter/Kconfig.esp32:41`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``/Kconfig:64`` → ``/counter/Kconfig:49`` Menu path: (Top) → Device Drivers → Counter Drivers → ESP32 Counter Driver .. code-block:: kconfig config COUNTER_ESP32_PRESCALER int "Prescaling value for counter device" range 2 65336 default 2 depends on COUNTER_ESP32 && COUNTER help Sets prescaler value for Timer clock. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*