├── .gitignore ├── LICENSE ├── README.md └── ic880a-rpi-backplane-basic-v2.fzz /.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore list for Eagle, a PCB layout tool 2 | 3 | # Backup files 4 | *.s#? 5 | *.b#? 6 | *.l#? 7 | 8 | # Eagle project file 9 | # It contains a serial number and references to the file structure 10 | # on your computer. 11 | # comment the following line if you want to have your project file included. 12 | eagle.epf 13 | 14 | # Autorouter files 15 | *.pro 16 | *.job 17 | 18 | # CAM files 19 | *.$$$ 20 | *.cmp 21 | *.ly2 22 | *.l15 23 | *.sol 24 | *.plc 25 | *.stc 26 | *.sts 27 | *.crc 28 | *.crs 29 | 30 | *.dri 31 | *.drl 32 | *.gpi 33 | *.pls 34 | 35 | *.drd 36 | *.drd.* 37 | 38 | *.info 39 | 40 | *.eps 41 | 42 | # file locks introduced since 7.x 43 | *.lck 44 | 45 | /tmp/* -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Creative Commons Attribution-ShareAlike 4.0 International Public 2 | License 3 | 4 | By exercising the Licensed Rights (defined below), You accept and agree 5 | to be bound by the terms and conditions of this Creative Commons 6 | Attribution-ShareAlike 4.0 International Public License ("Public 7 | License"). To the extent this Public License may be interpreted as a 8 | contract, You are granted the Licensed Rights in consideration of Your 9 | acceptance of these terms and conditions, and the Licensor grants You 10 | such rights in consideration of benefits the Licensor receives from 11 | making the Licensed Material available under these terms and 12 | conditions. 13 | 14 | 15 | Section 1 -- Definitions. 16 | 17 | a. Adapted Material means material subject to Copyright and Similar 18 | Rights that is derived from or based upon the Licensed Material 19 | and in which the Licensed Material is translated, altered, 20 | arranged, transformed, or otherwise modified in a manner requiring 21 | permission under the Copyright and Similar Rights held by the 22 | Licensor. For purposes of this Public License, where the Licensed 23 | Material is a musical work, performance, or sound recording, 24 | Adapted Material is always produced where the Licensed Material is 25 | synched in timed relation with a moving image. 26 | 27 | b. Adapter's License means the license You apply to Your Copyright 28 | and Similar Rights in Your contributions to Adapted Material in 29 | accordance with the terms and conditions of this Public License. 30 | 31 | c. BY-SA Compatible License means a license listed at 32 | creativecommons.org/compatiblelicenses, approved by Creative 33 | Commons as essentially the equivalent of this Public License. 34 | 35 | d. Copyright and Similar Rights means copyright and/or similar rights 36 | closely related to copyright including, without limitation, 37 | performance, broadcast, sound recording, and Sui Generis Database 38 | Rights, without regard to how the rights are labeled or 39 | categorized. For purposes of this Public License, the rights 40 | specified in Section 2(b)(1)-(2) are not Copyright and Similar 41 | Rights. 42 | 43 | e. Effective Technological Measures means those measures that, in the 44 | absence of proper authority, may not be circumvented under laws 45 | fulfilling obligations under Article 11 of the WIPO Copyright 46 | Treaty adopted on December 20, 1996, and/or similar international 47 | agreements. 48 | 49 | f. Exceptions and Limitations means fair use, fair dealing, and/or 50 | any other exception or limitation to Copyright and Similar Rights 51 | that applies to Your use of the Licensed Material. 52 | 53 | g. License Elements means the license attributes listed in the name 54 | of a Creative Commons Public License. The License Elements of this 55 | Public License are Attribution and ShareAlike. 56 | 57 | h. Licensed Material means the artistic or literary work, database, 58 | or other material to which the Licensor applied this Public 59 | License. 60 | 61 | i. Licensed Rights means the rights granted to You subject to the 62 | terms and conditions of this Public License, which are limited to 63 | all Copyright and Similar Rights that apply to Your use of the 64 | Licensed Material and that the Licensor has authority to license. 65 | 66 | j. Licensor means the individual(s) or entity(ies) granting rights 67 | under this Public License. 68 | 69 | k. Share means to provide material to the public by any means or 70 | process that requires permission under the Licensed Rights, such 71 | as reproduction, public display, public performance, distribution, 72 | dissemination, communication, or importation, and to make material 73 | available to the public including in ways that members of the 74 | public may access the material from a place and at a time 75 | individually chosen by them. 76 | 77 | l. Sui Generis Database Rights means rights other than copyright 78 | resulting from Directive 96/9/EC of the European Parliament and of 79 | the Council of 11 March 1996 on the legal protection of databases, 80 | as amended and/or succeeded, as well as other essentially 81 | equivalent rights anywhere in the world. 82 | 83 | m. You means the individual or entity exercising the Licensed Rights 84 | under this Public License. Your has a corresponding meaning. 85 | 86 | 87 | Section 2 -- Scope. 88 | 89 | a. License grant. 90 | 91 | 1. Subject to the terms and conditions of this Public License, 92 | the Licensor hereby grants You a worldwide, royalty-free, 93 | non-sublicensable, non-exclusive, irrevocable license to 94 | exercise the Licensed Rights in the Licensed Material to: 95 | 96 | a. reproduce and Share the Licensed Material, in whole or 97 | in part; and 98 | 99 | b. produce, reproduce, and Share Adapted Material. 100 | 101 | 2. Exceptions and Limitations. For the avoidance of doubt, where 102 | Exceptions and Limitations apply to Your use, this Public 103 | License does not apply, and You do not need to comply with 104 | its terms and conditions. 105 | 106 | 3. Term. The term of this Public License is specified in Section 107 | 6(a). 108 | 109 | 4. Media and formats; technical modifications allowed. The 110 | Licensor authorizes You to exercise the Licensed Rights in 111 | all media and formats whether now known or hereafter created, 112 | and to make technical modifications necessary to do so. The 113 | Licensor waives and/or agrees not to assert any right or 114 | authority to forbid You from making technical modifications 115 | necessary to exercise the Licensed Rights, including 116 | technical modifications necessary to circumvent Effective 117 | Technological Measures. For purposes of this Public License, 118 | simply making modifications authorized by this Section 2(a) 119 | (4) never produces Adapted Material. 120 | 121 | 5. Downstream recipients. 122 | 123 | a. Offer from the Licensor -- Licensed Material. Every 124 | recipient of the Licensed Material automatically 125 | receives an offer from the Licensor to exercise the 126 | Licensed Rights under the terms and conditions of this 127 | Public License. 128 | 129 | b. Additional offer from the Licensor -- Adapted Material. 130 | Every recipient of Adapted Material from You 131 | automatically receives an offer from the Licensor to 132 | exercise the Licensed Rights in the Adapted Material 133 | under the conditions of the Adapter's License You apply. 134 | 135 | c. No downstream restrictions. You may not offer or impose 136 | any additional or different terms or conditions on, or 137 | apply any Effective Technological Measures to, the 138 | Licensed Material if doing so restricts exercise of the 139 | Licensed Rights by any recipient of the Licensed 140 | Material. 141 | 142 | 6. No endorsement. Nothing in this Public License constitutes or 143 | may be construed as permission to assert or imply that You 144 | are, or that Your use of the Licensed Material is, connected 145 | with, or sponsored, endorsed, or granted official status by, 146 | the Licensor or others designated to receive attribution as 147 | provided in Section 3(a)(1)(A)(i). 148 | 149 | b. Other rights. 150 | 151 | 1. Moral rights, such as the right of integrity, are not 152 | licensed under this Public License, nor are publicity, 153 | privacy, and/or other similar personality rights; however, to 154 | the extent possible, the Licensor waives and/or agrees not to 155 | assert any such rights held by the Licensor to the limited 156 | extent necessary to allow You to exercise the Licensed 157 | Rights, but not otherwise. 158 | 159 | 2. Patent and trademark rights are not licensed under this 160 | Public License. 161 | 162 | 3. To the extent possible, the Licensor waives any right to 163 | collect royalties from You for the exercise of the Licensed 164 | Rights, whether directly or through a collecting society 165 | under any voluntary or waivable statutory or compulsory 166 | licensing scheme. In all other cases the Licensor expressly 167 | reserves any right to collect such royalties. 168 | 169 | 170 | Section 3 -- License Conditions. 171 | 172 | Your exercise of the Licensed Rights is expressly made subject to the 173 | following conditions. 174 | 175 | a. Attribution. 176 | 177 | 1. If You Share the Licensed Material (including in modified 178 | form), You must: 179 | 180 | a. retain the following if it is supplied by the Licensor 181 | with the Licensed Material: 182 | 183 | i. identification of the creator(s) of the Licensed 184 | Material and any others designated to receive 185 | attribution, in any reasonable manner requested by 186 | the Licensor (including by pseudonym if 187 | designated); 188 | 189 | ii. a copyright notice; 190 | 191 | iii. a notice that refers to this Public License; 192 | 193 | iv. a notice that refers to the disclaimer of 194 | warranties; 195 | 196 | v. a URI or hyperlink to the Licensed Material to the 197 | extent reasonably practicable; 198 | 199 | b. indicate if You modified the Licensed Material and 200 | retain an indication of any previous modifications; and 201 | 202 | c. indicate the Licensed Material is licensed under this 203 | Public License, and include the text of, or the URI or 204 | hyperlink to, this Public License. 205 | 206 | 2. You may satisfy the conditions in Section 3(a)(1) in any 207 | reasonable manner based on the medium, means, and context in 208 | which You Share the Licensed Material. For example, it may be 209 | reasonable to satisfy the conditions by providing a URI or 210 | hyperlink to a resource that includes the required 211 | information. 212 | 213 | 3. If requested by the Licensor, You must remove any of the 214 | information required by Section 3(a)(1)(A) to the extent 215 | reasonably practicable. 216 | 217 | b. ShareAlike. 218 | 219 | In addition to the conditions in Section 3(a), if You Share 220 | Adapted Material You produce, the following conditions also apply. 221 | 222 | 1. The Adapter's License You apply must be a Creative Commons 223 | license with the same License Elements, this version or 224 | later, or a BY-SA Compatible License. 225 | 226 | 2. You must include the text of, or the URI or hyperlink to, the 227 | Adapter's License You apply. You may satisfy this condition 228 | in any reasonable manner based on the medium, means, and 229 | context in which You Share Adapted Material. 230 | 231 | 3. You may not offer or impose any additional or different terms 232 | or conditions on, or apply any Effective Technological 233 | Measures to, Adapted Material that restrict exercise of the 234 | rights granted under the Adapter's License You apply. 235 | 236 | 237 | Section 4 -- Sui Generis Database Rights. 238 | 239 | Where the Licensed Rights include Sui Generis Database Rights that 240 | apply to Your use of the Licensed Material: 241 | 242 | a. for the avoidance of doubt, Section 2(a)(1) grants You the right 243 | to extract, reuse, reproduce, and Share all or a substantial 244 | portion of the contents of the database; 245 | 246 | b. if You include all or a substantial portion of the database 247 | contents in a database in which You have Sui Generis Database 248 | Rights, then the database in which You have Sui Generis Database 249 | Rights (but not its individual contents) is Adapted Material, 250 | 251 | including for purposes of Section 3(b); and 252 | c. You must comply with the conditions in Section 3(a) if You Share 253 | all or a substantial portion of the contents of the database. 254 | 255 | For the avoidance of doubt, this Section 4 supplements and does not 256 | replace Your obligations under this Public License where the Licensed 257 | Rights include other Copyright and Similar Rights. 258 | 259 | 260 | Section 5 -- Disclaimer of Warranties and Limitation of Liability. 261 | 262 | a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE 263 | EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS 264 | AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF 265 | ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, 266 | IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, 267 | WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR 268 | PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, 269 | ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT 270 | KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT 271 | ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. 272 | 273 | b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE 274 | TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, 275 | NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, 276 | INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, 277 | COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR 278 | USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN 279 | ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR 280 | DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR 281 | IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. 282 | 283 | c. The disclaimer of warranties and limitation of liability provided 284 | above shall be interpreted in a manner that, to the extent 285 | possible, most closely approximates an absolute disclaimer and 286 | waiver of all liability. 287 | 288 | 289 | Section 6 -- Term and Termination. 290 | 291 | a. This Public License applies for the term of the Copyright and 292 | Similar Rights licensed here. However, if You fail to comply with 293 | this Public License, then Your rights under this Public License 294 | terminate automatically. 295 | 296 | b. Where Your right to use the Licensed Material has terminated under 297 | Section 6(a), it reinstates: 298 | 299 | 1. automatically as of the date the violation is cured, provided 300 | it is cured within 30 days of Your discovery of the 301 | violation; or 302 | 303 | 2. upon express reinstatement by the Licensor. 304 | 305 | For the avoidance of doubt, this Section 6(b) does not affect any 306 | right the Licensor may have to seek remedies for Your violations 307 | of this Public License. 308 | 309 | c. For the avoidance of doubt, the Licensor may also offer the 310 | Licensed Material under separate terms or conditions or stop 311 | distributing the Licensed Material at any time; however, doing so 312 | will not terminate this Public License. 313 | 314 | d. Sections 1, 5, 6, 7, and 8 survive termination of this Public 315 | License. 316 | 317 | 318 | Section 7 -- Other Terms and Conditions. 319 | 320 | a. The Licensor shall not be bound by any additional or different 321 | terms or conditions communicated by You unless expressly agreed. 322 | 323 | b. Any arrangements, understandings, or agreements regarding the 324 | Licensed Material not stated herein are separate from and 325 | independent of the terms and conditions of this Public License. 326 | 327 | 328 | Section 8 -- Interpretation. 329 | 330 | a. For the avoidance of doubt, this Public License does not, and 331 | shall not be interpreted to, reduce, limit, restrict, or impose 332 | conditions on any use of the Licensed Material that could lawfully 333 | be made without permission under this Public License. 334 | 335 | b. To the extent possible, if any provision of this Public License is 336 | deemed unenforceable, it shall be automatically reformed to the 337 | minimum extent necessary to make it enforceable. If the provision 338 | cannot be reformed, it shall be severed from this Public License 339 | without affecting the enforceability of the remaining terms and 340 | conditions. 341 | 342 | c. No term or condition of this Public License will be waived and no 343 | failure to comply consented to unless expressly agreed to by the 344 | Licensor. 345 | 346 | d. Nothing in this Public License constitutes or may be interpreted 347 | as a limitation upon, or waiver of, any privileges and immunities 348 | that apply to the Licensor or You, including from the legal 349 | processes of any jurisdiction or authority. 350 | 351 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # IMST iC880a LoRaWAN backplane 2 | 3 | Backplane to connect IMST iC880a LoRaWAN concentrator board to a Raspberry Pi (any model: Zero, 1, 2, 3, A, B, B+) 4 | 5 | It is designed to work with [this install script](https://github.com/ttn-zh/ic880a-gateway/wiki): plug and play 😎 6 | 7 | The source is a [Fritzing](http://fritzing.org/) file, also available for order on [Tindie](https://www.tindie.com/products/gnz/imst-ic880a-lorawan-backplane/). 8 | -------------------------------------------------------------------------------- /ic880a-rpi-backplane-basic-v2.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalocasas/ic880a-backplane/1f8a0f7efea371f8a42b2bb68836ceb2efe4227a/ic880a-rpi-backplane-basic-v2.fzz --------------------------------------------------------------------------------