mirror of
https://github.com/lvgl/lvgl.git
synced 2026-05-21 14:32:44 +08:00
fix(circle_buff): replace a none ASCII character (#7538)
Arduino Lint / lint (push) Waiting to run
MicroPython CI / Build ${{ matrix.port }} port (esp32) (push) Waiting to run
MicroPython CI / Build ${{ matrix.port }} port (rp2) (push) Waiting to run
MicroPython CI / Build ${{ matrix.port }} port (stm32) (push) Waiting to run
MicroPython CI / Build ${{ matrix.port }} port (unix) (push) Waiting to run
C/C++ CI / Build ${{ matrix.build_option }} (OPTIONS_16BIT) (push) Waiting to run
C/C++ CI / Build ${{ matrix.build_option }} (OPTIONS_24BIT) (push) Waiting to run
C/C++ CI / Build ${{ matrix.build_option }} (OPTIONS_FULL_32BIT) (push) Waiting to run
C/C++ CI / Build ${{ matrix.build_option }} (OPTIONS_SDL) (push) Waiting to run
C/C++ CI / Build ${{ matrix.build_option }} (OPTIONS_VG_LITE) (push) Waiting to run
C/C++ CI / Build Windows GCC (push) Waiting to run
C/C++ CI / Build Windows MSVC (push) Waiting to run
C/C++ CI / Build ESP IDF ESP32S3 (push) Waiting to run
C/C++ CI / Run tests with ${{ matrix.build_config }} (32bit build) (push) Waiting to run
C/C++ CI / Run tests with ${{ matrix.build_config }} (64bit build) (push) Waiting to run
BOM Check / bom-check (push) Waiting to run
Verify that lv_conf_internal.h matches repository state / verify-conf-internal (push) Waiting to run
Verify the widget property name / verify-property-name (push) Waiting to run
Verify code formatting / verify-formatting (push) Waiting to run
Build docs / build-and-deploy (push) Waiting to run
Test API JSON generator / Test API JSON (push) Waiting to run
Check Makefile / Build using Makefile (push) Waiting to run
Check Makefile for UEFI / Build using Makefile for UEFI (push) Waiting to run
Verify Kconfig / verify-kconfig (push) Waiting to run
Arduino Lint / lint (push) Waiting to run
MicroPython CI / Build ${{ matrix.port }} port (esp32) (push) Waiting to run
MicroPython CI / Build ${{ matrix.port }} port (rp2) (push) Waiting to run
MicroPython CI / Build ${{ matrix.port }} port (stm32) (push) Waiting to run
MicroPython CI / Build ${{ matrix.port }} port (unix) (push) Waiting to run
C/C++ CI / Build ${{ matrix.build_option }} (OPTIONS_16BIT) (push) Waiting to run
C/C++ CI / Build ${{ matrix.build_option }} (OPTIONS_24BIT) (push) Waiting to run
C/C++ CI / Build ${{ matrix.build_option }} (OPTIONS_FULL_32BIT) (push) Waiting to run
C/C++ CI / Build ${{ matrix.build_option }} (OPTIONS_SDL) (push) Waiting to run
C/C++ CI / Build ${{ matrix.build_option }} (OPTIONS_VG_LITE) (push) Waiting to run
C/C++ CI / Build Windows GCC (push) Waiting to run
C/C++ CI / Build Windows MSVC (push) Waiting to run
C/C++ CI / Build ESP IDF ESP32S3 (push) Waiting to run
C/C++ CI / Run tests with ${{ matrix.build_config }} (32bit build) (push) Waiting to run
C/C++ CI / Run tests with ${{ matrix.build_config }} (64bit build) (push) Waiting to run
BOM Check / bom-check (push) Waiting to run
Verify that lv_conf_internal.h matches repository state / verify-conf-internal (push) Waiting to run
Verify the widget property name / verify-property-name (push) Waiting to run
Verify code formatting / verify-formatting (push) Waiting to run
Build docs / build-and-deploy (push) Waiting to run
Test API JSON generator / Test API JSON (push) Waiting to run
Check Makefile / Build using Makefile (push) Waiting to run
Check Makefile for UEFI / Build using Makefile for UEFI (push) Waiting to run
Verify Kconfig / verify-kconfig (push) Waiting to run
This commit is contained in:
@@ -170,7 +170,7 @@ lv_result_t lv_circle_buf_peek(const lv_circle_buf_t * circle_buf, void * data);
|
||||
/**
|
||||
* Peek a value at an index
|
||||
* @param circle_buf pointer to buffer
|
||||
* @param index the index of the value to peek, if the index is greater than the size of the buffer, it will return looply.
|
||||
* @param index the index of the value to peek, if the index is greater than the size of the buffer, it will return looply.
|
||||
* @param data pointer to a variable to store the peeked value
|
||||
* @return LV_RESULT_OK: the value is peeked; LV_RESULT_INVALID: the value is not peeked
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user