mirror of
https://github.com/eclipse-threadx/levelx.git
synced 2026-09-14 12:37:01 +08:00
Compare commits
23
Commits
v6.4.0_rel
...
v6.4.1_rel
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f8899e5d6d | ||
|
|
acc5190739 | ||
|
|
79cbf4019f | ||
|
|
2a963969bc | ||
|
|
1317123fdc | ||
|
|
814a8a346c | ||
|
|
34616e26e7 | ||
|
|
f840cf4ce6 | ||
|
|
ec683ddf14 | ||
|
|
1d6706dfa9 | ||
|
|
6809f87fdd | ||
|
|
9b766d144f | ||
|
|
fb4b913dc2 | ||
|
|
01517ad256 | ||
|
|
9f85e68bd1 | ||
|
|
bc8f7f3623 | ||
|
|
3ca016c042 | ||
|
|
4e747beb15 | ||
|
|
151863ad7c | ||
|
|
d7b2a72452 | ||
|
|
e432e2cfa2 | ||
|
|
0ea87a458d | ||
|
|
f8ab75e3ee |
+69
-11
@@ -1,14 +1,72 @@
|
|||||||
# Contributing
|
# Contributing to Eclipse ThreadX
|
||||||
|
|
||||||
This project welcomes contributions and suggestions. Most contributions require you to
|
Thanks for your interest in this project.
|
||||||
agree to a Contributor License Agreement (CLA) declaring that you have the right to,
|
|
||||||
and actually do, grant us the rights to use your contribution. For details, visit
|
|
||||||
https://cla.microsoft.com.
|
|
||||||
|
|
||||||
When you submit a pull request, a CLA-bot will automatically determine whether you need
|
## Project description
|
||||||
to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the
|
|
||||||
instructions provided by the bot. You will only need to do this once across all repositories using our CLA.
|
|
||||||
|
|
||||||
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
|
Eclipse ThreadX provides a vendor-neutral, open source, safety certified OS for
|
||||||
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/)
|
real-time applications published on under a permissive license. The Eclipse
|
||||||
or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
|
ThreadX suite encompasses:
|
||||||
|
* ThreadX - advanced real-time operating system (RTOS) designed specifically for deeply embedded applications
|
||||||
|
* NetX Duo - advanced, industrial-grade TCP/IP network stack designed specifically for deeply embedded real-time and IoT applications
|
||||||
|
* FileX - high-performance, FAT-compatible file system that’s fully integrated with ThreadX kernel
|
||||||
|
* GUIX - provides a complete, embedded graphical user interface (GUI) library
|
||||||
|
* USBX - high-performance USB host, device, and on-the-go (OTG) embedded stack, that is fully integrated with ThreadX kernel
|
||||||
|
* LevelX - Flash Wear Leveling for FileX and stand-alone purposes
|
||||||
|
* GuiX Studio - design environment, facilitating the creation and maintenance of all graphical elements for GUIX
|
||||||
|
* TraceX - analysis tool that provides a graphical view of real-time system events to better understand the behavior of real-time systems
|
||||||
|
|
||||||
|
Project site: https://projects.eclipse.org/projects/iot.threadx
|
||||||
|
|
||||||
|
## Terms of Use
|
||||||
|
|
||||||
|
This repository is subject to the Terms of Use of the Eclipse Foundation
|
||||||
|
https://www.eclipse.org/legal/termsofuse.php
|
||||||
|
|
||||||
|
## Developer resources
|
||||||
|
|
||||||
|
Information regarding source code management, builds, coding standards, and more.
|
||||||
|
https://projects.eclipse.org/projects/iot.threadx/developer
|
||||||
|
|
||||||
|
The project maintains the following source code repositories
|
||||||
|
|
||||||
|
* https://github.com/eclipse-threadx/.github
|
||||||
|
* https://github.com/eclipse-threadx/cmsis-packs
|
||||||
|
* https://github.com/eclipse-threadx/filex
|
||||||
|
* https://github.com/eclipse-threadx/getting-started
|
||||||
|
* https://github.com/eclipse-threadx/guix
|
||||||
|
* https://github.com/eclipse-threadx/levelx
|
||||||
|
* https://github.com/eclipse-threadx/netxduo
|
||||||
|
* https://github.com/eclipse-threadx/rtos-docs
|
||||||
|
* https://github.com/eclipse-threadx/samples
|
||||||
|
* https://github.com/eclipse-threadx/threadx
|
||||||
|
* https://github.com/eclipse-threadx/threadx-learn-samples
|
||||||
|
* https://github.com/eclipse-threadx/tracex
|
||||||
|
* https://github.com/eclipse-threadx/usbx
|
||||||
|
|
||||||
|
## Eclipse Development Process
|
||||||
|
|
||||||
|
This Eclipse Foundation open project is governed by the Eclipse Foundation
|
||||||
|
Development Process and operates under the terms of the Eclipse IP Policy.
|
||||||
|
|
||||||
|
* https://eclipse.org/projects/dev_process
|
||||||
|
* https://www.eclipse.org/org/documents/Eclipse_IP_Policy.pdf
|
||||||
|
|
||||||
|
## Eclipse Contributor Agreement
|
||||||
|
|
||||||
|
In order to be able to contribute to Eclipse Foundation projects you must electronically sign the Eclipse Contributor Agreement (ECA).
|
||||||
|
https://www.eclipse.org/legal/ECA.php
|
||||||
|
|
||||||
|
The ECA provides the Eclipse Foundation with a permanent record that you agree
|
||||||
|
that each of your contributions will comply with the commitments documented in
|
||||||
|
the Developer Certificate of Origin (DCO). Having an ECA on file associated with
|
||||||
|
the email address matching the "Author" field of your contribution's Git commits
|
||||||
|
fulfills the DCO's requirement that you sign-off on your contributions.
|
||||||
|
|
||||||
|
For more information, please see the Eclipse Committer Handbook:
|
||||||
|
https://www.eclipse.org/projects/handbook/#resources-commit
|
||||||
|
|
||||||
|
## Contact
|
||||||
|
|
||||||
|
Contact the project developers via the project's "dev" list.
|
||||||
|
https://accounts.eclipse.org/mailing-list/threadx-dev
|
||||||
|
|||||||
+17
-245
@@ -1,249 +1,21 @@
|
|||||||
MICROSOFT SOFTWARE LICENSE TERMS
|
MIT License
|
||||||
|
|
||||||
MICROSOFT AZURE RTOS
|
Copyright (c) 2024 - present Microsoft Corporation
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
These license terms are an agreement between you and Microsoft Corporation (or
|
The above copyright notice and this permission notice shall be included in all
|
||||||
one of its affiliates). They apply to the software named above and any Microsoft
|
copies or substantial portions of the Software.
|
||||||
services or software updates (except to the extent such services or updates are
|
|
||||||
accompanied by new or additional terms, in which case those different terms
|
|
||||||
apply prospectively and do not alter your or Microsoft’s rights relating to
|
|
||||||
pre-updated software or services). IF YOU COMPLY WITH THESE LICENSE TERMS, YOU
|
|
||||||
HAVE THE RIGHTS BELOW. BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS.
|
|
||||||
|
|
||||||
1. INSTALLATION AND USE RIGHTS.
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
a) General. You may (I) install, use and modify the software and (ii) install and use the included Microsoft
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
Applications (if any), each solely for internal development, testing and evaluation purposes.
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
Distribution or production use is governed by the license terms set forth in
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
Section 2. You may also obtain distribution or production use rights through a separate agreement with
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
Microsoft.
|
SOFTWARE.
|
||||||
|
|
||||||
b) Contributions. Microsoft welcomes contributions to this software. In the event
|
|
||||||
that you make a contribution to this software you will be required to agree to a
|
|
||||||
Contributor License Agreement (CLA) declaring that you have the right to, and
|
|
||||||
actually do, grant Microsoft the rights to use your contribution. For details,
|
|
||||||
visit https://cla.microsoft.com.
|
|
||||||
|
|
||||||
c) Included Microsoft Applications. The software may include other Microsoft
|
|
||||||
applications which are governed by the licenses embedded in or made available
|
|
||||||
with those applications.
|
|
||||||
|
|
||||||
d) Third Party Components. The software may include third party components with
|
|
||||||
separate legal notices or governed by other agreements, as may be described
|
|
||||||
within the software or in the ThirdPartyNotices file(s) accompanying the
|
|
||||||
software.
|
|
||||||
|
|
||||||
e) Competitive Benchmarking. If you are a direct competitor, and you access or use
|
|
||||||
the software for purposes of competitive benchmarking, analysis, or intelligence
|
|
||||||
gathering, you waive as against Microsoft, its subsidiaries, and its affiliated
|
|
||||||
companies (including prospectively) any competitive use, access, and
|
|
||||||
benchmarking test restrictions in the terms governing your software to the
|
|
||||||
extent your terms of use are, or purport to be, more restrictive than
|
|
||||||
Microsoft’s terms. If you do not waive any such purported restrictions in the
|
|
||||||
terms governing your software, you are not allowed to access or use this
|
|
||||||
software, and will not do so.
|
|
||||||
|
|
||||||
2. DISTRIBUTION AND PRODUCTION USE. If you have obtained and/or are developing on
|
|
||||||
microprocessor(s) and/or microcontroller(s) (“hardware”) listed in the file
|
|
||||||
named “LICENSED-HARDWARE.txt” included in the repository and/or distributed with
|
|
||||||
the software you have the following rights in and to the software solely when
|
|
||||||
used in combination with the hardware. In the event hardware is not listed in
|
|
||||||
the LICENSED-HARDWARE.txt file, you do not have the rights in this Section 2.
|
|
||||||
|
|
||||||
a) Distribution and Production Use Rights.
|
|
||||||
|
|
||||||
i. You may use the software in production (e.g. program the modified or unmodified
|
|
||||||
software to devices you own or control) and distribute (i.e. make available to
|
|
||||||
third parties) the modified or unmodified binary image produced from this code.
|
|
||||||
|
|
||||||
ii. You may permit your device distributors or developers to copy and distribute the
|
|
||||||
binary image as programmed or to be programmed to your devices.
|
|
||||||
|
|
||||||
iii. You may redistribute the unmodified or modified source to your device
|
|
||||||
distributors or developers. Modifications must be clearly marked. Any
|
|
||||||
redistribution in source code form must contain this license and any other
|
|
||||||
licenses that accompany the software.
|
|
||||||
|
|
||||||
b) Requirements. For any code you distribute, you must:
|
|
||||||
|
|
||||||
i. when distributed in binary form, except as embedded in a device, include with
|
|
||||||
such distribution the terms of this agreement;
|
|
||||||
ii. when distributed in source code form to distributors or developers of your
|
|
||||||
devices, include with such distribution the terms of this agreement; and
|
|
||||||
iii. indemnify, defend and hold harmless Microsoft from any claims, including claims arising from any High Risk Uses, and inclusive of attorneys’ fees, related to the distribution or use of your devices that include the software, except to the extent that any intellectual property claim is based solely on the unmodified software.
|
|
||||||
|
|
||||||
c) Restrictions. You may not:
|
|
||||||
i. use or modify the software to create competing real time operating system
|
|
||||||
software;
|
|
||||||
|
|
||||||
ii. remove any copyright notices or licenses contained in the software;
|
|
||||||
|
|
||||||
iii. use Microsoft’s trademarks or trade dress in your application in any way that
|
|
||||||
suggests your device or application comes from or is endorsed by Microsoft;
|
|
||||||
|
|
||||||
iv. transfer individual components, specific libraries, classes, functions or code
|
|
||||||
fragments of the software separately for purposes unrelated to the software; or
|
|
||||||
|
|
||||||
v. use or distribute the software in any way that would subject the software or
|
|
||||||
Microsoft’s intellectual property or technology to any other license terms.
|
|
||||||
|
|
||||||
3. SCOPE OF LICENSE. The software is licensed, not sold. Microsoft reserves all
|
|
||||||
other rights. Unless applicable law gives you more rights despite this
|
|
||||||
limitation, you will not (and have no right to):
|
|
||||||
|
|
||||||
a) remove, minimize, block, or modify any notices of Microsoft or its suppliers in
|
|
||||||
the software;
|
|
||||||
|
|
||||||
b) use the software in any way that is against the law or to create or propagate
|
|
||||||
malware; or
|
|
||||||
|
|
||||||
c) share, publish, distribute, or lease the software (except as permitted in
|
|
||||||
Section 2 above), or provide the software as a stand-alone offering for others
|
|
||||||
to use.
|
|
||||||
|
|
||||||
4. DATA. This software may interact with other Microsoft products that collect data
|
|
||||||
that is transmitted to Microsoft. To learn more about how Microsoft processes
|
|
||||||
personal data we collect, please see the Microsoft Privacy Statement at
|
|
||||||
https://go.microsoft.com/fwlink/?LinkId=248681.
|
|
||||||
|
|
||||||
5. EXPORT RESTRICTIONS. You must comply with all domestic and international export
|
|
||||||
laws and regulations that apply to the software, which include restrictions on
|
|
||||||
destinations, end users, and end use. For further information on export
|
|
||||||
restrictions, visit https://aka.ms/exporting.
|
|
||||||
|
|
||||||
6. SUPPORT SERVICES. Microsoft is not obligated under this agreement to provide any
|
|
||||||
support services for the software. Any support provided is “as is”, “with all
|
|
||||||
faults”, and without warranty of any kind.
|
|
||||||
|
|
||||||
7. UPDATES. Microsoft may periodically update the software. You may obtain updates
|
|
||||||
only from Microsoft or Microsoft-authorized sources. Updates may not include or
|
|
||||||
support all existing software features, services, or peripheral devices.
|
|
||||||
|
|
||||||
8. TERMINATION. Without prejudice to any other rights, Microsoft may terminate this
|
|
||||||
agreement if you fail to comply with any of its terms or conditions. In such
|
|
||||||
event, you must destroy all copies of the software and all of its component
|
|
||||||
parts.
|
|
||||||
|
|
||||||
9. ENTIRE AGREEMENT. This agreement, and any other terms Microsoft may provide for
|
|
||||||
supplements, updates, or third-party applications, is the entire agreement for
|
|
||||||
the software. To the extent you have entered into a separate agreement with
|
|
||||||
Microsoft relating specifically to the software, the terms in such agreement
|
|
||||||
shall control.
|
|
||||||
|
|
||||||
10. APPLICABLE LAW AND PLACE TO RESOLVE DISPUTES. If you acquired the software in
|
|
||||||
the United States or Canada, the laws of the state or province where you live
|
|
||||||
(or, if a business, where your principal place of business is located) govern
|
|
||||||
the interpretation of this agreement, claims for its breach, and all other
|
|
||||||
claims (including consumer protection, unfair competition, and tort claims),
|
|
||||||
regardless of conflict of laws principles. If you acquired the software in any
|
|
||||||
other country, its laws apply. If U.S. federal jurisdiction exists, you and
|
|
||||||
Microsoft consent to exclusive jurisdiction and venue in the federal court in
|
|
||||||
King County, Washington for all disputes heard in court. If not, you and
|
|
||||||
Microsoft consent to exclusive jurisdiction and venue in the Superior Court of
|
|
||||||
King County, Washington for all disputes heard in court.
|
|
||||||
|
|
||||||
11. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal
|
|
||||||
rights. You may have other rights, including consumer rights, under the laws of
|
|
||||||
your state or country. Separate and apart from your relationship with Microsoft,
|
|
||||||
you may also have rights with respect to the party from which you acquired the
|
|
||||||
software. This agreement does not change those other rights if the laws of your
|
|
||||||
state or country do not permit it to do so. For example, if you acquired the
|
|
||||||
software in one of the below regions, or mandatory country law applies, then the
|
|
||||||
following provisions apply to you:
|
|
||||||
|
|
||||||
a) Australia. You have statutory guarantees under the Australian Consumer Law and
|
|
||||||
nothing in this agreement is intended to affect those rights.
|
|
||||||
|
|
||||||
b) Germany and Austria.
|
|
||||||
|
|
||||||
i. Warranty. The properly licensed software will perform substantially as
|
|
||||||
described in any Microsoft materials that accompany the software. However,
|
|
||||||
Microsoft gives no contractual guarantee in relation to the licensed software.
|
|
||||||
|
|
||||||
ii. Limitation of Liability. In case of intentional conduct, gross negligence,
|
|
||||||
claims based on the Product Liability Act, as well as, in case of death or
|
|
||||||
personal or physical injury, Microsoft is liable according to the statutory law.
|
|
||||||
|
|
||||||
|
|
||||||
Subject to the foregoing clause ii., Microsoft will only be liable for slight
|
|
||||||
negligence if Microsoft is in breach of such material contractual obligations,
|
|
||||||
the fulfillment of which facilitate the due performance of this agreement, the
|
|
||||||
breach of which would endanger the purpose of this agreement and the compliance
|
|
||||||
with which a party may constantly trust in (so-called "cardinal obligations").
|
|
||||||
In other cases of slight negligence, Microsoft will not be liable for slight
|
|
||||||
negligence.
|
|
||||||
12. DISCLAIMER OF WARRANTY.
|
|
||||||
a) THE SOFTWARE IS LICENSED “AS IS.” YOU BEAR THE RISK OF
|
|
||||||
USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES, OR CONDITIONS. TO
|
|
||||||
THE EXTENT PERMITTED UNDER APPLICABLE LAWS, MICROSOFT EXCLUDES ALL IMPLIED
|
|
||||||
WARRANTIES, INCLUDING MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND
|
|
||||||
NON-INFRINGEMENT.
|
|
||||||
b) HIGH RISK USE DISCLAIMER. WARNING: THE SOFTWARE IS NOT DESIGNED OR INTENDED FOR USE WHERE FAILURE OR FAULT OF ANY KIND OF THE SOFTWARE COULD RESULT IN DEATH OR SERIOUS BODILY INJURY, OR IN PHYSICAL OR ENVIRONMENTAL DAMAGE (“collectively High Risk Use”). Accordingly, You must design and implement your hardware and software such that, in the event of any interruption, defect, error, or other failure of the software, the safety of people, property, and the environment are not reduced below a level that is reasonable, appropriate, and legal, whether in general or for a specific industry. Your High Risk Use of the software is at Your own risk.
|
|
||||||
|
|
||||||
13. LIMITATION ON AND EXCLUSION OF DAMAGES. IF YOU HAVE ANY BASIS FOR RECOVERING
|
|
||||||
DAMAGES DESPITE THE PRECEDING DISCLAIMER OF WARRANTY, YOU CAN RECOVER FROM
|
|
||||||
MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT
|
|
||||||
RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL,
|
|
||||||
INDIRECT, OR INCIDENTAL DAMAGES.
|
|
||||||
|
|
||||||
This limitation applies to (a) anything related to the software, services,
|
|
||||||
content (including code) on third party Internet sites, or third party
|
|
||||||
applications; and (b) claims for breach of contract, warranty, guarantee, or
|
|
||||||
condition; strict liability, negligence, or other tort; or any other claim; in
|
|
||||||
each case to the extent permitted by applicable law.
|
|
||||||
|
|
||||||
It also applies even if Microsoft knew or should have known about the
|
|
||||||
possibility of the damages. The above limitation or exclusion may not apply to
|
|
||||||
you because your state, province, or country may not allow the exclusion or
|
|
||||||
limitation of incidental, consequential, or other damages.
|
|
||||||
|
|
||||||
Please note: As this software is distributed in Canada, some of the clauses in
|
|
||||||
this agreement are provided below in French.
|
|
||||||
|
|
||||||
Remarque: Ce logiciel étant distribué au Canada, certaines des clauses dans ce
|
|
||||||
contrat sont fournies ci-dessous en français.
|
|
||||||
|
|
||||||
EXONÉRATION DE GARANTIE.
|
|
||||||
a) Le logiciel visé par une licence est offert « tel quel
|
|
||||||
». Toute utilisation de ce logiciel est à votre seule risque et péril. Microsoft
|
|
||||||
n’accorde aucune autre garantie expresse. Vous pouvez bénéficier de droits
|
|
||||||
additionnels en vertu du droit local sur la protection des consommateurs, que ce
|
|
||||||
contrat ne peut modifier. La ou elles sont permises par le droit locale, les
|
|
||||||
garanties implicites de qualité marchande, d’adéquation à un usage particulier
|
|
||||||
et d’absence de contrefaçon sont exclues.
|
|
||||||
b) CLAUSE D’EXCLUSION DE RESPONSABILITÉ RELATIVE À L’UTILISATION À HAUT RISQUE.
|
|
||||||
AVERTISSEMENT: LE LOGICIEL N’EST PAS CONÇU OU DESTINÉ À ÊTRE UTILISÉ LORSQU’UNE
|
|
||||||
DÉFAILLANCE OU UN DÉFAUT DE QUELQUE NATURE QUE CE SOIT POURRAIT ENTRAÎNER LA
|
|
||||||
MORT OU DES BLESSURES CORPORELLES GRAVES, OU DES DOMMAGES PHYSIQUES OU
|
|
||||||
ENVIRONNEMENTAUX (« Utilisation à haut risque »). Par conséquent, vous devez concevoir et mettre en
|
|
||||||
œuvre votre équipement et votre logiciel de manière à ce que, en cas d’interruption, de défaut, d’erreur
|
|
||||||
ou de toute autre défaillance du logiciel, la sécurité des personnes, des biens et de l’environnement ne
|
|
||||||
soit pas réduite en dessous d’un niveau raisonnable, approprié et légal, que ce soit en général ou pour
|
|
||||||
un secteur spécifique. Votre utilisation à haut risque du logiciel est à vos propres risques.
|
|
||||||
|
|
||||||
LIMITATION DES DOMMAGES-INTÉRÊTS ET EXCLUSION DE RESPONSABILITÉ POUR LES
|
|
||||||
DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une
|
|
||||||
indemnisation en cas de dommages directs uniquement à hauteur de 5,00 $ US. Vous
|
|
||||||
ne pouvez prétendre à aucune indemnisation pour les autres dommages, y compris
|
|
||||||
les dommages spéciaux, indirects ou accessoires et pertes de bénéfices.
|
|
||||||
|
|
||||||
Cette limitation concerne:
|
|
||||||
|
|
||||||
•tout ce qui est relié au logiciel, aux services ou au contenu (y compris le
|
|
||||||
code) figurant sur des sites Internet tiers ou dans des programmes tiers; et
|
|
||||||
|
|
||||||
•les réclamations au titre de violation de contrat ou de garantie, ou au titre
|
|
||||||
de responsabilité stricte, de négligence ou d’une autre faute dans la limite
|
|
||||||
autorisée par la loi en vigueur.
|
|
||||||
|
|
||||||
Elle s’applique également, même si Microsoft connaissait ou devrait connaître
|
|
||||||
l’éventualité d’un tel dommage. Si votre pays n’autorise pas l’exclusion ou la
|
|
||||||
limitation de responsabilité pour les dommages indirects, accessoires ou de
|
|
||||||
quelque nature que ce soit, il se peut que la limitation ou l’exclusion
|
|
||||||
ci-dessus ne s’appliquera pas à votre égard.
|
|
||||||
|
|
||||||
EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous
|
|
||||||
pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent
|
|
||||||
contrat ne modifie pas les droits que vous confèrent les lois de votre pays si
|
|
||||||
celles-ci ne le permettent pas.
|
|
||||||
|
|||||||
@@ -1,45 +0,0 @@
|
|||||||
LICENSED HARDWARE LIST
|
|
||||||
|
|
||||||
Last Updated: 2023-02-10
|
|
||||||
|
|
||||||
Microsoft has entered into OEM Agreements with manufacturers of the following
|
|
||||||
microprocessors and microcontrollers (the “hardware”) to enable those
|
|
||||||
manufacturers to include and distribute Azure RTOS in certain hardware. If you
|
|
||||||
have obtained and/or are developing on microprocessor(s) and/or
|
|
||||||
microcontroller(s) (“hardware”) listed below you inherit the “Distribution and
|
|
||||||
Production Use” rights in Section 2 of the Microsoft Software License Terms for
|
|
||||||
Microsoft Azure RTOS. If hardware is not listed below, you do not have those
|
|
||||||
rights.
|
|
||||||
|
|
||||||
|
|
||||||
STMicroelectronics:
|
|
||||||
|
|
||||||
STM32 MCUs
|
|
||||||
STM32 MPUs
|
|
||||||
|
|
||||||
MediaTek:
|
|
||||||
|
|
||||||
MT3620 MCU (Azure Sphere)
|
|
||||||
|
|
||||||
Microchip:
|
|
||||||
|
|
||||||
PIC 32-bit MCUs
|
|
||||||
SAM 32-bit MCUs
|
|
||||||
SAM 32-bit MPUs
|
|
||||||
|
|
||||||
NXP:
|
|
||||||
|
|
||||||
i.MX RT10xx and RT116x/7x series crossover MCUs
|
|
||||||
LPC5500 series
|
|
||||||
MCX N series
|
|
||||||
|
|
||||||
Renesas:
|
|
||||||
|
|
||||||
Synergy Platform
|
|
||||||
RX Family of MCUs
|
|
||||||
RA Family of MCUs
|
|
||||||
RZ Family of MPUs
|
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
More coming soon. Please check back frequently for updates.
|
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
# Azure RTOS LevelX
|
# Eclipse ThreadX LevelX
|
||||||
|
|
||||||
LevelX provides NAND and NOR flash wear leveling facilities to embedded applications. Since both NAND and NOR flash memory can only be erased a finite number of times, it’s critical to distribute the flash memory use evenly. This is typically called **wear leveling** and is the purpose behind LevelX. LevelX presents to the user an array of logical sectors that are mapped to physical flash memory inside of LevelX. Applications may use LevelX in conjunction with FileX or may read/write logical sectors directly. LevelX is designed for fault tolerance. Flash updates are performed in a multiple-step process that can be interrupted in each step. LevelX automatically recovers to the optimal state during the next operation.
|
LevelX provides NAND and NOR flash wear leveling facilities to embedded applications. Since both NAND and NOR flash memory can only be erased a finite number of times, it’s critical to distribute the flash memory use evenly. This is typically called **wear leveling** and is the purpose behind LevelX. LevelX presents to the user an array of logical sectors that are mapped to physical flash memory inside of LevelX. Applications may use LevelX in conjunction with FileX or may read/write logical sectors directly. LevelX is designed for fault tolerance. Flash updates are performed in a multiple-step process that can be interrupted in each step. LevelX automatically recovers to the optimal state during the next operation.
|
||||||
|
|
||||||
## Getting Started
|
## Getting Started
|
||||||
|
|
||||||
Azure RTOS LevelX as part of Azure RTOS has been integrated to the semiconductor's SDKs and development environment. You can develop using the tools of choice from [STMicroelectronics](https://www.st.com/content/st_com/en/campaigns/x-cube-azrtos-azure-rtos-stm32.html), [NXP](https://www.nxp.com/design/software/embedded-software/azure-rtos-for-nxp-microcontrollers:AZURE-RTOS), [Renesas](https://github.com/renesas/azure-rtos) and [Microchip](https://mu.microchip.com/get-started-simplifying-your-iot-design-with-azure-rtos).
|
LevelX as part of Eclipse ThreadX has been integrated to the semiconductor's SDKs and development environment. You can develop using the tools of choice from [STMicroelectronics](https://www.st.com/content/st_com/en/campaigns/x-cube-azrtos-azure-rtos-stm32.html), [NXP](https://www.nxp.com/design/software/embedded-software/azure-rtos-for-nxp-microcontrollers:AZURE-RTOS), [Renesas](https://github.com/renesas/azure-rtos) and [Microchip](https://mu.microchip.com/get-started-simplifying-your-iot-design-with-azure-rtos).
|
||||||
|
|
||||||
See [Overview of Azure RTOS LevelX](https://learn.microsoft.com/azure/rtos/levelx/overview-levelx) for the high-level overview, and all documentation and APIs can be found in: [Azure RTOS LevelX documentation](https://learn.microsoft.com/azure/rtos/levelx/).
|
See [Overview of Eclipse ThreadX LevelX](https://github.com/eclipse-threadx/rtos-docs/blob/main/rtos-docs/levelx/index.md) for the high-level overview.
|
||||||
|
|
||||||
## Repository Structure and Usage
|
## Repository Structure and Usage
|
||||||
|
|
||||||
@@ -19,7 +19,7 @@ See [Overview of Azure RTOS LevelX](https://learn.microsoft.com/azure/rtos/level
|
|||||||
├── LICENSE.txt # License terms
|
├── LICENSE.txt # License terms
|
||||||
├── LICENSE-HARDWARE.txt # Licensed hardware from semiconductors
|
├── LICENSE-HARDWARE.txt # Licensed hardware from semiconductors
|
||||||
├── CONTRIBUTING.md # Contribution guidance
|
├── CONTRIBUTING.md # Contribution guidance
|
||||||
└── SECURITY.md # Microsoft repo security guidance
|
└── SECURITY.md # Repo security guidance
|
||||||
|
|
||||||
### Branches & Releases
|
### Branches & Releases
|
||||||
|
|
||||||
@@ -74,7 +74,7 @@ The master branch has the most recent code with all new features and bug fixes.
|
|||||||
|
|
||||||
## Component dependencies
|
## Component dependencies
|
||||||
|
|
||||||
The main components of Azure RTOS are each provided in their own repository, but there are dependencies between them, as shown in the following graph. This is important to understand when setting up your builds.
|
The main components of Eclipse ThreadX are each provided in their own repository, but there are dependencies between them, as shown in the following graph. This is important to understand when setting up your builds.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
@@ -82,7 +82,7 @@ The main components of Azure RTOS are each provided in their own repository, but
|
|||||||
|
|
||||||
### Building and using the library
|
### Building and using the library
|
||||||
|
|
||||||
Instruction for building the LevelX as static library using Arm GNU Toolchain and CMake. If you are using toolchain and IDE from semiconductor, you might follow its own instructions to use Azure RTOS components as explained in the [Getting Started](#getting-started) section.
|
Instruction for building the LevelX as static library using Arm GNU Toolchain and CMake. If you are using toolchain and IDE from semiconductor, you might follow its own instructions to use Eclipse ThreadX components as explained in the [Getting Started](#getting-started) section.
|
||||||
|
|
||||||
1. Install the following tools:
|
1. Install the following tools:
|
||||||
|
|
||||||
@@ -95,14 +95,14 @@ Instruction for building the LevelX as static library using Arm GNU Toolchain an
|
|||||||
1. Cloning the repo.
|
1. Cloning the repo.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ git clone --recursive https://github.com/azure-rtos/levelx.git
|
$ git clone --recursive https://github.com/eclipse-threadx/levelx.git
|
||||||
```
|
```
|
||||||
|
|
||||||
1. Define the features and addons you need in `lx_user.h` and build together with the component source code. You can refer to [`lx_user_sample.h`](https://github.com/azure-rtos/levelx/blob/master/common/inc/lx_user_sample.h) as an example.
|
1. Define the features and addons you need in `lx_user.h` and build together with the component source code. You can refer to [`lx_user_sample.h`](https://github.com/azure-rtos/levelx/blob/master/common/inc/lx_user_sample.h) as an example.
|
||||||
|
|
||||||
1. Building as a static library
|
1. Building as a static library
|
||||||
|
|
||||||
Each component of Azure RTOS comes with a composable CMake-based build system that supports many different MCUs and host systems. Integrating any of these components into your device app code is as simple as adding a git submodule and then including it in your build using the CMake `add_subdirectory()`.
|
Each component of Eclipse ThreadX comes with a composable CMake-based build system that supports many different MCUs and host systems. Integrating any of these components into your device app code is as simple as adding a git submodule and then including it in your build using the CMake `add_subdirectory()`.
|
||||||
|
|
||||||
While the typical usage pattern is to include LevelX into your device code source tree to be built & linked with your code, you can compile this project as a standalone static library to confirm your build is set up correctly.
|
While the typical usage pattern is to include LevelX into your device code source tree to be built & linked with your code, you can compile this project as a standalone static library to confirm your build is set up correctly.
|
||||||
|
|
||||||
@@ -114,31 +114,23 @@ Instruction for building the LevelX as static library using Arm GNU Toolchain an
|
|||||||
$ cmake --build ./build
|
$ cmake --build ./build
|
||||||
```
|
```
|
||||||
|
|
||||||
## Professional support
|
|
||||||
|
|
||||||
[Professional support plans](https://azure.microsoft.com/support/options/) are available from Microsoft. For community support and others, see the [Resources](#resources) section below.
|
|
||||||
|
|
||||||
## Licensing
|
## Licensing
|
||||||
|
|
||||||
License terms for using Azure RTOS are defined in the LICENSE.txt file of this repo. Please refer to this file for all definitive licensing information. No additional license fees are required for deploying Azure RTOS on hardware defined in the [LICENSED-HARDWARE.txt](./LICENSED-HARDWARE.txt) file. If you are using hardware not listed in the file or having licensing questions in general, please contact Microsoft directly at https://aka.ms/azrtos-license.
|
License terms for using Eclipse ThreadX are defined in the LICENSE.txt file of this repo. Please refer to this file for all definitive licensing information.
|
||||||
|
|
||||||
## Resources
|
## Resources
|
||||||
|
|
||||||
The following are references to additional Azure RTOS resources:
|
The following are references to additional Eclipse ThreadX resources:
|
||||||
|
|
||||||
- **Product introduction and white papers**: https://azure.com/rtos
|
- **Product introduction**: https://github.com/eclipse-threadx/rtos-docs
|
||||||
- **General technical questions**: https://aka.ms/QnA/azure-rtos
|
- **Product issues and bugs, or feature requests**: https://github.com/eclipse-threadx/levelx/issues
|
||||||
- **Product issues and bugs, or feature requests**: https://github.com/azure-rtos/levelx/issues
|
- **TraceX Installer**: https://aka.ms/azrtos-tracex-installer
|
||||||
- **Licensing and sales questions**: https://aka.ms/azrtos-license
|
|
||||||
- **Product roadmap and support policy**: https://aka.ms/azrtos/lts
|
|
||||||
- **Blogs and videos**: http://msiotblog.com and https://aka.ms/iotshow
|
|
||||||
- **Azure RTOS TraceX Installer**: https://aka.ms/azrtos-tracex-installer
|
|
||||||
|
|
||||||
You can also check [previous questions](https://stackoverflow.com/questions/tagged/azure-rtos+levelx) or ask new ones on StackOverflow using the `azure-rtos` and `levelx` tags.
|
You can also check [previous questions](https://stackoverflow.com/questions/tagged/azure-rtos+levelx) or ask new ones on StackOverflow using the `threadx` and `levelx` tags.
|
||||||
|
|
||||||
## Security
|
## Security
|
||||||
|
|
||||||
Azure RTOS provides OEMs with components to secure communication and to create code and data isolation using underlying MCU/MPU hardware protection mechanisms. It is ultimately the responsibility of the device builder to ensure the device fully meets the evolving security requirements associated with its specific use case.
|
Eclipse ThreadX provides OEMs with components to secure communication and to create code and data isolation using underlying MCU/MPU hardware protection mechanisms. It is ultimately the responsibility of the device builder to ensure the device fully meets the evolving security requirements associated with its specific use case.
|
||||||
|
|
||||||
## Contribution
|
## Contribution
|
||||||
|
|
||||||
|
|||||||
+12
-27
@@ -1,35 +1,20 @@
|
|||||||
## Security
|
# Security Policy
|
||||||
|
|
||||||
Microsoft takes the security of our software products and services seriously, which includes all source code repositories managed through our GitHub organizations, which include [Microsoft](https://github.com/Microsoft), [Azure](https://github.com/Azure), [DotNet](https://github.com/dotnet), [AspNet](https://github.com/aspnet), [Xamarin](https://github.com/xamarin), and [our GitHub organizations](https://opensource.microsoft.com/).
|
## Supported Versions
|
||||||
|
|
||||||
If you believe you have found a security vulnerability in any Microsoft-owned repository that meets Microsoft's [Microsoft's definition of a security vulnerability](https://docs.microsoft.com/en-us/previous-versions/tn-archive/cc751383(v=technet.10)), please report it to us as described below.
|
| Version | Supported |
|
||||||
|
| ------- | ------------------ |
|
||||||
|
| 6.4.x | :white_check_mark: |
|
||||||
|
|
||||||
## Reporting Security Issues
|
## Reporting a Vulnerability
|
||||||
|
|
||||||
**Please do not report security vulnerabilities through public GitHub issues.**
|
If you think you have found a vulnerability in <project> you can report it using one of the following ways:
|
||||||
|
|
||||||
Instead, please report them to the Microsoft Security Response Center (MSRC) at [https://msrc.microsoft.com/create-report](https://msrc.microsoft.com/create-report).
|
* Contact the [Eclipse Foundation Security Team](mailto:security@eclipse-foundation.org)
|
||||||
|
* [Report a Vulnerability](https://github.com/eclipse-threadx/levelx/security/advisories/new)
|
||||||
|
|
||||||
If you prefer to submit without logging in, send email to [secure@microsoft.com](mailto:secure@microsoft.com). If possible, encrypt your message with our PGP key; please download it from the the [Microsoft Security Response Center PGP Key page](https://www.microsoft.com/en-us/msrc/pgp-key-msrc).
|
You can find more information about reporting and disclosure at the [Eclipse Foundation Security page](https://www.eclipse.org/security/).
|
||||||
|
|
||||||
You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Additional information can be found at [microsoft.com/msrc](https://www.microsoft.com/msrc).
|
## Security Policy
|
||||||
|
|
||||||
Please include the requested information listed below (as much as you can provide) to help us better understand the nature and scope of the possible issue:
|
This project follows [Eclipse Foundation Vulnerability Reporting Policy](https://www.eclipse.org/security/policy/).
|
||||||
|
|
||||||
* Type of issue (e.g. buffer overflow, SQL injection, cross-site scripting, etc.)
|
|
||||||
* Full paths of source file(s) related to the manifestation of the issue
|
|
||||||
* The location of the affected source code (tag/branch/commit or direct URL)
|
|
||||||
* Any special configuration required to reproduce the issue
|
|
||||||
* Step-by-step instructions to reproduce the issue
|
|
||||||
* Proof-of-concept or exploit code (if possible)
|
|
||||||
* Impact of the issue, including how an attacker might exploit the issue
|
|
||||||
|
|
||||||
This information will help us triage your report more quickly.
|
|
||||||
|
|
||||||
## Preferred Languages
|
|
||||||
|
|
||||||
We prefer all communications to be in English.
|
|
||||||
|
|
||||||
## Policy
|
|
||||||
|
|
||||||
Microsoft follows the principle of [Coordinated Vulnerability Disclosure](https://www.microsoft.com/en-us/msrc/cvd).
|
|
||||||
|
|||||||
+14
-12
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
@@ -26,7 +25,7 @@
|
|||||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* lx_api.h PORTABLE C */
|
/* lx_api.h PORTABLE C */
|
||||||
/* 6.4.0 */
|
/* 6.4.1 */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -89,6 +88,9 @@
|
|||||||
/* 12-31-2023 Xiuwen Cai Modified comment(s), */
|
/* 12-31-2023 Xiuwen Cai Modified comment(s), */
|
||||||
/* added configuration checks, */
|
/* added configuration checks, */
|
||||||
/* resulting in version 6.4.0 */
|
/* resulting in version 6.4.0 */
|
||||||
|
/* 03-01-2024 Tiejun Zhou Modified comment(s), */
|
||||||
|
/* update version number, */
|
||||||
|
/* resulting in version 6.4.1 */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|
||||||
@@ -201,7 +203,7 @@ typedef unsigned long long ULONG64;
|
|||||||
#define AZURE_RTOS_LEVELX
|
#define AZURE_RTOS_LEVELX
|
||||||
#define LEVELX_MAJOR_VERSION 6
|
#define LEVELX_MAJOR_VERSION 6
|
||||||
#define LEVELX_MINOR_VERSION 4
|
#define LEVELX_MINOR_VERSION 4
|
||||||
#define LEVELX_PATCH_VERSION 0
|
#define LEVELX_PATCH_VERSION 1
|
||||||
|
|
||||||
|
|
||||||
/* Define general LevelX Constants. */
|
/* Define general LevelX Constants. */
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
/**************************************************************************/
|
/***************************************************************************
|
||||||
/* */
|
* Copyright (c) 2024 Microsoft Corporation
|
||||||
/* Copyright (c) Microsoft Corporation. All rights reserved. */
|
*
|
||||||
/* */
|
* This program and the accompanying materials are made available under the
|
||||||
/* This software is licensed under the Microsoft Software License */
|
* terms of the MIT License which is available at
|
||||||
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
|
* https://opensource.org/licenses/MIT.
|
||||||
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
|
*
|
||||||
/* and in the root directory of this software. */
|
* SPDX-License-Identifier: MIT
|
||||||
/* */
|
**************************************************************************/
|
||||||
/**************************************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|||||||
@@ -0,0 +1,197 @@
|
|||||||
|
LevelX
|
||||||
|
|
||||||
|
For version 6 and higher, please refer to the release notes on GitHub at https://github.com/eclipse-threadx/levelx/releases.
|
||||||
|
Below is the revision history for 5.x.
|
||||||
|
|
||||||
|
|
||||||
|
08/15/2019 LevelX generic code version 5.6. This release includes the
|
||||||
|
following major features:
|
||||||
|
|
||||||
|
Files are modified to fix compiler warnings:
|
||||||
|
demo_filex_nand_flash.c
|
||||||
|
demo_filex_nor_flash.c
|
||||||
|
lx_nand_flash_256byte_ecc_check.c
|
||||||
|
lx_nand_flash_256byte_ecc_compute.c
|
||||||
|
|
||||||
|
|
||||||
|
10/10/2018 LevelX generic code version 5.5. This release includes the following
|
||||||
|
modifications:
|
||||||
|
|
||||||
|
lx_api.h Removed compiler warnings, added extended NOR cache
|
||||||
|
support, new APIs, and new constants.
|
||||||
|
lx_nand_flash_256byte_ecc_check.c Removed compiler warnings.
|
||||||
|
lx_nand_flash_256byte_ecc_compute.c Removed compiler warnings.
|
||||||
|
lx_nand_flash_block_obsoleted_check.c Added logic to mark the beginning of block erase.
|
||||||
|
lx_nand_flash_block_reclaim.c Removed compiler warnings, and added logic to mark
|
||||||
|
the beginning of block erase.
|
||||||
|
lx_nand_flash_logical_sector_find.c Removed compiler warnings, and added logic to use
|
||||||
|
and maintain the last found page.
|
||||||
|
lx_nand_flash_next_block_to_erase_find.c Removed compiler warnings.
|
||||||
|
lx_nand_flash_open.c Added logic to detect start of a block erase that
|
||||||
|
was interrupted, removed system error call for more
|
||||||
|
than one page being obsoleted since this can happen
|
||||||
|
normally, removed compiler warnings, and added logic
|
||||||
|
to initialize the last found page.
|
||||||
|
lx_nand_flash_partial_defragment.c Added file in this release.
|
||||||
|
lx_nand_flash_sector_release.c Removed compiler warnings.
|
||||||
|
lx_nand_flash_sector_write.c Removed compiler warnings.
|
||||||
|
lx_nor_flash_block_reclaim.c Removed direct driver access for erases/reads/writes,
|
||||||
|
removed compiler warnings, and added logic to mark
|
||||||
|
the beginning of block erase.
|
||||||
|
lx_nor_flash_driver_block_erase.c Added file in this release.
|
||||||
|
lx_nor_flash_driver_read.c Added file in this release.
|
||||||
|
lx_nor_flash_driver_write.c Added file in this release.
|
||||||
|
lx_nor_flash_extended_cache_enable.c Added file in this release.
|
||||||
|
lx_nor_flash_logical_sector_find.c Removed direct driver access for reads, removed compiler
|
||||||
|
warnings, and added logic to use and maintain the last
|
||||||
|
found sector/block.
|
||||||
|
lx_nor_flash_next_block_to_erase_find.c Removed compiler warnings, and removed direct driver
|
||||||
|
access for reads.
|
||||||
|
lx_nor_flash_open.c Removed direct driver access for erases/reads/writes,
|
||||||
|
added logic to detect start of a block erase that was
|
||||||
|
interrupted, removed system error call for more than
|
||||||
|
one page being obsoleted since this can happen normally,
|
||||||
|
removed compiler warnings, and added logic to initialize
|
||||||
|
the last found sector/block.
|
||||||
|
lx_nor_flash_partial_defragment.c Added file in this release.
|
||||||
|
lx_nor_flash_physical_sector_allocate.c Removed direct driver access for reads/writes.
|
||||||
|
lx_nor_flash_sector_read.c Removed direct driver access for reads/writes.
|
||||||
|
lx_nor_flash_sector_release.c Removed direct driver access for reads/writes.
|
||||||
|
lx_nor_flash_sector_write.c Removed direct driver access for reads/writes.
|
||||||
|
lx_nor_flash_simulator.c Removed compiler warnings.
|
||||||
|
lx*.c Changed comments and copyright header, and added
|
||||||
|
conditional around disabling ThreadX error checking.
|
||||||
|
lx*.h Changed comments and copyright header.
|
||||||
|
|
||||||
|
05/01/2018 LevelX generic code version 5.4. This release includes the following
|
||||||
|
modifications:
|
||||||
|
|
||||||
|
lx_api.h Added NOR flash RAM buffer, added bit constant
|
||||||
|
for both NOR and NAND flash to indicate when
|
||||||
|
mapping write is valid, added diagnostic counter
|
||||||
|
for tracking when incomplete mapping is detected
|
||||||
|
on open, add added new error code when driver
|
||||||
|
does not supply a sector/page RAM buffer.
|
||||||
|
fx_nand_flash_simulated_driver.c Added error checking, and corrected sector
|
||||||
|
read/write processing.
|
||||||
|
fx_nor_flash_simulator_driver.c Added error checking.
|
||||||
|
lx_nand_flash_block_reclaim.c Added clearing of additional bit to indicate when
|
||||||
|
mapping is valid, and corrected logic that could
|
||||||
|
cause a newly mapped sector to be erased.
|
||||||
|
lx_nand_flash_logical_sector_find.c Added logic to make sure the sector mapping is valid.
|
||||||
|
lx_nand_flash_next_block_to_erase_find.c Added logic to improve search for free sectors.
|
||||||
|
lx_nand_flash_open.c Added logic to detect and handle a mapping entry
|
||||||
|
interrupted before completion, and added logic to
|
||||||
|
ensure there is a page buffer supplied by the
|
||||||
|
driver.
|
||||||
|
lx_nand_flash_sector_release.c Added reclaim logic to help increase free sectors.
|
||||||
|
lx_nand_flash_sector_write.c Added clearing of additional bit to indicate when
|
||||||
|
mapping is valid.
|
||||||
|
lx_nor_flash_block_reclaim.c Added clearing of additional bit to indicate when
|
||||||
|
mapping is valid, added logic to read NOR sector
|
||||||
|
into RAM buffer if direct NOR access is not possible,
|
||||||
|
and corrected logic that could cause a newly mapped
|
||||||
|
sector to be erased.
|
||||||
|
lx_nor_flash_logical_sector_find.c Added logic to make sure the sector mapping is valid.
|
||||||
|
lx_nor_flash_next_block_to_erase_find.c Added logic to improve search for free sectors.
|
||||||
|
lx_nor_flash_open.c Added logic to detect and handle a mapping entry
|
||||||
|
interrupted before completion, and added logic to
|
||||||
|
ensure there is a sector buffer supplied by the
|
||||||
|
driver if LX_DIRECT_READ is not specified.
|
||||||
|
lx_nor_flash_sector_release.c Added reclaim logic to help increase free sectors.
|
||||||
|
lx_nor_flash_sector_write.c Added clearing of additional bit to indicate when
|
||||||
|
mapping is valid, and removed optimization to ensure
|
||||||
|
atomic sector write.
|
||||||
|
lx_nor_flash_simulator.c Added logic to supply RAM buffer for reading
|
||||||
|
sector when LX_DIRECT_READ is not specified,
|
||||||
|
and removed write attempt to already written
|
||||||
|
sector, since this is no longer required.
|
||||||
|
fx*.c Changed comments and copyright header.
|
||||||
|
lx*.c Changed comments and copyright header.
|
||||||
|
lx*.h Changed comments and copyright header.
|
||||||
|
|
||||||
|
11/01/2017 LevelX generic code version 5.3. This release includes the following
|
||||||
|
modifications:
|
||||||
|
|
||||||
|
lx_nand_flash_block_full_update.c Added check to make sure the block is
|
||||||
|
actually full.
|
||||||
|
lx_nand_flash_block_reclaim.c Added support for direct logical sector
|
||||||
|
cache.
|
||||||
|
lx_nand_flash_logical_sector_find.c Added adjustment of mapped sectors when
|
||||||
|
examining the mapped list, added support
|
||||||
|
for direct logical sector cache.
|
||||||
|
lx_nand_flash_open.c Added support for direct logical sector cache,
|
||||||
|
and updated diagnostics.
|
||||||
|
lx_nand_flash_physical_page_allocate.c Added adjustment of the search pointer for
|
||||||
|
next allocate request.
|
||||||
|
lx_nand_flash_sector_mapping_cache_invalidate.c Added support for direct logical sector cache.
|
||||||
|
lx_nand_flash_sector_release.c Added logic to update the page 0 mapping list
|
||||||
|
if present.
|
||||||
|
lx_nand_flash_sector_write.c Added logic to update the page 0 mapping list
|
||||||
|
if present, and added check to make sure the
|
||||||
|
new mapping wasn't moved, added direct logical
|
||||||
|
sector cache.
|
||||||
|
fx*.c Changed comments and copyright header.
|
||||||
|
lx*.c Changed comments and copyright header.
|
||||||
|
lx*.h Changed comments and copyright header.
|
||||||
|
|
||||||
|
03/01/2017 LevelX generic code version 5.2. This release includes the following
|
||||||
|
modifications:
|
||||||
|
|
||||||
|
lx_nand_flash_block_full_update.c Reduced the number of words accessed in
|
||||||
|
page 0, added driver interface layer,
|
||||||
|
and modified the extra bytes usage in
|
||||||
|
page 0 to support block valid-full-empty.
|
||||||
|
lx_nand_flash_block_obsoleted_check.c Added file in this release.
|
||||||
|
lx_nand_flash_block_reclaim.c Added logic to update page 0 on a full
|
||||||
|
block update, added driver interface layer,
|
||||||
|
and added additional diagnostic information.
|
||||||
|
lx_nand_flash_driver_block_erase.c Added file in this release.
|
||||||
|
lx_nand_flash_driver_block_erased_verify.c Added file in this release.
|
||||||
|
lx_nand_flash_driver_block_status_get.c Added file in this release.
|
||||||
|
lx_nand_flash_driver_block_status_set.c Added file in this release.
|
||||||
|
lx_nand_flash_driver_extra_bytes_get.c Added file in this release.
|
||||||
|
lx_nand_flash_driver_extra_bytes_set.c Added file in this release.
|
||||||
|
lx_nand_flash_driver_page_erased_verify.c Added file in this release.
|
||||||
|
lx_nand_flash_driver_read.c Added file in this release.
|
||||||
|
lx_nand_flash_driver_write.c Added file in this release.
|
||||||
|
lx_nand_flash_extended_cache_enable.c Added file in this release.
|
||||||
|
lx_nand_flash_logical_sector_find.c Reduced the number of words accessed in
|
||||||
|
page 0, corrected check for valid sector
|
||||||
|
mapping list, added max mapped sector logic,
|
||||||
|
added driver interface layer, and added logic
|
||||||
|
to use and maintain the last found sector block.
|
||||||
|
lx_nand_flash_next_block_to_erase_find.c Reduced the number of words accessed in page 0,
|
||||||
|
and added driver interface layer.
|
||||||
|
lx_nand_flash_open.c Reduced the number of words accessed in page 0,
|
||||||
|
added driver interface layer, added additional
|
||||||
|
diagnostic information, added logic to initialize
|
||||||
|
the maximum mapped logical sector, and added
|
||||||
|
initialization of the last found sector block.
|
||||||
|
lx_nand_flash_physical_page_allocate.c Reduced the number of words accessed in page 0,
|
||||||
|
added driver interface layer, and added logic
|
||||||
|
to use page 0's extra bytes to determine if
|
||||||
|
block has available pages.
|
||||||
|
lx_nand_flash_sector_read.c Added driver interface layer.
|
||||||
|
lx_nand_flash_sector_release.c Added logic to maintain the maximum mapped
|
||||||
|
sector, and added driver interface layer.
|
||||||
|
lx_nand_flash_sector_write.c Added call to see if the block is completely
|
||||||
|
obsoleted, added logic to remember the maximum
|
||||||
|
mapped sector, and added driver interface layer.
|
||||||
|
fx_nand_flash_simulator_driver.c Removed sector packing by requiring sector and
|
||||||
|
cluster size to match, and added release sector
|
||||||
|
support.
|
||||||
|
fx*.c Changed comments and copyright header.
|
||||||
|
lx*.c Changed comments and copyright header.
|
||||||
|
lx*.h Changed comments and copyright header.
|
||||||
|
|
||||||
|
08/01/2016 LevelX generic code version 5.1. This release includes the following
|
||||||
|
modifications:
|
||||||
|
|
||||||
|
lx_nor_flash_physical_sector_allocate.c Corrected problem with more than 32 sectors per
|
||||||
|
flash block.
|
||||||
|
fx*.c Changed comments and copyright header.
|
||||||
|
lx*.c Changed comments and copyright header.
|
||||||
|
lx*.h Changed comments and copyright header.
|
||||||
|
|
||||||
|
01/22/2015 Initial LevelX generic code version 5.0.
|
||||||
+2
-2
@@ -3,7 +3,7 @@
|
|||||||
cd $(dirname $0)
|
cd $(dirname $0)
|
||||||
|
|
||||||
# if threadx repo does not exist, clone it
|
# if threadx repo does not exist, clone it
|
||||||
[ -d threadx ] || git clone https://github.com/azure-rtos/threadx.git --depth 1
|
[ -d threadx ] || git clone https://github.com/eclipse-threadx/threadx.git --depth 1
|
||||||
[ -d filex ] || git clone https://github.com/azure-rtos/filex.git --depth 1
|
[ -d filex ] || git clone https://github.com/eclipse-threadx/filex.git --depth 1
|
||||||
[ -f .run.sh ] || ln -sf threadx/scripts/cmake_bootstrap.sh .run.sh
|
[ -f .run.sh ] || ln -sf threadx/scripts/cmake_bootstrap.sh .run.sh
|
||||||
./.run.sh $*
|
./.run.sh $*
|
||||||
Reference in New Issue
Block a user