Francisco Molina
|
145d24499d
|
cpu/cc2538_rf: remove RADIO_IRQ_PRIO
|
2020-10-22 17:26:08 +02:00 |
|
Francisco Molina
|
0175abc8e5
|
cc2538/cc2538_rf_radio_ops: add TX/RX_START
|
2020-10-22 14:59:06 +02:00 |
|
Jose Alamos
|
fa0dd8b5e2
|
netdev_ieee802154_submac: set addresses using netdev_register
|
2020-10-19 15:18:35 +02:00 |
|
Jose Alamos
|
c1a9d352f3
|
cc2538_rf: unify auto_init for HAL and netdev
|
2020-10-19 15:18:34 +02:00 |
|
Benjamin Valentin
|
1811686540
|
cc2538_rf: register with netdev
|
2020-09-11 13:33:37 +02:00 |
|
Jose Alamos
|
1401635787
|
cc2538: implement radio hal
|
2020-09-04 11:09:17 +02:00 |
|
Jose Alamos
|
2917879407
|
cc2538: move chunks of init function to netdev
|
2020-09-03 18:20:49 +02:00 |
|
|
da0866a6a0
|
cc2538_rf: Remove PAN ID initialization from reset
|
2018-11-28 11:31:02 +01:00 |
|
Martine Lenders
|
29842bb5e4
|
netdev2: rename to netdev and remove gnrc_netdev
With some minor hand-edits I used the following chain of commands:
```sh
git rm sys/include/net/gnrc/netdev.h
git grep --name-only -i netdev2 | \
xargs sed -i -e 's/^\(NETDEV\)2\(.*\)\( [("]\)/\1\2 \3/g' \
-e 's/\(netdev\)2\(.*\)\( \/\*\*<\)/\1\2 \3/I' \
-e 's/\(netdev\)2/\1/gI'
git add -p
git commit --amend
git ls-tree --full-tree -r HEAD --name-only | \
grep "netdev2" | xargs -I'{}' dirname '{}' | uniq | \
grep "netdev2" | while read dir; do
new_dir="$(echo "$dir" | sed "s/netdev2/netdev/g")"
git mv -f "$dir" "$new_dir"
done
git commit --amend
git ls-tree --full-tree -r HEAD --name-only | \
grep "netdev2" | while read file; do
new_file="$(echo "$file" | sed "s/netdev2/netdev/g")"
git mv -f "$file" "$new_file"
done
git commit --amend
git grep --name-only "\<drivers_netdev_netdev\>" | \
xargs sed -i "s/\<drivers_netdev_netdev\>/drivers_netdev_api/g"
git add -p
git commit --amend
```
|
2017-03-15 09:31:20 +01:00 |
|
smlng
|
77250f89a3
|
cc2538: disable l2 ack recv irq
|
2016-09-27 15:04:39 +02:00 |
|
Aaron Sowry
|
2ba43d560f
|
cpu/cc2538: Remove superfluous mutex lock
|
2016-09-04 20:51:51 +12:00 |
|
Aaron Sowry
|
a301c37c2e
|
cpu/cc2538: Remove union names from structs
Make the unions anonymous, since this makes referencing
their bytes much simpler.
|
2016-07-16 12:55:12 +12:00 |
|
Aaron Sowry
|
a2ba22dd0f
|
cpu/cc2538: Add RF driver
|
2016-07-13 14:19:45 +12:00 |
|