Searched +full:runs +full:- +full:on (Results 1 – 19 of 19) sorted by relevance
/lvgl-3.4.0/.github/workflows/ |
D | ccpp.yml | 3 on: 11 runs-on: ubuntu-latest 23 - uses: actions/checkout@v2 24 - uses: ammaraskar/gcc-problem-matcher@master 25 - name: Install prerequisites 26 run: scripts/install-prerequisites.sh 27 - name: Building ${{ matrix.build_option }} 28 run: python tests/main.py --build-option=${{ matrix.build_option }} build 30 test-native: 31 runs-on: ubuntu-latest [all …]
|
D | build_micropython.yml | 3 on: 10 runs-on: ubuntu-latest 11 continue-on-error: true 16 - uses: ammaraskar/gcc-problem-matcher@master 17 - name: Install Dependencies 19 …sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu `lsb_release -sc` main universe r… 20 sudo apt-get update -y -qq 21 sudo apt-get install libsdl2-dev parallel libfreetype-dev librlottie-dev 22 - name: Clone lv_micropython 26 - name: Initialize lv_bindings submodule [all …]
|
D | check_conf.yml | 2 on: 7 verify-conf-internal: 8 runs-on: ubuntu-latest 10 - name: Checkout 13 persist-credentials: false 14 fetch-depth: 0 15 - name: Setup Python 16 uses: actions/setup-python@v1 18 python-version: 3.7 19 - name: Generate lv_conf_internal.h [all …]
|
D | close_old_issues.yml | 2 on: 4 - cron: '30 1 * * *' 10 runs-on: ubuntu-latest 12 - uses: actions/stale@v3 14 repo-token: ${{ secrets.LVGL_BOT_TOKEN }} 15 …stale-issue-message: 'This issue is stale because it has been open 14 days with no activity. Remov… 16 …stale-pr-message: 'This PR is stale because it has been open 14 days with no activity. Remove stal… 17 …close-issue-message: 'This issue was closed because it has been stalled for 7 days with no activit… 18 days-before-stale: 14 19 days-before-close: 7 [all …]
|
D | main.yml | 1 on: 7 runs-on: ubuntu-latest 9 - name: Checkout 11 - name: Automatically close issues that don't follow the issue template 12 uses: lucasbento/auto-close-issues@v1.0.2 14 github-token: ${{ secrets.GITHUB_TOKEN }} 15 …issue-close-message: "@${issue.user.login}: hello! :wave:\n\nThis issue is being automatically clo… 16 closed-issues-label: "not-template"
|
D | check_style.yml | 2 on: 7 verify-formatting: 8 runs-on: ubuntu-latest 10 - name: Checkout 13 persist-credentials: false 14 fetch-depth: 0 15 - name: Install astyle 17 …sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu `lsb_release -sc` main universe r… 18 sudo apt-get update -y -qq 19 sudo apt-get install astyle [all …]
|
D | arduino.yml | 2 on: 9 runs-on: ubuntu-latest 11 - uses: actions/checkout@v2 12 - uses: arduino/arduino-lint-action@v1 14 library-manager: update
|
D | release.yml | 1 on: 5 - "v[0-9]+.[0-9]+.[0-9]+" # Push events to matching v*, i.e. v1.0, v20.15.10 12 runs-on: ubuntu-latest 14 - name: Checkout code 16 - name: Create Release 18 uses: actions/create-release@v1
|
D | esp_upload_component.yml | 4 on: 7 - master 11 runs-on: ubuntu-latest 13 - uses: actions/checkout@master 17 - name: Upload component to component registry 18 uses: espressif/github-actions/upload_components@master
|
D | compile_docs.yml | 2 on: 5 - master 6 - 'release/*' 9 EM_CACHE_FOLDER: 'emsdk-cache' 11 build-and-deploy: 13 runs-on: ubuntu-latest 14 concurrency: docs-build-and-deploy 16 - name: Checkout 19 persist-credentials: false 20 fetch-depth: 0 [all …]
|
/lvgl-3.4.0/docs/get-started/ |
D | micropython.md | 3 :github_url: |github_link_base|/get-started/micropython.md 10 Using Micropython, you can write Python3 code and run it even on a bare metal architecture with lim… 14 - **Compact** - Fits and runs within just 256k of code space and 16k of RAM. No OS is needed, altho… 15 - **Compatible** - Strives to be as compatible as possible with normal Python (known as CPython). 16 - **Versatile** - Supports many architectures (x86, x86-64, ARM, ARM Thumb, Xtensa). 17 - **Interactive** - No need for the compile-flash-boot cycle. With the REPL (interactive prompt) yo… 18 - **Popular** - Many platforms are supported. The user base is growing bigger. Notable forks: [Micr… 19 - **Embedded Oriented** - Comes with modules specifically for embedded systems, such as the [machin… 21 --- 25 …-level GUI library](https://forum.micropython.org/viewtopic.php?f=18&t=5543) by default. LVGL is a… [all …]
|
D | nuttx.md | 3 :github_url: |github_link_base|/get-started/nuttx.md 9 …tps://nuttx.apache.org/) is a mature and secure real-time operating system (RTOS) with an emphasis… 10 …-bit to 64-bit microcontrollers and microprocessors and compliant with the Portable Operating Syst… 15 - **Small** - Fits and runs in microcontrollers as small as 32 kB Flash and 8 kB of RAM. 16 - **Compliant** - Strives to be as compatible as possible with POSIX and Linux. 17 - **Versatile** - Supports many architectures (ARM, ARM Thumb, AVR, MIPS, OpenRISC, RISC-V 32-bit a… 18 - **Modular** - Its modular design allows developers to select only what really matters and use mod… 19 - **Popular** - NuttX is used by many companies around the world. Probably you already used a produ… 20 - **Predictable** - NuttX is a preemptible Realtime kernel, so you can use it to create predictable… 22 --- [all …]
|
/lvgl-3.4.0/tests/ |
D | README.md | 12 scripts/install-prerequisites.sh 17 2. Build all build-only tests with `./tests/main.py build`. 18 3. Clean prior test build, build all build-only tests, 20 report `./tests/main.py --clean --report build test`. 22 For full information on running tests run: `./tests/main.py --help`. 26 GitHub's CI automatically runs these tests on pushes and pull requests to `master` and `releasev8.*… 29 - `src` Source files of the tests 30 - `test_cases` The written tests, 31 - `test_runners` Generated automatically from the files in `test_cases`. 32 - other miscellaneous files and folders [all …]
|
D | main.py | 56 r = f[:-2] + "_Runner.c" 72 Does not return the full path to the directory - just the base name.''' 108 subprocess.check_call(['cmake', '-DCMAKE_BUILD_TYPE=%s' % build_type, 109 '-D%s=1' % options_name, '..']) 110 subprocess.check_call(['cmake', '--build', build_dir, 111 '--parallel', str(os.cpu_count())]) 126 ['ctest', '--parallel', str(os.cpu_count()), '--output-on-failure']) 146 cmd = ['gcovr', '--root', root_dir, '--html-details', '--output', 147 html_report_file, '--xml', 'report/coverage.xml', 148 '-j', str(os.cpu_count()), '--print-summary', [all …]
|
/lvgl-3.4.0/tests/src/test_cases/ |
D | test_arc.c | 7 /* This function runs before each test */ 140 /*No click close to the radius - bg_arc - ext_click_area*/ in test_arc_click_area_with_adv_hittest() 145 /*Click on the radius - bg_arc - ext_click_area*/ in test_arc_click_area_with_adv_hittest() 150 /*Click on the radius + ext_click_area*/ in test_arc_click_area_with_adv_hittest()
|
/lvgl-3.4.0/src/misc/ |
D | lv_bidi.c | 21 // Highest bit of the 16-bit pos_conv value specifies whether this pos is RTL or not 104 * Auto-detect the direction of a text based on the first strong character 142 if(buf == NULL) return (uint16_t) -1; in _lv_bidi_get_logical_pos() 147 return (uint16_t) -1; in _lv_bidi_get_logical_pos() 179 if(buf == NULL) return (uint16_t) -1; in _lv_bidi_get_visual_pos() 184 return (uint16_t) -1; in _lv_bidi_get_visual_pos() 203 return (uint16_t) -1; in _lv_bidi_get_visual_pos() 255 pos_conv_rd--; in _lv_bidi_process_paragraph() 270 wr -= rd; in _lv_bidi_process_paragraph() 271 pos_conv_wr -= pos_conv_rd; in _lv_bidi_process_paragraph() [all …]
|
D | lv_color.h | 79 * see https://devblogs.microsoft.com/cppblog/msvc-now-correctly-reports-cplusplus 104 /*--------------------------------------- 107 *------------------------------------------*/ 173 /*--------------------------------------- 176 *------------------------------------------*/ 291 * - When converting to bigger color type the LSB weight of 1 LSB is calculated 294 * ---------------------- 295 * 8 bit red LSB = (2^5 - 1) / (2^3 - 1) = 31 / 7 = 4 297 * - When calculating to smaller color type simply shift out the LSBs 300 * ---------------------- [all …]
|
/lvgl-3.4.0/scripts/ |
D | Doxyfile | 16 #--------------------------------------------------------------------------- 18 #--------------------------------------------------------------------------- 21 # that follow. The default is UTF-8 which is also the encoding used for all text 25 # The default value is: UTF-8. 27 DOXYFILE_ENCODING = UTF-8 30 # double-quotes, unless you are using Doxywizard) that should identify the 63 # If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- 73 # If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII 74 # characters to appear in the names of generated files. If set to NO, non-ASCII 85 # Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), [all …]
|
/lvgl-3.4.0/src/extra/libs/sjpg/ |
D | tjpgd.c | 1 /*----------------------------------------------------------------------------/ 2 / TJpgDec - Tiny JPEG Decompressor R0.03 (C)ChaN, 2021 3 /-----------------------------------------------------------------------------/ 11 / * No restriction on use. You can use, modify and redistribute it for 12 / personal, non-profit or commercial products UNDER YOUR RESPONSIBILITY. 15 /-----------------------------------------------------------------------------/ 25 /----------------------------------------------------------------------------*/ 33 #define HUFF_MASK (HUFF_LEN - 1) 37 /*-----------------------------------------------*/ 38 /* Zigzag-order to raster-order conversion table */ [all …]
|