Yes indeed, there is no driver for the cc26x0_cc13x0
radio yet.
There is a driver in the works for the radio on cc26x2_cc13x2
, maybe it can serve as a start? (Although mind you that the new chip is a 802.15.4-2012g device, so it will have some differnces).
RIOT-OS:master
← kYc0o:pr/add_cc26x2_cc13x2_radio
opened 04:41PM - 13 Oct 22 UTC
<!--
The RIOT community cares a lot about code quality.
Therefore, before desc… ribing what your contribution is about, we would like
you to make sure that your modifications are compliant with the RIOT
coding conventions, see https://github.com/RIOT-OS/RIOT/blob/master/CODING_CONVENTIONS.md.
-->
### Contribution description
<!--
Put here the description of your contribution:
- describe which part(s) of RIOT is (are) involved
- if it's a bug fix, describe the bug that it solves and how it is solved
- you can also give more information to reviewers about how to test your changes
-->
This PR is a continued work on #13295 from @jeandudey. Basically it retakes the same features and code, I just updated it and adapted it for the current API and HAL.
### Testing procedure
<!--
Details steps to test your contribution:
- which test/example to compile for which board and is there a 'test' command
- how to know that it was not working/available in master
- the expected success test output
-->
For now some warnings are being triggered, I'm working on them but I think it will take me a while to remove them, although the code compiles and works with the following command:
```console
$ BOARD=cc1312-launchpad WERROR=0 make -C examples/gnrc_networking flash term
```
I only tested on 2 cc1312-launchpad boards, I'd need to get some other supported sub-ghz board to check broad compatibility.
### Issues/PRs references
<!--
Examples: Fixes #1234. See also #5678. Depends on PR #9876.
Please use keywords (e.g., fixes, resolve) with the links to the issues you
resolved, this way they will be automatically closed when your pull request
is merged. See https://help.github.com/articles/closing-issues-using-keywords/.
-->
#13295
#13205
#13215