/lvgl-latest/scripts/ |
D | update_version.py | 52 def applyVersionToLine(self, line: str, version: Version) -> Union[str, None]: 55 def applyVersion(self, version: Version): 61 line_with_version = self.applyVersionToLine(line, version) 80 def applyVersionToLine(self, line: str, version: Version): 82 repl = r'\g<1>' + str(version) 91 def applyVersionToLine(self, line: str, version: Version): 93 'LVGL_VERSION_MAJOR': version.major, 94 'LVGL_VERSION_MINOR': version.minor, 95 'LVGL_VERSION_PATCH': version.patch, 96 'LVGL_VERSION_INFO': version.info, [all …]
|
D | changelog_gen.sh | 16 auto-changelog -t changelog-template.hbs -l false --latest-version $1 --unreleased-only --tag-patt…
|
/lvgl-latest/src/libs/qrcode/ |
D | qrcodegen.c | 59 testable void addEccAndInterleave(uint8_t data[], int version, enum qrcodegen_Ecc ecl, uint8_t resu… 60 testable int getNumDataCodewords(int version, enum qrcodegen_Ecc ecl); 68 testable void initializeFunctionModules(int version, uint8_t qrcode[]); 69 static void drawWhiteFunctionModules(uint8_t qrcode[], int version); 71 testable int getAlignmentPatternPositions(int version, uint8_t result[7]); 86 testable int getTotalBits(const struct qrcodegen_Segment segs[], size_t len, int version); 87 static int numCharCountBits(enum qrcodegen_Mode mode, int version); 219 int version, dataUsedBits; in qrcodegen_encodeSegmentsAdvanced() local 220 for(version = minVersion; ; version++) { in qrcodegen_encodeSegmentsAdvanced() 221 … int dataCapacityBits = getNumDataCodewords(version, ecl) * 8; // Number of data bits available in qrcodegen_encodeSegmentsAdvanced() [all …]
|
D | qrcodegen.h | 314 int qrcodegen_version2size(int version);
|
/lvgl-latest/docs/ |
D | conf.py | 85 version = '' variable 240 (master_doc, 'LVGL.tex', 'LVGL Documentation ' + version, 250 (master_doc, 'lvgl', 'LVGL Documentation ' + version, 261 (master_doc, 'LVGL', 'LVGL Documentation ' + version,
|
D | CODE_OF_CONDUCT.rst.back | 82 Covenant <http://contributor-covenant.org>`__, version 1.4, available at 83 `http://contributor-covenant.org/version/1/4 <http://contributor-covenant.org/version/1/4/>`__
|
/lvgl-latest/ |
D | lv_version.h.in | 2 * @file version.h 3 * The current version of LVGL
|
D | library.properties | 2 version=9.3.0-dev key
|
/lvgl-latest/.devcontainer/ |
D | __c_cpp_properties.json__ | 16 "version": 4
|
/lvgl-latest/docs/details/integration/os/yocto/ |
D | terms_and_variables.rst | 32 base recipe name and ${PV} is the recipe version. If the source tarball 115 - **PV**: The recipe version 171 upstream version, but with later (PR) version packages including 190 The version of the recipe. The version is normally extracted from the recipe 193 unless it is building an unstable (i.e. development) version from a source code
|
/lvgl-latest/env_support/cmake/ |
D | zephyr.cmake | 2 include("${CMAKE_CURRENT_LIST_DIR}/version.cmake")
|
D | micropython.cmake | 1 include("${CMAKE_CURRENT_LIST_DIR}/version.cmake")
|
D | esp.cmake | 1 include("${CMAKE_CURRENT_LIST_DIR}/version.cmake")
|
/lvgl-latest/docs/intro/add-lvgl-to-your-project/ |
D | getting_lvgl.rst | 11 the latest version of the library from GitHub.
|
/lvgl-latest/libs/nema_gfx/include/ |
D | nema_vg_font.h | 97 const uint32_t version; /**< Font version */ member
|
/lvgl-latest/docs/details/integration/os/ |
D | rt-thread.rst | 11 **Standard version** and **Nano version**. For resource-constrained 12 microcontroller (MCU) systems, the Nano version that requires only 3 KB 40 `中文文档 <https://www.rt-thread.org/document/site/#/rt-thread-version/rt-thread-standard/packages-manu…
|
/lvgl-latest/src/others/vg_lite_tvg/ |
D | vg_lite.h | 58 #define VGLITE_VERSION_MAJOR(version) (((uint32_t)(version) >> 16) & 0xff) argument 59 #define VGLITE_VERSION_MINOR(version) (((uint32_t)(version) >> 8) & 0xff) argument 60 #define VGLITE_VERSION_PATCH(version) ((uint32_t)(version) & 0xff) argument
|
/lvgl-latest/docs/details/integration/driver/ |
D | libinput.rst | 14 You have the development version of libinput installed (usually ``libinput-dev``). If your input de… 34 …board support, including letters and modifiers, you'll need the development version of libxkbcommon
|
/lvgl-latest/docs/details/integration/chip/ |
D | renesas.rst | 102 …The RA family requires the latest version with FSP 5.3. It can be downloaded `here <https://www.re… 146 …enesas.com/us/en/document/uid/usb-driver-renesas-mcu-tools-v27700-64-bit-version-windows-os?r=4888… 147 …/usb-driver-renesas-mcu-toolse2e2-liteie850ie850apg-fp5-v27700for-32-bit-version-windows-os?r=4888… 150 …- RX72 requires an external compiler for the RXv3 core. A free and open-source version is available
|
D | espressif.rst | 35 …depends on the latest stable version of LVGL, so no additional steps are needed for new projects. … 47 Adjust the ``^9.*`` part to match your LVGL version requirement. More information on version specif…
|
/lvgl-latest/src/libs/thorvg/ |
D | tvgInitializer.cpp | 172 const char* Initializer::version(uint32_t* major, uint32_t* minor, uint32_t* micro) noexcept in version() function in Initializer
|
/lvgl-latest/.github/ |
D | pull_request_template.md | 11 …changing-the-stage-of-a-pull-request) while you are working on the first version, and mark is as _…
|
/lvgl-latest/docs/intro/ |
D | introduction.rst | 95 * Major version: incompatible API changes. E.g. v5.0.0, v6.0.0 96 * Minor version: new but backward-compatible functionalities. E.g. v6.1.0, v6.2.0 97 * Patch version: backward-compatible bug fixes. E.g. v6.1.1, v6.1.2 115 * `master`: latest version, patches are merged directly here
|
/lvgl-latest/tests/ |
D | README.md | 25 Note that different version of pngquant may generate different images.
|
/lvgl-latest/docs/_static/css/ |
D | custom.css | 52 .wy-side-nav-search>div.version {
|