1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-28 07:03:00 +08:00
This commit is contained in:
Gabor Kiss-Vamosi 2020-10-19 12:33:42 +02:00
commit 62a21e912c
2 changed files with 16 additions and 2 deletions

View File

@ -6,6 +6,10 @@ This list indicates only the current intention and can be changed.
## v8 ## v8
Planned to September/October 2020 Planned to September/October 2020
- Create an `lv_components` repository for compley widgets
- It makes the core LVGL leaner
- In `lv_components` we can have a lot and specific widgets
- Good place for contribution
- New scrolling: - New scrolling:
- See [feat/new-scroll](https://github.com/lvgl/lvgl/tree/feat/new-scroll) branch and [#1614](https://github.com/lvgl/lvgl/issues/1614)) issue. - See [feat/new-scroll](https://github.com/lvgl/lvgl/tree/feat/new-scroll) branch and [#1614](https://github.com/lvgl/lvgl/issues/1614)) issue.
- Remove `lv_page` and support scrolling on `lv_obj` - Remove `lv_page` and support scrolling on `lv_obj`
@ -18,10 +22,12 @@ Planned to September/October 2020
- New layouts: - New layouts:
- See [#1615](https://github.com/lvgl/lvgl/issues/1615) issue - See [#1615](https://github.com/lvgl/lvgl/issues/1615) issue
- [CSS Grid](https://css-tricks.com/snippets/css/a-guide-to-grid/)-like layout support - [CSS Grid](https://css-tricks.com/snippets/css/a-guide-to-grid/)-like layout support
- Work in progress - [CSS Flexbox](https://css-tricks.com/snippets/css/a-guide-to-flexbox/)-like layout support
- Remove `lv_cont` and support layouts on `lv_obj`
- Simplified File system interface ([feat/new_fs_api](https://github.com/lvgl/lvgl/tree/feat/new-fs-api) branch) to make porting easier - Simplified File system interface ([feat/new_fs_api](https://github.com/lvgl/lvgl/tree/feat/new-fs-api) branch) to make porting easier
- Work in progress - Work in progress
- Remove the align parameter from `lv_canvas_draw_text` - Remove the align parameter from `lv_canvas_draw_text`
- Make the `copy` parameter of `create` functions deprecated
## v8.1 ## v8.1
- Add radio button widget - Add radio button widget
@ -32,6 +38,11 @@ Planned to September/October 2020
- Benchmarking (gem5?). See [#1660](https://github.com/lvgl/lvgl/issues/1660) - Benchmarking (gem5?). See [#1660](https://github.com/lvgl/lvgl/issues/1660)
- Consider direct binary font format support - Consider direct binary font format support
- Remove the copy paramter from create functions - Remove the copy paramter from create functions
- Style selectors and style-based states See [#1832](https://github.com/lvgl/lvgl/issues/1832)
## v10
- Remove property level states
## Ideas ## Ideas
- 9-patch support for `lv_imgbtn`. - 9-patch support for `lv_imgbtn`.

View File

@ -69,7 +69,10 @@ void lv_gpu_stm32_dma2d_init(void)
RCC->AHB3ENR |= RCC_AHB3ENR_DMA2DEN; RCC->AHB3ENR |= RCC_AHB3ENR_DMA2DEN;
#else #else
# warning "LVGL can't enable the clock of DMA2D" # warning "LVGL can't enable the clock of DMA2D"
#endif #endif
/* Wait for hardware access to complete */
__asm volatile("DSB\n");
/* Delay after setting peripheral clock */ /* Delay after setting peripheral clock */
volatile uint32_t temp = RCC->AHB1ENR; volatile uint32_t temp = RCC->AHB1ENR;