1## Introduction 2 3The EDTT (Embedded Device Test Tool) is a collection of python scripts, which include: 4 5* The PC side of a simple basic Remote Procedure Call (RPC) 6* A transport mechanism, which is used by this RPC to transport 7 data in an out of an embedded device 8* A set of self checking tests of the BLE functionality 9 (both host and controller) 10* A basic tool which wraps all of this, and executes a set of 11 tests as selected from command line 12 13## More information 14 15More information about the RPC transport can be found in 16[EDTT_transport.md](EDTT_transport.md)<br> 17And about the transport used with BabbleSim in 18[EDTT_transport_bsim.md](EDTT_transport_bsim.md) 19 20A document giving an introduction on how to use the EDTT 21with BabbleSim and how to write tests can be found in 22[EDTT_framework_BabbleSim.md](docs/EDTT_framework_BabbleSim.md) 23 24## License 25 26Please see LICENSE 27 28## Developer Certification of Origin (DCO) 29 30This project requires the Developer Certificate of Origin (DCO) 31process to be followed for its contributions. 32 33This is done as a resonable measure to ensure all code in the project 34can be licensed under the claimed terms. 35 36By adding a ``Signed-off-by`` line to the commit body message like: 37``` 38 Signed-off-by: John Doe <JohnDoe@somedomain.com> 39``` 40the contributor certifies that he has the right to, and does submit 41that patch, under the applicable license, and, that he agrees to the DCO. 42 43The DCO agreement can be found in http://developercertificate.org/, and is 44shown below: 45 46``` 47 Developer Certificate of Origin 48 Version 1.1 49 50 Copyright (C) 2004, 2006 The Linux Foundation and its contributors. 51 1 Letterman Drive 52 Suite D4700 53 San Francisco, CA, 94129 54 55 Everyone is permitted to copy and distribute verbatim copies of this 56 license document, but changing it is not allowed. 57 58 Developer's Certificate of Origin 1.1 59 60 By making a contribution to this project, I certify that: 61 62 (a) The contribution was created in whole or in part by me and I 63 have the right to submit it under the open source license 64 indicated in the file; or 65 66 (b) The contribution is based upon previous work that, to the best 67 of my knowledge, is covered under an appropriate open source 68 license and I have the right under that license to submit that 69 work with modifications, whether created in whole or in part 70 by me, under the same open source license (unless I am 71 permitted to submit under a different license), as indicated 72 in the file; or 73 74 (c) The contribution was provided directly to me by some other 75 person who certified (a), (b) or (c) and I have not modified 76 it. 77 78 (d) I understand and agree that this project and the contribution 79 are public and that a record of the contribution (including all 80 personal information I submit with it, including my sign-off) is 81 maintained indefinitely and may be redistributed consistent with 82 this project or the open source license(s) involved. 83