Searched full:update (Results 1 – 25 of 65) sorted by relevance
123
/lvgl-latest/docs/ |
D | CHANGELOG.md | 36 - docs(label): update text for recoloring [`4606`](https://github.com/lvgl/lvgl/pull/4606) 69 - docs(calendar): update according to v8.2 changes [`a296456`](https://github.com/lvgl/lvgl/commit/… 74 - ci: update screenshot compare from v9 to automatically create missing reference images [`fd21ed0`… 80 - Update screen object opacity function documentation [`4505`](https://github.com/lvgl/lvgl/pull/45… 159 - chore(cmsis-pack): update cmsis-pack for v8.3.8 [`4340`](https://github.com/lvgl/lvgl/pull/4340) 218 - chore(cmsis-pack): update cmsis-pack for v8.3.6 [`4108`](https://github.com/lvgl/lvgl/pull/4108) 219 - chore: update the version numbers to v8.3.5-dev [`77670fb`](https://github.com/lvgl/lvgl/commit/7… 220 - Update build_html_examples.sh [`399069b`](https://github.com/lvgl/lvgl/commit/399069b4a2423c11823… 250 - chore(cmsis-pack): update cmsis-pack for v8.3.5 [`3972`](https://github.com/lvgl/lvgl/pull/3972) 254 - Update layer.md [`9faca8a`](https://github.com/lvgl/lvgl/commit/9faca8a8d4125e21dedbf6e46aa1586a6… [all …]
|
D | CONTRIBUTING.md | 53 7. Set the base branch. It means where you want to merge your update. In the `lvgl` repo both the f… 54 8. Describe what is in the update. An example code is welcome if applicable. 55 9. If you need to make more changes, just update your forked `lvgl` repo with new commits. They wil… 96 fix(img): update size if a new source is set 213 - Update `index.rst` in the example's folder with your new example. To see how other examples are a… 257 - Update [lv_conf_template.h](https://github.com/lvgl/lvgl/blob/master/lv_conf_template.h) 260 - Update the [changelog](https://github.com/lvgl/lvgl/tree/master/docs/CHANGELOG.md)
|
/lvgl-latest/env_support/cmsis-pack/ |
D | README.md | 5 ## STEP 1 Update 'lv_conf_cmsis.h' 67 5. Update macro `LV_ATTRIBUTE_MEM_ALIGN` and `LV_ATTRIBUTE_MEM_ALIGN_SIZE` to force a WORD alignme… 72 Update macro `LV_MEM_SIZE` to `(64*1024U)`. 74 Update macro `LV_FONT_MONTSERRAT_12` to `1`. 76 Update macro `LV_FONT_MONTSERRAT_12` to `1`. 78 6. Update Theme related macros: 107 7. Update `LV_TICK_CUSTOM` related macros: 110 *It removes the need to manually update the tick with `lv_tick_inc()`)*/ 153 ## STEP 2 Check, Update and Run the 'gen_pack.sh' 173 Update the '**CMSIS_PACK_PATH**' accordingly (Usually just replace the name gabriel with your own w… [all …]
|
D | LVGL.lvgl.pdsc | 82 - Update GPU Arm-2D support 87 - Monthly update for June 89 - Update benchmark to support RGB565-A8 90 - Update support for layers 94 - Monthly update for May 95 - Update drawing service 96 - Update GPU support for Arm-2D library 97 - Update GPU support for NXP PXP/VGLite 103 - Monthly update for April 108 - Monthly update for March [all …]
|
/lvgl-latest/docs/widgets/extra/ |
D | chart.md | 51 …call `lv_chart_refresh(chart)` after the external data source has been updated to update the chart. 60 …rt_set_value_by_id(chart, ser, id, value)` where `id` is the index of the point you wish to update. 69 ### Update modes 70 `lv_chart_set_next_value` can behave in two ways depending on *update mode*: 74 The update mode can be changed with `lv_chart_set_update_mode(chart, LV_CHART_UPDATE_MODE_...)`.
|
/lvgl-latest/src/extra/widgets/chart/ |
D | lv_chart.h | 48 * Chart update mode for `lv_chart_set_next` 170 * Set update mode of the chart object. Affects 172 * @param mode the update mode 369 * Set the next point's Y value according to the update mode policy. 377 * Set the next point's X and Y value according to the update mode policy.
|
/lvgl-latest/.github/workflows/ |
D | build_micropython.yml | 21 sudo apt-get update -y -qq 28 run: git submodule update --init --recursive lib/lv_bindings 29 - name: Update ${{ matrix.port }} port submodules 39 git submodule update --init --recursive
|
D | ccpp.yml | 95 apt-get update -y 97 /usr/sbin/update-ccache-symlinks
|
/lvgl-latest/src/widgets/ |
D | lv_arc.c | 837 * Used internally to update arc angles after a value change 845 /*If the value is still not set to any value do not update*/ in value_update() 902 * In order to avoid unexpected value update of the arc value when the user clicks 909 * that range, from 90° to 360° the background is invisible. Click in 150° should not update
|
D | lv_slider.c | 361 /* Update knob area with knob style */ in draw_knob() 363 /* Update right knob area with calculated knob area */ in draw_knob()
|
/lvgl-latest/src/core/ |
D | lv_obj_pos.h | 144 * Mark the object for layout update. 150 * Update the layout of an object. 157 * @param cb the layout update callback
|
D | lv_obj_pos.c | 314 LV_LOG_INFO("Layout update begin"); in lv_obj_update_layout() 317 LV_LOG_TRACE("Layout update end"); in lv_obj_update_layout()
|
/lvgl-latest/src/misc/ |
D | lv_style.h | 40 #define LV_STYLE_PROP_EXT_DRAW (1 << 1) /*Requires ext. draw size update when changed… 41 #define LV_STYLE_PROP_LAYOUT_REFR (1 << 2) /*Requires layout update when changed*/ 42 #define LV_STYLE_PROP_PARENT_LAYOUT_REFR (1 << 3) /*Requires layout update on parent when chang…
|
D | lv_txt.c | 223 /*Update the output width on the first character if it fits. in lv_txt_get_next_word() 230 /*Update the output width*/ in lv_txt_get_next_word() 266 // TODO: it would be appropriate to update the returned word width here in lv_txt_get_next_word()
|
D | lv_lru.c | 156 // update the value and value_lengths in lv_lru_set() 320 // free memory and update the free memory counter in lv_lru_remove_item()
|
/lvgl-latest/scripts/ |
D | build_html_examples.sh | 10 git submodule update --init -- lvgl 14 git submodule update --init -- lv_drivers
|
D | install-prerequisites.sh | 8 sudo apt update
|
/lvgl-latest/src/extra/ |
D | README.md | 12 - Update [lv_conf_template.h](https://github.com/lvgl/lvgl/blob/master/lv_conf_template.h) 15 - Update the [changelog](https://github.com/lvgl/lvgl/tree/master/docs/CHANGELOG.md)
|
/lvgl-latest/examples/others/msg/ |
D | lv_example_msg_3.c | 73 * send an UPDATE REQUEST message which will trigger an UPDATE message with the current value*/ in lv_example_msg_3()
|
/lvgl-latest/src/hal/ |
D | lv_hal_disp.h | 99 …: 2; /**< 1: turn the display by 90 degree. @warning Does not update coordinates for yo… 235 * Update the driver in run time.
|
/lvgl-latest/docs/porting/ |
D | display.md | 51 This means the `flush_cb` callback only has to update the address of the framebuffer (`color_p` par… 164 /* Update the areas as needed.
|
/lvgl-latest/docs/overview/ |
D | coords.md | 305 Layouts can update the position and size of an object's children. They can be used to automatically… 345 Custom style properties can be added which can be retrieved and used in the update callback. For ex…
|
/lvgl-latest/src/extra/widgets/keyboard/ |
D | lv_keyboard.c | 391 * Update the key and control map for the current mode 402 * Update the control map for the current mode
|
/lvgl-latest/src/draw/nxp/vglite/ |
D | lv_draw_vglite_rect.c | 149 VG_LITE_ERR_RETURN_INV(err, "Update gradient failed."); in lv_gpu_nxp_vglite_draw_bg() 268 VG_LITE_ERR_RETURN_INV(err, "Update stroke failed."); in lv_gpu_nxp_vglite_draw_border_generic()
|
/lvgl-latest/src/extra/libs/gif/ |
D | gifdec.c | 349 /* Update byte. */ in get_key() 564 case 3: /* Restore to previous, i.e., don't update canvas.*/ in dispose()
|
123