Joakim Nohlgård
339a4da9dc
Makefiles: move to new directory /makefiles
6 years ago
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
```
6 years ago
smlng
ba3a46435c
cc2538: revert xtimer params from #5608
6 years ago
PeterKietzmann
9b772a45de
boards/cc2538: fix SPI clock initialisation
6 years ago
Hauke Petersen
ca5f1befb3
cpu/cc2538+boards: adapted to SPI API changes
...
- adapted the SPI driver
- adapted all boards using the CPU
6 years ago
Oleg Hahm
7ee7801c10
*: remove trailing underscores from header guards
6 years ago
Hauke Petersen
4419f4e191
boards: removed GPIO_x defines for cc2538-based b.
6 years ago
Joakim Nohlgård
24b41dc633
boards: Update XTIMER_SHIFT and XTIMER_HZ configurations to match xtimer changes
6 years ago
Francisco Acosta
eb06b13722
Merge pull request #5754 from locicontrols/cc2538-timer-pr
...
CC2538 periph/timer overhaul
6 years ago
Kaspar Schleiser
10e9336c78
boards: adapt to automatically included boards/$board/Makefile.dep
7 years ago
PeterKietzmann
5eafb071a6
dist/tools/cc2538-bsl: enforce python2
7 years ago
Ian Martin
abae801105
cpu/cc2538/periph/timer overhaul. support 16-bit and 32-bit modes
7 years ago
Aaron Sowry
4b4cbb0317
boards/openmote-cc2538: Add RF driver as dependency for board
7 years ago
Joakim Nohlgård
4d862955c2
xtimer: Rename XTIMER -> XTIMER_DEV
7 years ago
Ian Martin
a2ac92b2bd
cpu/cc2538: add periph/spi driver
7 years ago
Hauke Petersen
5996706771
boards: adapted LED initialization calls
7 years ago
Hauke Petersen
15ab6141e2
boards/openmote-cc2538: unified LED defines
7 years ago
Ludwig Knüpfer
d16eecdda3
Merge pull request #4913 from gebart/pr/makefile-ls-wildcard
...
make: Use makefile wildcard function instead of shell ls
7 years ago
Joakim Nohlgård
ae108581d3
boards/*/Makefile.include: replace $(shell ls) by native Makefile functions
7 years ago
Aaron Sowry
d7377cde27
Support flashing openmote-cc2538 board via serial interface
...
Enable directly from Makefile target 'flash' using cc2538-bsl script,
and make this the default flashing method for this platform.
7 years ago
Martine Lenders
dc16cb188a
Merge pull request #4433 from aeneby/openmote-cca
...
Update OpenMote board header file to define UPDATE_CCA
7 years ago
Aaron Sowry
24f5bc8cef
Update OpenMote board header file to define UPDATE_CCA.
...
As per the cc2538dk and ReMote boards. This enables the cc2538's
bootloader backdoor, to allow flashing via the serial interface even
when a valid image is already present.
Backdoor enable is set to LOW, PORT A, PIN 6 (ON/SLEEP on the OpenBase),
for consistency with the default OpenMote firmware.
7 years ago
Ian Martin
9642f2531a
cpu/cc2538: add periph/i2c driver
7 years ago
Ian Martin
e97af73862
enclose the numeric defines in parenthesis.
7 years ago
Ian Martin
4b29d2ef6d
set xtimer parameters for cc2538-based boards.
7 years ago
Ian Martin
4176d04b02
cpu/cc2538/periph/timer overhaul
...
* Use the 32-bit counter mode.
* Apply frequency scaling for non-16 MHz frequencies.
7 years ago
Hauke Petersen
f07a2758a0
boards/openmote: use global JLink script
7 years ago
Hauke Petersen
fe5023b7d4
boards: adapted to HWRNG changes
7 years ago
Joakim Nohlgård
7835ab2be7
make: Move BOARD and CPU includes to Makefile.modules
7 years ago
Joakim Nohlgård
fae9a092fd
boards: Remove Makefile.include.cortexm_common
7 years ago
Hauke Petersen
b436219674
boards: removed F_CPU define from board.h
7 years ago
Aaron Sowry
7759611713
Rename 'openmote' board to 'openmote-cc2538'
...
This is to avoid ambiguity with future versions of the OpenMote platform.
7 years ago