1. 27 6月, 2024 1 次提交
  2. 04 8月, 2023 1 次提交
  3. 24 7月, 2023 3 次提交
  4. 03 2月, 2023 1 次提交
    • 柯钿爽's avatar
      Optimize Samples · a2822fc3
      柯钿爽编写于
      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
      a2822fc3
  5. 30 12月, 2022 1 次提交
  6. 29 4月, 2022 1 次提交
  7. 23 3月, 2022 1 次提交
  8. 10 12月, 2021 1 次提交
  9. 12 4月, 2021 1 次提交
  10. 18 1月, 2021 1 次提交
  11. 02 9月, 2020 1 次提交
  12. 08 6月, 2020 1 次提交
  13. 13 5月, 2020 1 次提交
    • Martí Bolívar's avatar
      devicetree: remove DT_HAS_NODE_STATUS_OKAY · 6e8775ff
      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: default avatarMartí Bolívar <marti.bolivar@nordicsemi.no>
      6e8775ff
  14. 06 5月, 2020 1 次提交
  15. 31 3月, 2020 2 次提交
    • Andy Ross's avatar
      timeout: Fix up API usage · 32bb2395
      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: default avatarAndy Ross <andrew.j.ross@intel.com>
      32bb2395
    • Kumar Gala's avatar
      samples: drivers: Convert to new DT_INST macros · d8432ce8
      Kumar Gala编写于
      Convert older DT_INST_ macro use the new include/devicetree.h
      DT_INST macro APIs.
      Signed-off-by: default avatarKumar Gala <kumar.gala@linaro.org>
      d8432ce8
  16. 26 1月, 2020 1 次提交
  17. 20 1月, 2020 1 次提交
  18. 10 1月, 2020 1 次提交