mirror of
https://github.com/lvgl/lvgl.git
synced 2026-05-28 05:26:18 +08:00
docs: remove outdated doc material (#8520)
This commit is contained in:
@@ -639,13 +639,6 @@ The default value of the following parameters can be changed in :cpp:type:`lv_in
|
|||||||
can be changed by calling ``lv_timer_...()`` functions. :c:macro:`LV_DEF_REFR_PERIOD`
|
can be changed by calling ``lv_timer_...()`` functions. :c:macro:`LV_DEF_REFR_PERIOD`
|
||||||
in ``lv_conf.h`` sets the default read period.
|
in ``lv_conf.h`` sets the default read period.
|
||||||
|
|
||||||
Feedback
|
|
||||||
--------
|
|
||||||
|
|
||||||
Besides ``read_cb`` a ``feedback_cb`` callback can be also specified in
|
|
||||||
:cpp:type:`lv_indev_t`. ``feedback_cb`` is called when any type of event is sent
|
|
||||||
by input devices (independently of their type). This allows generating feedback for the user, e.g., to play a sound on :cpp:enumerator:`LV_EVENT_CLICKED`.
|
|
||||||
|
|
||||||
Buffered Reading
|
Buffered Reading
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
|||||||
@@ -354,7 +354,6 @@ static lv_result_t event_send_core(lv_event_t * e)
|
|||||||
{
|
{
|
||||||
LV_TRACE_EVENT("Sending event %d to %p with %p param", e->code, (void *)e->original_target, e->param);
|
LV_TRACE_EVENT("Sending event %d to %p with %p param", e->code, (void *)e->original_target, e->param);
|
||||||
|
|
||||||
/*Call the input device's feedback callback if set*/
|
|
||||||
lv_indev_t * indev_act = lv_indev_active();
|
lv_indev_t * indev_act = lv_indev_active();
|
||||||
if(indev_act) {
|
if(indev_act) {
|
||||||
if(e->stop_processing) return LV_RESULT_OK;
|
if(e->stop_processing) return LV_RESULT_OK;
|
||||||
|
|||||||
Reference in New Issue
Block a user