overview.rst 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. .. _overview:
  2. Overview
  3. ========
  4. .. _overview_intro:
  5. Introduction
  6. ------------
  7. .. note::
  8. Since 0.5.0 release of Nuclei SDK, we need to use Nuclei Studio >= 2023.10 or Nuclei Toolchain
  9. >=2023.10 to build and run it, see release :ref:`changelog`.
  10. .. note::
  11. If you are looking for Nuclei N100 SDK for Nuclei 100 series CPU, please refer to https://doc.nucleisys.com/nuclei_n100_sdk
  12. The **Nuclei Software Development Kit (SDK)** is an open-source software platform to
  13. speed up the software development of SoCs based on Nuclei Processor Cores.
  14. This Nuclei SDK is built based on the |NMSIS|, user can access all the APIs provided
  15. by |NMSIS| and also the APIs that provided by Nuclei SDK which mainly for on-board
  16. peripherals access such as GPIO, UART, SPI and I2C, etc.
  17. Nuclei SDK provides a good start base for embedded developers which will help them simplify
  18. software development and improve time-to-market through well-designed software framework.
  19. .. note::
  20. To **get a pdf version** of this documentation, please click `Nuclei SDK Document`_
  21. .. _overview_design_arch:
  22. Design and Architecture
  23. -----------------------
  24. The Nuclei SDK general design and architecture are shown in the block diagram as below.
  25. .. _figure_overview_1:
  26. .. figure:: /asserts/images/nuclei_sdk_diagram.png
  27. :width: 80 %
  28. :align: center
  29. :alt: Nuclei SDK Design and Architecture Diagram
  30. Nuclei SDK Design and Architecture Diagram
  31. As :ref:`figure_overview_1` shown, The Nuclei SDK provides the following features:
  32. * Nuclei Core API service is built on top of |NMSIS|, so silicon vendors of Nuclei processors can easily
  33. port their SoCs to Nuclei SDK, and quickly evaluate software on their SoC.
  34. * **NMSIS-NN** and **NMSIS-DSP** library can be also used in Nuclei SDK, and the prebuilt libraries are
  35. included in **NMSIS/Library** folder of Nuclei SDK.
  36. * Mainly support two Nuclei Processor based SoCs, :ref:`design_soc_evalsoc` and :ref:`design_soc_gd32vf103`
  37. * Provided realtime operation system service via :ref:`design_rtos_freertos`, :ref:`design_rtos_ucosii`,
  38. :ref:`design_rtos_rtthread` and :ref:`design_rtos_threadx`.
  39. * Provided bare-metal service for embedded system software beginners and resource-limited use-cases.
  40. * Currently Nuclei SDK doesn't define any common device APIs to access GPIO/I2C/SPI/UART devices, which still
  41. relies on the device/peripheral APIs from firmware libraries provided by various silicon vendors, such as current
  42. supported :ref:`design_soc_gd32vf103`.
  43. * Applications are logically separated into three parts:
  44. - **General applications for all Nuclei Processors**: In the Nuclei SDK software code, the applications provided
  45. are all general applications which can run on all Nuclei Processors, with basic UART service to provide ``printf`` function.
  46. - **Nuclei Eval SoC applications**: These applications are not included in the Nuclei SDK software code, and it is
  47. *maintained separately*, see application :ref:`design_app_overview`, which will use resource from Nuclei Eval SoC
  48. and its evaluation boards to develop applications, which will not be compatible with different boards.
  49. - **GD32VF103 SoC applications**: These applications are not included in the Nuclei SDK software code, and it is
  50. *maintained separately*, which will use resource from GD32VF103 SoC and its evaluation boards to develop applications, which will
  51. not be compatible with different boards.
  52. .. _overview_getstarted:
  53. Get Started
  54. -----------
  55. Please refer to :ref:`quickstart` to get started to take a try with Nuclei SDK.
  56. .. _overview_contribute:
  57. Contributing
  58. ------------
  59. Contributing to Nuclei SDK is welcomed, if you have any issue or pull request
  60. want to open, you can take a look at :ref:`contribute` section.
  61. .. _overview_copyright:
  62. Copyright
  63. ---------
  64. Copyright (c) 2019 - Present, Nuclei System Technology. All rights reserved.
  65. Redistribution and use in source and binary forms, with or without modification,
  66. are permitted provided that the following conditions are met:
  67. 1. Redistributions of source code must retain the above copyright notice, this
  68. list of conditions and the following disclaimer.
  69. 2. Redistributions in binary form must reproduce the above copyright notice,
  70. this list of conditions and the following disclaimer in the documentation
  71. and/or other materials provided with the distribution.
  72. 3. Neither the name of the Nuclei System Technology., nor the names of its contributors
  73. may be used to endorse or promote products derived from this software without
  74. specific prior written permission.
  75. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  76. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  77. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  78. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
  79. ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  80. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  81. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  82. ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  83. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  84. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. NY THEORY OF
  85. LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
  86. OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  87. ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  88. .. _overview_license:
  89. License
  90. -------
  91. Nuclei SDK is an opensource project licensed by :ref:`Apache License 2.0 <license>`.
  92. .. _Nuclei SDK Document: https://doc.nucleisys.com/nuclei_sdk/nucleisdk.pdf