Searched refs:tick (Results 1 – 18 of 18) sorted by relevance
/lvgl-3.7.0/examples/event/ |
D | lv_example_event_4.c | 15 uint32_t tick = lv_tick_get(); in timer_cb() local 17 old_tick = tick; in timer_cb() 19 if(tick - old_tick > 3000) { in timer_cb() 22 old_tick = tick; in timer_cb() 38 uint32_t tick = lv_tick_get(); in event_cb() local 40 int angle = i * 360 / n + ((tick % 36000) / 100); in event_cb()
|
/lvgl-3.7.0/docs/widgets/extra/ |
D | meter.md | 8 - `LV_PART_TICKS` The tick lines a labels using the *line* and *text* style properties. 17 …jor ticks and labels on the major ticks. Later indicators (needles, arcs, tick modifiers) can be a… 21 The minor tick lines can be configured with: `lv_meter_set_scale_ticks(meter, scale, tick_count, li… 23 …tick lines use `lv_meter_set_scale_major_ticks(meter, scale, nth_major, tick_width, tick_length, t… 25 …s with `label_gap` distance from the ticks with text proportionally to the values of the tick line. 57 `width_mod` modifies the width of the tick lines. 79 - `LV_METER_DRAW_PART_TICK` The tick lines and labels
|
D | chart.md | 109 - `draw_size` extra size required to draw the tick and labels (start with 20 px and increase if the… 161 - `LV_CHART_DRAW_PART_TICK_LABEL` Used on tick lines and labels. 164 - `value`: value of the tick
|
/lvgl-3.7.0/docs/widgets/core/ |
D | checkbox.md | 6 The Checkbox object is created from a "tick box" and a label. When the Checkbox is clicked the tick… 11 - `LV_PART_INDICATOR` The "tick box" is a square that uses all the typical background style propert… 12 … equal to the height of the main part's font. Padding properties make the tick box larger in the r…
|
/lvgl-3.7.0/docs/porting/ |
D | index.md | 12 tick
|
D | tick.md | 3 LVGL needs a system tick to know elapsed time for animations and other tasks.
|
D | project.md | 65 …y `x` milliseconds in an interrupt to report the elapsed time to LVGL. [Learn more](/porting/tick).
|
/lvgl-3.7.0/.github/ISSUE_TEMPLATE/ |
D | bug-report.md | 15 ### Perform all steps below and tick them with [x]
|
/lvgl-3.7.0/env_support/cmsis-pack/ |
D | README.md | 109 /*Use a custom tick source that tells the elapsed time in milliseconds. 110 *It removes the need to manually update the tick with `lv_tick_inc()`)*/
|
/lvgl-3.7.0/src/extra/widgets/chart/ |
D | lv_chart.h | 105 lv_chart_tick_dsc_t tick[4]; member
|
D | lv_chart.c | 737 …lv_event_set_ext_draw_size(e, LV_MAX4(chart->tick[0].draw_size, chart->tick[1].draw_size, chart->t… in lv_chart_event() 738 chart->tick[3].draw_size)); in lv_chart_event() 1794 return &chart->tick[0]; in get_tick_gsc() 1796 return &chart->tick[1]; in get_tick_gsc() 1798 return &chart->tick[2]; in get_tick_gsc() 1800 return &chart->tick[3]; in get_tick_gsc()
|
/lvgl-3.7.0/docs/overview/ |
D | drawing.md | 173 char text[16]; // A text calculated during drawing. Can be modified. E.g. tick… 175 int32_t value; // A value calculated during drawing. E.g. Chart's tick line va…
|
D | object.md | 188 - `LV_PART_INDICATOR` Indicator, e.g. for slider, bar, switch, or the tick box of the checkbox
|
D | font.md | 135 - In the online converter tick the `Subpixel` box
|
D | style.md | 111 - `LV_PART_INDICATOR` Indicator, e.g. for slider, bar, switch, or the tick box of the checkbox
|
/lvgl-3.7.0/docs/intro/ |
D | index.md | 157 Learn more in the [Tick](/porting/tick) and [Timer handler](/porting/timer-handler) sections.
|
/lvgl-3.7.0/ |
D | Kconfig | 114 bool "Use a custom tick source"
|
/lvgl-3.7.0/docs/ |
D | CHANGELOG.md | 534 - fix(chart): fix misaligned horizontal tick lines on bar charts [`4572a0c`](https://github.com/lvg… 566 - fix(meter): improve the precision of tick line drawing [`0255c6d`](https://github.com/lvgl/lvgl/c… 1043 - fix(hal tick): add precompile !LV_TICK_CUSTOM for global variables and lv_tick_inc() [`2675`](htt… 1225 - fix(tick) minor optimization on lv_tick_inc call test [`b4305df`](https://github.com/lvgl/lvgl/co… 1575 - fix(tick) minor optimization on lv_tick_inc call test <a href="https://github.com/lvgl/lvgl/commi… 2002 - `lv_chart` fix X tick drawing
|