Francisco Acosta
|
1a17955551
|
Merge pull request #6025 from aabadie/nucleo_f410
boards/nucleo-f410: initial support
|
2017-03-15 13:03:39 +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 |
|
|
2eda4bf2fe
|
cpu/stm32f4: add support for stm32f410rb
|
2017-03-14 18:45:11 +01:00 |
|
lebrush
|
2af148d8cd
|
Merge pull request #6714 from OTAkeys/pr/stm32_unify_gpio
cpu/stm32_common: unify gpio driver
|
2017-03-13 21:08:00 +01:00 |
|
Vincent Dupont
|
7b686b3015
|
cpu/stm32_common: unify gpio driver
|
2017-03-13 15:09:12 +01:00 |
|
Joakim Nohlgård
|
ba2689b422
|
Merge pull request #6673 from gebart/pr/llvm-objcopy
llvm: Fall back for missing objcopy
|
2017-03-13 12:43:01 +01:00 |
|
Oleg Hahm
|
1660abdc70
|
doc: cpu: fix doxygen
|
2017-03-10 14:56:28 +01:00 |
|
Joakim Nohlgård
|
887cc72365
|
Merge pull request #5616 from gebart/pr/vfs
vfs: file system abstraction
|
2017-03-09 09:44:56 +01:00 |
|
Peter Kietzmann
|
8c86aa787d
|
Merge pull request #6692 from smlng/pr/cc2538/fix_xtimer_params
cc2538: fix xtimer
|
2017-03-09 08:05:39 +01:00 |
|
smlng
|
40431fe5e3
|
cc2538: add feature periph_pm
|
2017-03-07 22:00:03 +01:00 |
|
|
26b99a57be
|
cpu: native: add vfs wrappers
|
2017-03-07 17:59:59 +01:00 |
|
Joakim Nohlgård
|
5e27bf4f31
|
msp430: Add all expected POSIX unistd.h declarations
|
2017-03-07 17:59:57 +01:00 |
|
Vincent Dupont
|
3485ab4e96
|
msp430: add libc missing symbols and defines
|
2017-03-07 17:59:57 +01:00 |
|
Joakim Nohlgård
|
9ec001b84b
|
atmega_common: Update unistd.h with prototypes of all POSIX defined functions and constants
|
2017-03-07 17:59:57 +01:00 |
|
Joakim Nohlgård
|
738876a98f
|
cpu/atmega_common: Improve POSIX headers
|
2017-03-07 17:59:57 +01:00 |
|
Joakim Nohlgård
|
33566a2fe7
|
msp430: Discard order argument when using __sync_xxx for atomics
|
2017-03-07 10:21:37 +01:00 |
|
Hauke Petersen
|
997244f9d7
|
cpu/stm32f2: fixed blank lines at EOF
|
2017-03-07 08:55:16 +01:00 |
|
Hauke Petersen
|
1ae911e889
|
cpu/cc26x0: fixed doxygen issues
|
2017-03-07 08:55:15 +01:00 |
|
Hauke Petersen
|
ef3cdde903
|
cpu/atmega_common: fixed doxygen issues
|
2017-03-07 08:55:15 +01:00 |
|
Hauke Petersen
|
37d4f44379
|
cpus: mv vendor headers to include/vendor/.
|
2017-03-07 08:55:15 +01:00 |
|
Francisco Acosta
|
1e8b3c8808
|
Merge pull request #6682 from dkm/pr/gpio_cleanup
cpu/lm4f120: remove useless gpio_pp_t type
|
2017-03-03 17:40:02 +01:00 |
|
Loïc Dauphin
|
71c6f28ad5
|
cpu/stm32f1: rename opencm9-04 into opencm904
|
2017-03-03 09:54:32 +01:00 |
|
lebrush
|
afaef0a578
|
Merge pull request #6628 from aabadie/nucleo_l053
boards/nucleo-l053: initial support
|
2017-03-02 22:13:10 +01:00 |
|
smlng
|
e0f19f3394
|
cc2538: fix timer_set for channel B
|
2017-03-02 14:49:16 +01:00 |
|
|
27ad3e6b1f
|
cpu/stm32l0: add support for stm32l053r8
|
2017-03-02 13:52:12 +01:00 |
|
Marc Poulhiès
|
b3307e1e1a
|
cpu/lm4f120: remove useless gpio_pp_t type
Signed-off-by: Marc Poulhiès <dkm@kataplop.net>
|
2017-03-02 12:57:42 +01:00 |
|
Oleg Hahm
|
1af1727759
|
Merge pull request #6660 from kaspar030/fix_native_thread_yield_higher
cpu: native: fix thread_yield_higher isr_is_in() case
|
2017-03-02 12:19:34 +01:00 |
|
Joakim Nohlgård
|
30aec689d9
|
llvm: Fall back for missing objcopy
Copied from Makefile.include.gnu
|
2017-03-01 14:51:47 +01:00 |
|
Francisco Acosta
|
29753d6018
|
Merge pull request #6433 from aabadie/nucleo_l073
boards/nucleo-l073: initial support
|
2017-02-28 20:22:39 +01:00 |
|
|
718618fd96
|
Merge pull request #6640 from immesys/fix-features-pm
cpu/cortexm_common: fix periph_pm typo
|
2017-02-27 22:30:55 +01:00 |
|
|
2d92661b76
|
cpu: native: fix thread_yield_higher inisr() case
|
2017-02-27 16:10:12 +01:00 |
|
|
3f57790c47
|
Merge pull request #6565 from OTAkeys/pr/nucleo144-f413
boards/nucleo144-f413 add inital support
|
2017-02-24 17:24:12 +01:00 |
|
|
5bd4ba6da0
|
cpu/stm32l0: add support for stm32l0 cpu family
|
2017-02-24 16:12:00 +01:00 |
|
|
55bb8874f3
|
cpu/stm32_common: special case for STM32L0 cpu family
|
2017-02-24 16:12:00 +01:00 |
|
|
79b2fd89bb
|
Merge pull request #6568 from haukepetersen/opt_periph_uarttxonly
periph/uart: enable to run UART in TX only mode
|
2017-02-24 13:01:38 +01:00 |
|
Vincent Dupont
|
efbad0dd3f
|
cpu/stm32f4: add stm32f413zh support
|
2017-02-23 17:01:44 +01:00 |
|
Hauke Petersen
|
fc6b7f0575
|
Merge pull request #6564 from haukepetersen/opt_periph_pwmpower
periph/pwm: remove pwm_(start|stop) + doc
|
2017-02-23 10:58:44 +01:00 |
|
Hauke Petersen
|
bacdb8d3d3
|
Merge pull request #6593 from haukepetersen/rm_gpioint
drivers: remove gpioint interface
|
2017-02-23 10:57:11 +01:00 |
|
Michael Andersen
|
a72df9f015
|
cpu/cortexm_common: fix periph_pm typo
|
2017-02-22 15:58:20 -08:00 |
|
Hauke Petersen
|
26e9194631
|
cpu/cc430: remove gpioint driver
|
2017-02-22 17:49:27 +01:00 |
|
|
2317019fda
|
cpu/stm32f0: add support for stm32f031k6
|
2017-02-22 16:34:44 +01:00 |
|
|
5e264f13eb
|
cpu/stm32f4: add support for stm32f411re
|
2017-02-22 15:18:21 +01:00 |
|
Oleg Hahm
|
4b79950656
|
Merge pull request #6558 from haukepetersen/opt_lpc2387_rmadc
cpu/lpc2387: remove (unused) legacy ADC driver
|
2017-02-22 11:01:04 +01:00 |
|
Martine Lenders
|
4b5952e0ad
|
Merge pull request #6622 from gebart/pr/cppcheck-fixes
cppcheck fixes 1
|
2017-02-17 16:11:11 +01:00 |
|
Joakim Nohlgård
|
ba31acae58
|
cpu/lpc2387: Add missing assert(buff != NULL)
|
2017-02-16 17:12:51 +01:00 |
|
Joakim Nohlgård
|
5f63bd38a4
|
cpu/lm4f120: Fix cppcheck warning
|
2017-02-16 17:12:23 +01:00 |
|
Joakim Nohlgård
|
9830912b23
|
llvm: Only use GCC include paths when cross compiling
native should only use the compiler defaults for system includes.
|
2017-02-16 16:28:36 +01:00 |
|
Hauke Petersen
|
d84982428b
|
cpu/stm32: added compile guards to flashpage.c
|
2017-02-13 09:45:37 +01:00 |
|
Hauke Petersen
|
3bd8c32554
|
cpu/stm32: moved flashpage driver to common code
|
2017-02-13 09:45:37 +01:00 |
|
Hauke Petersen
|
8064bd9fa9
|
periph/pwm: remove pwm_(start|stop) + doc
- joined start/stop and poweron/poweroff
- added general documentation
|
2017-02-13 09:37:31 +01:00 |
|