Giter Club home page Giter Club logo

ot-cc2538's Introduction

OpenThread Build Simulation Docker Coverage Status


What is OpenThread?

OpenThread released by Google is... Thread Certified Component

...an open-source implementation of the Thread networking protocol. Google Nest has released OpenThread to make the technology used in Nest products more broadly available to developers to accelerate the development of products for the connected home.

...OS and platform agnostic, with a narrow platform abstraction layer and a small memory footprint, making it highly portable. It supports both system-on-chip (SoC) and network co-processor (NCP) designs.

...a Thread Certified Component, implementing all features defined in the Thread 1.3.0 specification, including all Thread networking layers (IPv6, 6LoWPAN, IEEE 802.15.4 with MAC security, Mesh Link Establishment, Mesh Routing) and device roles, as well as Border Router support.

More information about Thread can be found at threadgroup.org. Thread is a registered trademark of the Thread Group, Inc.

Who supports OpenThread?

AmazonAqaraARMCascodaEeroEspressifGoogleInfineonMMB NetworksNabu CasaNanoleafNordicNXPQorvoQualcommSamsungSilicon LabsSTMicroelectronicsSynopsysTelink SemiconductorTexas InstrumentsZephyr Project

Getting started

All end-user documentation and guides are located at openthread.io. If you're looking to do things like...

  • Learn more about OpenThread features and enhancements
  • Use OpenThread in your products
  • Learn how to build and configure a Thread network
  • Port OpenThread to a new platform
  • Build an application on top of OpenThread
  • Certify a product using OpenThread

...then openthread.io is the place for you.

Note: For users in China, end-user documentation is available at openthread.google.cn.

If you're interested in contributing to OpenThread, read on.

Contributing

We would love for you to contribute to OpenThread and help make it even better than it is today! See our Contributing Guidelines for more information.

Contributors are required to abide by our Code of Conduct and Coding Conventions and Style Guide.

License

OpenThread is released under the BSD 3-Clause license. See the LICENSE file for more information.

Please only use the OpenThread name and marks when accurately referencing this software distribution. Do not use the marks in a way that suggests you are endorsed by or otherwise affiliated with Nest, Google, or The Thread Group.

Need help?

OpenThread support is available on GitHub:

ot-cc2538's People

Contributors

dependabot[bot] avatar hdp617 avatar j-noel-longhand avatar jwhui avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

ot-cc2538's Issues

OT-cc2538 as RCP fails because of missing capabilities: tx-security tx-timing

I was trying to use the ot-cc2538 ot-rcp together with the ot-docker image.
I built commit 08e58f0 with commands:
./script/bootstrap
./script/build
arm-none-eabi-objcopy -O binary build/bin/ot-rcp build/bin/ot-rcp.bin
python3 $HOME/workspace/cc2538-bsl/cc2538-bsl.py -e -w -v -p "/dev/ttyACM0" -a 0x00200000 build/bin/ot-rcp.bin

Then I start the docker image with:
`docker run --sysctl "net.ipv6.conf.all.disable_ipv6=0 net.ipv4.conf.all.forwarding=1 net.ipv6.conf.all.forwarding=1" -p 8080:80 --dns=127.0.0.1 -it --volume /dev/ttyACM0:/dev/ttyACM0 --privileged openthread/otbr --radio-url spinel+hdlc+uart:///dev/ttyACM0'

May 26 09:17:16 19e50772afcd avahi-daemon[186]: New relevant interface eth0.IPv4 for mDNS.
May 26 09:17:16 19e50772afcd avahi-daemon[186]: Joining mDNS multicast group on interface lo.IPv6 with address ::1.
May 26 09:17:16 19e50772afcd avahi-daemon[186]: New relevant interface lo.IPv6 for mDNS.
May 26 09:17:16 19e50772afcd avahi-daemon[186]: Joining mDNS multicast group on interface lo.IPv4 with address 127.0.0.1.
May 26 09:17:16 19e50772afcd avahi-daemon[186]: New relevant interface lo.IPv4 for mDNS.
May 26 09:17:16 19e50772afcd avahi-daemon[186]: Network interface enumeration completed.
May 26 09:17:16 19e50772afcd avahi-daemon[186]: Registering new address record for fe80::42:acff:fe11:2 on eth0..
May 26 09:17:16 19e50772afcd avahi-daemon[186]: Registering new address record for 172.17.0.2 on eth0.IPv4.
May 26 09:17:16 19e50772afcd avahi-daemon[186]: Registering new address record for ::1 on lo.
.
May 26 09:17:16 19e50772afcd avahi-daemon[186]: Registering new address record for 127.0.0.1 on lo.IPv4.
May 26 09:17:17 19e50772afcd otbr-agent[214]: [INFO]-UTILS---: Running 0.3.0
May 26 09:17:17 19e50772afcd otbr-agent[214]: [INFO]-UTILS---: Thread version: 1.2.0
May 26 09:17:17 19e50772afcd otbr-agent[214]: [INFO]-UTILS---: Thread interface: wpan0
May 26 09:17:17 19e50772afcd otbr-agent[214]: [INFO]-UTILS---: Backbone interface: eth0
May 26 09:17:17 19e50772afcd otbr-agent[214]: [INFO]-UTILS---: Radio URL: spinel+hdlc+uart:///dev/ttyACM0
May 26 09:17:17 19e50772afcd otbr-agent[214]: [INFO]-PLAT----: RCP reset: RESET_POWER_ON
May 26 09:17:17 19e50772afcd otbr-web[242]: [INFO]-WEB-----: Running 0.3.0
May 26 09:17:17 19e50772afcd otbr-web[242]: [INFO]-WEB-----: Border router web started on wpan0
May 26 09:17:17 19e50772afcd otbr-web[242]: [ERR ]-WEB-----: OpenThread daemon is not running.
May 26 09:17:17 19e50772afcd otbr-agent[214]: [NOTE]-PLAT----: RCP API Version: 3
May 26 09:17:17 19e50772afcd otbr-agent[214]: [CRIT]-PLAT----: RCP is missing required capabilities: tx-security tx-timing
May 26 09:17:17 19e50772afcd otbr-agent[214]: [CRIT]-PLAT----: CheckRadioCapabilities() at ../../third_party/openthread/repo/src/lib/spinel/radio_spinel_impl.hpp:384: RadioSpinelIncompatible

As I have seen from other OT issues and questions on mailing lists, there seem to be an upgrade of the Thread Protocol version to 1.2, is that the culprit here also?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.