- 27 6月, 2024 1 次提交
-
-
由彭国庆编写于
-
- 04 8月, 2023 1 次提交
-
-
由TreeNewbee编写于
-
- 24 7月, 2023 3 次提交
- 03 2月, 2023 1 次提交
-
-
由柯钿爽编写于
nvs sample: Fix connection target timeout when burning Video sample: Add board overlay and optimize pc show_image.py scripts ipm sample: Remove sample ipm_csk6(No CP firmware) Other: Modify board overlay Add Board type judgment and error prompt during building
-
- 30 12月, 2022 1 次提交
-
-
由覃晓庆编写于
-
- 29 4月, 2022 1 次提交
-
-
由韦臻杰编写于
-
- 23 3月, 2022 1 次提交
-
-
由Fujie Li编写于
-
- 10 12月, 2021 1 次提交
-
-
由Johann Fischer编写于
Rework samples to use DEVICE_DT_GET and DT_CHOSEN to get default display controller device. Signed-off-by:
Johann Fischer <johann.fischer@nordicsemi.no>
-
- 12 4月, 2021 1 次提交
-
-
由Kim Bøndergaard编写于
Requires a ST7735R based LCD Signed-off-by:
Kim Bøndergaard <kim@fam-boendergaard.dk> Signed-off-by:
Kim Bøndergaard <kibo@prevas.dk>
-
- 18 1月, 2021 1 次提交
-
-
由Kim Bøndergaard编写于
Currently the following shields will thus be supported waveshare_epaper_gdeh0154a07 waveshare_epaper_gdeh0213b1 waveshare_epaper_gdeh0213b72 waveshare_epaper_gdeh029a1 Signed-off-by:
Kim Bøndergaard <kim@fam-boendergaard.dk> Signed-off-by:
Kim Bøndergaard <kibo@prevas.dk>
-
- 02 9月, 2020 1 次提交
-
-
由Tomasz Bursztyka编写于
Now that device_api attribute is unmodified at runtime, as well as all the other attributes, it is possible to switch all device driver instance to be constant. A coccinelle rule is used for this: @r_const_dev_1 disable optional_qualifier @ @@ -struct device * +const struct device * @r_const_dev_2 disable optional_qualifier @ @@ -struct device * const +const struct device * Fixes #27399 Signed-off-by:
Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
-
- 08 6月, 2020 1 次提交
-
-
由Kumar Gala编写于
git grep -l 'u\(8\|16\|32\|64\)_t' | \ xargs sed -i "s/u\(8\|16\|32\|64\)_t/uint\1_t/g" git grep -l 's\(8\|16\|32\|64\)_t' | \ xargs sed -i "s/s\(8\|16\|32\|64\)_t/int\1_t/g" Signed-off-by:
Kumar Gala <kumar.gala@linaro.org>
-
- 13 5月, 2020 1 次提交
-
-
由Martí Bolívar编写于
Several reviewers agreed that DT_HAS_NODE_STATUS_OKAY(...) was an undesirable API for the following reasons: - it's inconsistent with the rest of the DT_NODE_HAS_FOO names - DT_NODE_HAS_FOO_BAR_BAZ(node) was agreed upon as a shorthand for macros which are equivalent to DT_NODE_HAS_FOO(node) && DT_NODE_HAS_BAR(node) && - DT_NODE_HAS_BAZ(node), and DT_HAS_NODE_STATUS_OKAY is an odd duck - DT_NODE_HAS_STATUS(..., okay) was viewed as more readable anyway - it is seen as a somewhat aesthetically challenged name Replace all users with DT_NODE_HAS_STATUS(..., okay), which is semantically equivalent. This is mostly done with sed, but a few remaining cases were done by hand, along with whitespace, docs, and comment changes. These special cases include the Nordic SOC static assert files. Signed-off-by:
Martí Bolívar <marti.bolivar@nordicsemi.no>
-
- 06 5月, 2020 1 次提交
-
-
由Kumar Gala编写于
Rename DT_HAS_NODE to DT_HAS_NODE_STATUS_OKAY so the semantics are clear. As going forward DT_HAS_NODE will report if a NODE exists regardless of its status. Signed-off-by:
Kumar Gala <kumar.gala@linaro.org>
-
- 31 3月, 2020 2 次提交
-
-
由Andy Ross编写于
Kernel timeouts have always been a 32 bit integer despite the existence of generation macros, and existing code has been inconsistent about using them. Upcoming commits are going to make the timeout arguments opaque, so fix things up to be rigorously correct. Changes include: + Adding a K_TIMEOUT_EQ() macro for code that needs to compare timeout values for equality (e.g. with K_FOREVER or K_NO_WAIT). + Adding a k_msleep() synonym for k_sleep() which can continue to take integral arguments as k_sleep() moves away to timeout arguments. + Pervasively using the K_MSEC(), K_SECONDS(), et. al. macros to generate timeout arguments. + Removing the usage of K_NO_WAIT as the final argument to K_THREAD_DEFINE(). This is just a count of milliseconds and we need to use a zero. This patch include no logic changes and should not affect generated code at all. Signed-off-by:
Andy Ross <andrew.j.ross@intel.com>
-
由Kumar Gala编写于
Convert older DT_INST_ macro use the new include/devicetree.h DT_INST macro APIs. Signed-off-by:
Kumar Gala <kumar.gala@linaro.org>
-
- 26 1月, 2020 1 次提交
-
-
由Peter Bigot编写于
drivers/display.h was being included both as a double-quote direct include and an angle-quote in the drivers parent directory. Both resolve to the same file. Remove the unqualified reference. Signed-off-by:
Peter Bigot <peter.bigot@nordicsemi.no>
-
- 20 1月, 2020 1 次提交
-
-
由Jan Van Winkel编写于
Added support for BGR565 to display sample Signed-off-by:
Jan Van Winkel <jan.van_winkel@dxplore.eu>
-
- 10 1月, 2020 1 次提交
-
-
由Jan Van Winkel编写于
Added a generic display shield sample. Signed-off-by:
Jan Van Winkel <jan.van_winkel@dxplore.eu>
-