WiFi example for LPC55S69 using ESP8266

Committer:
maclobdell
Date:
Mon Mar 25 22:50:52 2019 -0500
Revision:
0:2f4d849e36e5
WiFi example application for LPC55S69 with ESP8266 shield/module

Who changed what in which revision?

UserRevisionLine numberNew contents of line
maclobdell 0:2f4d849e36e5 1 Apache License
maclobdell 0:2f4d849e36e5 2 Version 2.0, January 2004
maclobdell 0:2f4d849e36e5 3 http://www.apache.org/licenses/
maclobdell 0:2f4d849e36e5 4
maclobdell 0:2f4d849e36e5 5 TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
maclobdell 0:2f4d849e36e5 6
maclobdell 0:2f4d849e36e5 7 1. Definitions.
maclobdell 0:2f4d849e36e5 8
maclobdell 0:2f4d849e36e5 9 "License" shall mean the terms and conditions for use, reproduction,
maclobdell 0:2f4d849e36e5 10 and distribution as defined by Sections 1 through 9 of this document.
maclobdell 0:2f4d849e36e5 11
maclobdell 0:2f4d849e36e5 12 "Licensor" shall mean the copyright owner or entity authorized by
maclobdell 0:2f4d849e36e5 13 the copyright owner that is granting the License.
maclobdell 0:2f4d849e36e5 14
maclobdell 0:2f4d849e36e5 15 "Legal Entity" shall mean the union of the acting entity and all
maclobdell 0:2f4d849e36e5 16 other entities that control, are controlled by, or are under common
maclobdell 0:2f4d849e36e5 17 control with that entity. For the purposes of this definition,
maclobdell 0:2f4d849e36e5 18 "control" means (i) the power, direct or indirect, to cause the
maclobdell 0:2f4d849e36e5 19 direction or management of such entity, whether by contract or
maclobdell 0:2f4d849e36e5 20 otherwise, or (ii) ownership of fifty percent (50%) or more of the
maclobdell 0:2f4d849e36e5 21 outstanding shares, or (iii) beneficial ownership of such entity.
maclobdell 0:2f4d849e36e5 22
maclobdell 0:2f4d849e36e5 23 "You" (or "Your") shall mean an individual or Legal Entity
maclobdell 0:2f4d849e36e5 24 exercising permissions granted by this License.
maclobdell 0:2f4d849e36e5 25
maclobdell 0:2f4d849e36e5 26 "Source" form shall mean the preferred form for making modifications,
maclobdell 0:2f4d849e36e5 27 including but not limited to software source code, documentation
maclobdell 0:2f4d849e36e5 28 source, and configuration files.
maclobdell 0:2f4d849e36e5 29
maclobdell 0:2f4d849e36e5 30 "Object" form shall mean any form resulting from mechanical
maclobdell 0:2f4d849e36e5 31 transformation or translation of a Source form, including but
maclobdell 0:2f4d849e36e5 32 not limited to compiled object code, generated documentation,
maclobdell 0:2f4d849e36e5 33 and conversions to other media types.
maclobdell 0:2f4d849e36e5 34
maclobdell 0:2f4d849e36e5 35 "Work" shall mean the work of authorship, whether in Source or
maclobdell 0:2f4d849e36e5 36 Object form, made available under the License, as indicated by a
maclobdell 0:2f4d849e36e5 37 copyright notice that is included in or attached to the work
maclobdell 0:2f4d849e36e5 38 (an example is provided in the Appendix below).
maclobdell 0:2f4d849e36e5 39
maclobdell 0:2f4d849e36e5 40 "Derivative Works" shall mean any work, whether in Source or Object
maclobdell 0:2f4d849e36e5 41 form, that is based on (or derived from) the Work and for which the
maclobdell 0:2f4d849e36e5 42 editorial revisions, annotations, elaborations, or other modifications
maclobdell 0:2f4d849e36e5 43 represent, as a whole, an original work of authorship. For the purposes
maclobdell 0:2f4d849e36e5 44 of this License, Derivative Works shall not include works that remain
maclobdell 0:2f4d849e36e5 45 separable from, or merely link (or bind by name) to the interfaces of,
maclobdell 0:2f4d849e36e5 46 the Work and Derivative Works thereof.
maclobdell 0:2f4d849e36e5 47
maclobdell 0:2f4d849e36e5 48 "Contribution" shall mean any work of authorship, including
maclobdell 0:2f4d849e36e5 49 the original version of the Work and any modifications or additions
maclobdell 0:2f4d849e36e5 50 to that Work or Derivative Works thereof, that is intentionally
maclobdell 0:2f4d849e36e5 51 submitted to Licensor for inclusion in the Work by the copyright owner
maclobdell 0:2f4d849e36e5 52 or by an individual or Legal Entity authorized to submit on behalf of
maclobdell 0:2f4d849e36e5 53 the copyright owner. For the purposes of this definition, "submitted"
maclobdell 0:2f4d849e36e5 54 means any form of electronic, verbal, or written communication sent
maclobdell 0:2f4d849e36e5 55 to the Licensor or its representatives, including but not limited to
maclobdell 0:2f4d849e36e5 56 communication on electronic mailing lists, source code control systems,
maclobdell 0:2f4d849e36e5 57 and issue tracking systems that are managed by, or on behalf of, the
maclobdell 0:2f4d849e36e5 58 Licensor for the purpose of discussing and improving the Work, but
maclobdell 0:2f4d849e36e5 59 excluding communication that is conspicuously marked or otherwise
maclobdell 0:2f4d849e36e5 60 designated in writing by the copyright owner as "Not a Contribution."
maclobdell 0:2f4d849e36e5 61
maclobdell 0:2f4d849e36e5 62 "Contributor" shall mean Licensor and any individual or Legal Entity
maclobdell 0:2f4d849e36e5 63 on behalf of whom a Contribution has been received by Licensor and
maclobdell 0:2f4d849e36e5 64 subsequently incorporated within the Work.
maclobdell 0:2f4d849e36e5 65
maclobdell 0:2f4d849e36e5 66 2. Grant of Copyright License. Subject to the terms and conditions of
maclobdell 0:2f4d849e36e5 67 this License, each Contributor hereby grants to You a perpetual,
maclobdell 0:2f4d849e36e5 68 worldwide, non-exclusive, no-charge, royalty-free, irrevocable
maclobdell 0:2f4d849e36e5 69 copyright license to reproduce, prepare Derivative Works of,
maclobdell 0:2f4d849e36e5 70 publicly display, publicly perform, sublicense, and distribute the
maclobdell 0:2f4d849e36e5 71 Work and such Derivative Works in Source or Object form.
maclobdell 0:2f4d849e36e5 72
maclobdell 0:2f4d849e36e5 73 3. Grant of Patent License. Subject to the terms and conditions of
maclobdell 0:2f4d849e36e5 74 this License, each Contributor hereby grants to You a perpetual,
maclobdell 0:2f4d849e36e5 75 worldwide, non-exclusive, no-charge, royalty-free, irrevocable
maclobdell 0:2f4d849e36e5 76 (except as stated in this section) patent license to make, have made,
maclobdell 0:2f4d849e36e5 77 use, offer to sell, sell, import, and otherwise transfer the Work,
maclobdell 0:2f4d849e36e5 78 where such license applies only to those patent claims licensable
maclobdell 0:2f4d849e36e5 79 by such Contributor that are necessarily infringed by their
maclobdell 0:2f4d849e36e5 80 Contribution(s) alone or by combination of their Contribution(s)
maclobdell 0:2f4d849e36e5 81 with the Work to which such Contribution(s) was submitted. If You
maclobdell 0:2f4d849e36e5 82 institute patent litigation against any entity (including a
maclobdell 0:2f4d849e36e5 83 cross-claim or counterclaim in a lawsuit) alleging that the Work
maclobdell 0:2f4d849e36e5 84 or a Contribution incorporated within the Work constitutes direct
maclobdell 0:2f4d849e36e5 85 or contributory patent infringement, then any patent licenses
maclobdell 0:2f4d849e36e5 86 granted to You under this License for that Work shall terminate
maclobdell 0:2f4d849e36e5 87 as of the date such litigation is filed.
maclobdell 0:2f4d849e36e5 88
maclobdell 0:2f4d849e36e5 89 4. Redistribution. You may reproduce and distribute copies of the
maclobdell 0:2f4d849e36e5 90 Work or Derivative Works thereof in any medium, with or without
maclobdell 0:2f4d849e36e5 91 modifications, and in Source or Object form, provided that You
maclobdell 0:2f4d849e36e5 92 meet the following conditions:
maclobdell 0:2f4d849e36e5 93
maclobdell 0:2f4d849e36e5 94 (a) You must give any other recipients of the Work or
maclobdell 0:2f4d849e36e5 95 Derivative Works a copy of this License; and
maclobdell 0:2f4d849e36e5 96
maclobdell 0:2f4d849e36e5 97 (b) You must cause any modified files to carry prominent notices
maclobdell 0:2f4d849e36e5 98 stating that You changed the files; and
maclobdell 0:2f4d849e36e5 99
maclobdell 0:2f4d849e36e5 100 (c) You must retain, in the Source form of any Derivative Works
maclobdell 0:2f4d849e36e5 101 that You distribute, all copyright, patent, trademark, and
maclobdell 0:2f4d849e36e5 102 attribution notices from the Source form of the Work,
maclobdell 0:2f4d849e36e5 103 excluding those notices that do not pertain to any part of
maclobdell 0:2f4d849e36e5 104 the Derivative Works; and
maclobdell 0:2f4d849e36e5 105
maclobdell 0:2f4d849e36e5 106 (d) If the Work includes a "NOTICE" text file as part of its
maclobdell 0:2f4d849e36e5 107 distribution, then any Derivative Works that You distribute must
maclobdell 0:2f4d849e36e5 108 include a readable copy of the attribution notices contained
maclobdell 0:2f4d849e36e5 109 within such NOTICE file, excluding those notices that do not
maclobdell 0:2f4d849e36e5 110 pertain to any part of the Derivative Works, in at least one
maclobdell 0:2f4d849e36e5 111 of the following places: within a NOTICE text file distributed
maclobdell 0:2f4d849e36e5 112 as part of the Derivative Works; within the Source form or
maclobdell 0:2f4d849e36e5 113 documentation, if provided along with the Derivative Works; or,
maclobdell 0:2f4d849e36e5 114 within a display generated by the Derivative Works, if and
maclobdell 0:2f4d849e36e5 115 wherever such third-party notices normally appear. The contents
maclobdell 0:2f4d849e36e5 116 of the NOTICE file are for informational purposes only and
maclobdell 0:2f4d849e36e5 117 do not modify the License. You may add Your own attribution
maclobdell 0:2f4d849e36e5 118 notices within Derivative Works that You distribute, alongside
maclobdell 0:2f4d849e36e5 119 or as an addendum to the NOTICE text from the Work, provided
maclobdell 0:2f4d849e36e5 120 that such additional attribution notices cannot be construed
maclobdell 0:2f4d849e36e5 121 as modifying the License.
maclobdell 0:2f4d849e36e5 122
maclobdell 0:2f4d849e36e5 123 You may add Your own copyright statement to Your modifications and
maclobdell 0:2f4d849e36e5 124 may provide additional or different license terms and conditions
maclobdell 0:2f4d849e36e5 125 for use, reproduction, or distribution of Your modifications, or
maclobdell 0:2f4d849e36e5 126 for any such Derivative Works as a whole, provided Your use,
maclobdell 0:2f4d849e36e5 127 reproduction, and distribution of the Work otherwise complies with
maclobdell 0:2f4d849e36e5 128 the conditions stated in this License.
maclobdell 0:2f4d849e36e5 129
maclobdell 0:2f4d849e36e5 130 5. Submission of Contributions. Unless You explicitly state otherwise,
maclobdell 0:2f4d849e36e5 131 any Contribution intentionally submitted for inclusion in the Work
maclobdell 0:2f4d849e36e5 132 by You to the Licensor shall be under the terms and conditions of
maclobdell 0:2f4d849e36e5 133 this License, without any additional terms or conditions.
maclobdell 0:2f4d849e36e5 134 Notwithstanding the above, nothing herein shall supersede or modify
maclobdell 0:2f4d849e36e5 135 the terms of any separate license agreement you may have executed
maclobdell 0:2f4d849e36e5 136 with Licensor regarding such Contributions.
maclobdell 0:2f4d849e36e5 137
maclobdell 0:2f4d849e36e5 138 6. Trademarks. This License does not grant permission to use the trade
maclobdell 0:2f4d849e36e5 139 names, trademarks, service marks, or product names of the Licensor,
maclobdell 0:2f4d849e36e5 140 except as required for reasonable and customary use in describing the
maclobdell 0:2f4d849e36e5 141 origin of the Work and reproducing the content of the NOTICE file.
maclobdell 0:2f4d849e36e5 142
maclobdell 0:2f4d849e36e5 143 7. Disclaimer of Warranty. Unless required by applicable law or
maclobdell 0:2f4d849e36e5 144 agreed to in writing, Licensor provides the Work (and each
maclobdell 0:2f4d849e36e5 145 Contributor provides its Contributions) on an "AS IS" BASIS,
maclobdell 0:2f4d849e36e5 146 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
maclobdell 0:2f4d849e36e5 147 implied, including, without limitation, any warranties or conditions
maclobdell 0:2f4d849e36e5 148 of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
maclobdell 0:2f4d849e36e5 149 PARTICULAR PURPOSE. You are solely responsible for determining the
maclobdell 0:2f4d849e36e5 150 appropriateness of using or redistributing the Work and assume any
maclobdell 0:2f4d849e36e5 151 risks associated with Your exercise of permissions under this License.
maclobdell 0:2f4d849e36e5 152
maclobdell 0:2f4d849e36e5 153 8. Limitation of Liability. In no event and under no legal theory,
maclobdell 0:2f4d849e36e5 154 whether in tort (including negligence), contract, or otherwise,
maclobdell 0:2f4d849e36e5 155 unless required by applicable law (such as deliberate and grossly
maclobdell 0:2f4d849e36e5 156 negligent acts) or agreed to in writing, shall any Contributor be
maclobdell 0:2f4d849e36e5 157 liable to You for damages, including any direct, indirect, special,
maclobdell 0:2f4d849e36e5 158 incidental, or consequential damages of any character arising as a
maclobdell 0:2f4d849e36e5 159 result of this License or out of the use or inability to use the
maclobdell 0:2f4d849e36e5 160 Work (including but not limited to damages for loss of goodwill,
maclobdell 0:2f4d849e36e5 161 work stoppage, computer failure or malfunction, or any and all
maclobdell 0:2f4d849e36e5 162 other commercial damages or losses), even if such Contributor
maclobdell 0:2f4d849e36e5 163 has been advised of the possibility of such damages.
maclobdell 0:2f4d849e36e5 164
maclobdell 0:2f4d849e36e5 165 9. Accepting Warranty or Additional Liability. While redistributing
maclobdell 0:2f4d849e36e5 166 the Work or Derivative Works thereof, You may choose to offer,
maclobdell 0:2f4d849e36e5 167 and charge a fee for, acceptance of support, warranty, indemnity,
maclobdell 0:2f4d849e36e5 168 or other liability obligations and/or rights consistent with this
maclobdell 0:2f4d849e36e5 169 License. However, in accepting such obligations, You may act only
maclobdell 0:2f4d849e36e5 170 on Your own behalf and on Your sole responsibility, not on behalf
maclobdell 0:2f4d849e36e5 171 of any other Contributor, and only if You agree to indemnify,
maclobdell 0:2f4d849e36e5 172 defend, and hold each Contributor harmless for any liability
maclobdell 0:2f4d849e36e5 173 incurred by, or claims asserted against, such Contributor by reason
maclobdell 0:2f4d849e36e5 174 of your accepting any such warranty or additional liability.
maclobdell 0:2f4d849e36e5 175
maclobdell 0:2f4d849e36e5 176 END OF TERMS AND CONDITIONS
maclobdell 0:2f4d849e36e5 177
maclobdell 0:2f4d849e36e5 178 APPENDIX: How to apply the Apache License to your work.
maclobdell 0:2f4d849e36e5 179
maclobdell 0:2f4d849e36e5 180 To apply the Apache License to your work, attach the following
maclobdell 0:2f4d849e36e5 181 boilerplate notice, with the fields enclosed by brackets "{}"
maclobdell 0:2f4d849e36e5 182 replaced with your own identifying information. (Don't include
maclobdell 0:2f4d849e36e5 183 the brackets!) The text should be enclosed in the appropriate
maclobdell 0:2f4d849e36e5 184 comment syntax for the file format. We also recommend that a
maclobdell 0:2f4d849e36e5 185 file or class name and description of purpose be included on the
maclobdell 0:2f4d849e36e5 186 same "printed page" as the copyright notice for easier
maclobdell 0:2f4d849e36e5 187 identification within third-party archives.
maclobdell 0:2f4d849e36e5 188
maclobdell 0:2f4d849e36e5 189 Copyright {yyyy} {name of copyright owner}
maclobdell 0:2f4d849e36e5 190
maclobdell 0:2f4d849e36e5 191 Licensed under the Apache License, Version 2.0 (the "License");
maclobdell 0:2f4d849e36e5 192 you may not use this file except in compliance with the License.
maclobdell 0:2f4d849e36e5 193 You may obtain a copy of the License at
maclobdell 0:2f4d849e36e5 194
maclobdell 0:2f4d849e36e5 195 http://www.apache.org/licenses/LICENSE-2.0
maclobdell 0:2f4d849e36e5 196
maclobdell 0:2f4d849e36e5 197 Unless required by applicable law or agreed to in writing, software
maclobdell 0:2f4d849e36e5 198 distributed under the License is distributed on an "AS IS" BASIS,
maclobdell 0:2f4d849e36e5 199 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
maclobdell 0:2f4d849e36e5 200 See the License for the specific language governing permissions and
maclobdell 0:2f4d849e36e5 201 limitations under the License.