Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rosvall/cc2531_linux
Linux kernel driver for CC2531 WPAN Adapter firmware
https://github.com/rosvall/cc2531_linux
cc2531 linux lowpan matter usb wpan zigbee
Last synced: about 2 months ago
JSON representation
Linux kernel driver for CC2531 WPAN Adapter firmware
- Host: GitHub
- URL: https://github.com/rosvall/cc2531_linux
- Owner: rosvall
- Created: 2023-06-28T08:53:13.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-19T15:28:19.000Z (6 months ago)
- Last Synced: 2024-07-19T20:04:06.653Z (6 months ago)
- Topics: cc2531, linux, lowpan, matter, usb, wpan, zigbee
- Language: C
- Homepage: http://rosvall.github.io/
- Size: 47.9 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSES/GPL-3.0-or-later.txt
Awesome Lists containing this project
README
# Linux kernel driver for CC2531 WPAN Adapter
IEEE 802.15.4 Linux driver for [CC2531 based USB dongle](https://www.ti.com/tool/CC2531USB-RD) with [WPAN Firmware](https://github.com/rosvall/cc2531_usb_wpan_adapter).## Features
- Send and receive IEEE 802.15.4 frames.
- Get/set channel, address, transmit power, CCA mode, etc.
- Promiscous mode.
- Exposes all hardware registers in sysfs for experimentation.## Requirements
- CC2531 based USB dongle with [WPAN Firmware](https://github.com/rosvall/cc2531_usb_wpan_adapter)
- Linux 6.0 or newer
- GCC, binutils, kernel headers, etc.## How to build
```sh
# Clone repo
git clone 'https://github.com/rosvall/cc2531_linux.git'
cd cc2531_linux# Build
make# Install module
sudo make modules_install
```## References
- [CC253x/4x User's Guide (Rev. D)](https://www.ti.com/lit/pdf/swru191)## See also
- [Flash a stock Texas Instruments CC2531USB-RD dongle, no tools required](https://github.com/rosvall/cc2531_oem_flasher)
- [Simple USB DFU bootloader for TI CC2531](https://github.com/rosvall/cc2531_bootloader)
- [WPAN Adapter firmware for CC2531 USB Dongle](https://github.com/rosvall/cc2531_usb_wpan_adapter)