Home
last modified time | relevance | path

Searched full:run (Results 1 – 25 of 62) sorted by relevance

123

/lvgl-3.4.0/.github/workflows/
Dbuild_micropython.yml18 run: |
23 run: |
27 run: git submodule update --init --recursive lib/lv_bindings
31run: make -C ports/${{ matrix.port }} VARIANT=dev DEBUG=1 USER_C_MODULES=../../lib/lv_bindings/bin…
34 run: |
40 run: make -j $(nproc) -C mpy-cross
45 run: |
49 run: |
60 run: make -j $(nproc) -C ports/stm32 BOARD=STM32F7DISC
63run: make -j $(nproc) -C ports/rp2 BOARD=PICO USER_C_MODULES=../../lib/lv_bindings/bindings.cmake
[all …]
Dccpp.yml26 run: scripts/install-prerequisites.sh
28 run: python tests/main.py --build-option=${{ matrix.build_option }} build
37 run: scripts/install-prerequisites.sh
38 - name: Run tests
39 run: python tests/main.py --report test
51 # Run steps on a matrix of 3 arch/distro combinations
66 - uses: uraimo/run-on-arch-action@v2.1.1
67 name: Run tests
76 # The shell to run commands with in the container
93 run: |
Dcompile_docs.yml39 run: |
43 run: |
58 run: scripts/build_html_examples.sh
60 run: docs/build.py
62 run: rm -rf out_html/.doctrees
64 run: |
Dcheck_style.yml16 run: |
21 run: python code-format.py
25 run: |
28 echo "Please apply the preceding diff to your code or run scripts/code-format.py"
38 Please run `scripts/code-format.py` and commit the resulting change.
Dcheck_conf.yml20 run: python lv_conf_internal_gen.py
23run: git diff --exit-code >/dev/null 2>&1 || (echo "Please regenerate lv_conf_internal.h using scr…
/lvgl-3.4.0/docs/get-started/
Dmicropython.md10 Using Micropython, you can write Python3 code and run it even on a bare metal architecture with lim…
14 … 256k of code space and 16k of RAM. No OS is needed, although you can also run it with an OS, if y…
17 …the REPL (interactive prompt) you can type commands and execute them immediately, run scripts, etc.
30 …t things right. With C, each iteration consists of **`Change code` > `Build` > `Flash` > `Run`**.
31 In Micropython it's just **`Change code` > `Run`** ! You can even run commands interactively using …
69 … + Micropython that runs entirely in the browser and allows you to edit a python script and run it.
79 … many platforms. One notable port is "unix", which allows you to build and run Micropython (+LVGL)…
85 In the end, the goal is to run it all on an embedded platform.
Dpc-simulator.md8 You can try out LVGL **using only your PC** (i.e. without any development boards). LVGL will run on…
11 - Hardware independent - Write code, run it on the PC and see the result on a monitor.
12 - Cross-platform - Any Windows, Linux or macOS system can run the PC simulator.
83 Run Eclipse CDT. It will show a dialogue about the **workspace path**. Before accepting the path, c…
92 ### Compile and Run
94 Now you are ready to run LVGL on your PC. Click on the Hammer Icon on the top menu bar to Build the…
96 After a successful build, click on the Play button on the top menu bar to run the project. Now a wi…
Darduino.md10 Note that you need to choose a board powerful enough to run LVGL and your GUI. See the [requiremen…
48 ## Initialize and run LVGL
/lvgl-3.4.0/scripts/
DDoxyfile158 # If left blank the directory from which doxygen is run is used as the path to
420 # symbols. At the end of a run doxygen will report the cache usage and suggest
698 # that represents doxygen's defaults, run doxygen with the -l option. You can
702 # Note that if you run doxygen from a directory containing a file called
835 # run.
1014 # - Run doxygen as normal
1200 # to YES can help to show when doxygen was last run and thus if the
1299 # doxygen will try to run the HTML help compiler on the generated index.hhp.
1390 # qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the
1470 # doxygen run you need to manually remove any form_*.png images from the HTML
[all …]
/lvgl-3.4.0/src/extra/libs/qrcode/
Dqrcodegen.c49 // - They run in at most quadratic time with respect to input arguments.
50 // Most functions run in linear time, and some in constant time.
75 static void addRunToHistory(unsigned char run, unsigned char history[7]);
657 addRunToHistory(0, runHistory); // Dummy run of white in getPenaltyScore()
683 addRunToHistory(0, runHistory); // Dummy run of white in getPenaltyScore()
717 static void addRunToHistory(unsigned char run, unsigned char history[7]) { in addRunToHistory() argument
719 history[0] = run; in addRunToHistory()
723 // Tests whether the given run history has the pattern of ratio 1:1:3:1:1 in the middle, and
725 // Must only be called immediately after a run of white modules has ended.
728 // The maximum QR Code size is 177, hence the run length n <= 177. in hasFinderLikePattern()
/lvgl-3.4.0/tests/
DREADME.md3 The tests in the folder can be run locally and automatically by GitHub CI.
15 ### Run test
16 1. Run all executable tests with `./tests/main.py test`.
19 run executable tests, and generate code coverage
22 For full information on running tests run: `./tests/main.py --help`.
Dmain.py115 '''Run the tests for the given options name.'''
165 description='Build and/or run LVGL tests.', epilog=epilog)
167 help='''the build option name to build or run. When
175 help='build: compile build tests, test: compile/run executable tests.')
/lvgl-3.4.0/src/misc/
Dlv_anim.c83 /*If the list is empty the anim timer was suspended and it's last run measure is invalid*/ in lv_anim_start()
350 /*Flip the run round*/ in anim_timer()
363 …d = anim_run_round; /*The list readying might be reset so need to know which anim has run already*/ in anim_timer()
365 /*The animation will run now for the first time. Call `start_cb`*/ in anim_timer()
Dlv_timer.c98 /*Run all timer from the list*/ in lv_timer_handler()
330 * Find out how much time remains before a timer must be run.
332 * @return the time remaining, or 0 if it needs to be run again
Dlv_timer.h44 uint32_t period; /**< How often the timer should run*/
65 * @return time till it needs to be run next (in ms)
/lvgl-3.4.0/docs/
DCHANGELOG.md369 - fix(bidi): add weak characters to the previous strong character's run [`2777`](https://github.com…
672 - fix(examples) fix MicroPython examples and run the examples with CI [`2339`](https://github.com/l…
771 - test(ci) build and run tests in parallel. [`2515`](https://github.com/lvgl/lvgl/pull/2515)
772 - ci(tests) run tests using ctest [`2503`](https://github.com/lvgl/lvgl/pull/2503)
800 - ci(docs) run apt-get update before installation [`f215174`](https://github.com/lvgl/lvgl/commit/f…
842 - format run code-formtter.sh [`d67dd94`](https://github.com/lvgl/lvgl/commit/d67dd943cadb3d21a3d94…
846 - make test run on mseter and release/v8.* [`227402a`](https://github.com/lvgl/lvgl/commit/227402a8…
1210 - Add `gpu_wait_cb` to wait until the GPU is working. It allows to run CPU a wait only when the ren…
1224 The main new features of v7.4 are run-time font loading, style caching and arc knob with value sett…
/lvgl-3.4.0/docs/overview/
Dimage.md93 If you are generating an image at run-time, you can craft an image variable to display it using LVG…
111 Another (possibly simpler) option to create and display an image at run-time is to use the [Canvas]…
299 The size of the cache can be changed at run-time with `lv_img_cache_set_size(entry_num)`.
/lvgl-3.4.0/tests/unity/
Dgenerate_test_runner.rb62 def run(input_file, output_file, options = nil) method in UnityTestRunnerGenerator
165 # determine line numbers and create tests to run
510 UnityTestRunnerGenerator.new(options).run(ARGV[0], ARGV[1])
/lvgl-3.4.0/tests/src/test_cases/
D_test_template.c8 /* Function run before every test */ in setUp()
13 /* Function run after every test */ in tearDown()
Dtest_switch.c17 /* Function run before every test */ in setUp()
24 /* Function run after every test */ in tearDown()
/lvgl-3.4.0/demos/music/
DREADME.md9 ## Run the demo
26 - run `python sectrum.py my_file.mp3`
/lvgl-3.4.0/env_support/cmsis-pack/
Dgen_pack.sh167 # Run Schema Check (for Linux only):
179 # Run Pack Check and generate PackName file with version
/lvgl-3.4.0/src/core/
Dlv_obj_class.c138 /*Don't let the descendant methods run during destructing the ancestor type*/ in _lv_obj_destruct()
179 /*Don't let the descendant methods run during constructing the ancestor type*/ in lv_obj_construct()
/lvgl-3.4.0/src/hal/
Dlv_hal_indev.h129 /** Run time data of input devices
204 * Update the driver in run time.
/lvgl-3.4.0/src/extra/libs/sjpg/
Dtjpgd.c259 td = pd[i++] | ((b + 1) << 8); /* b15..b8: code length, b7..b0: zero run and data length */ in create_huffman_tbl()
376 return d & 0xFF; /* b7..0: zero run and following data bits */ in huffext()
749 z += bc >> 4; /* Skip leading zero run */ in mcu_load()
750 if (z >= 64) return JDR_FMT1; /* Too long zero run */ in mcu_load()

123