28e800d2d2
boards/samr21: add SAUL led parameters
2015-11-30 20:33:56 +01:00
Hauke Petersen
f6dc6d0475
boards/fox: added SAUL configaration for sensors
2015-11-30 20:33:55 +01:00
Hauke Petersen
16f04741bd
boards/iotlab-m3: added SAUL config for sensors
2015-11-30 20:33:55 +01:00
Cenk Gündoğan
60d4472419
Merge pull request #4301 from thomaseichinger/pr/env_bash
...
tools: remove hardcoding of bash hashbang
2015-11-30 11:04:23 +01:00
Peter Kietzmann
329820ddd4
Merge pull request #4119 from latsku/nucleo-f401
...
boards: Add support for Nucleo-f401
2015-11-30 10:52:24 +01:00
Lari Lehtomäki
14be504b6a
boards/nucleo-f401: Add initial support
...
cpu: Add support for STM32F401xE cpu
boards: Add support for Nucleo-f401
boards/nucleo-f401: New line fixes and comment on green led pin
board/nucleo-f401: Added LED GPIO
board/nucleo-f401: Fixed LED GPIO
board/nucleo-f401: Minor fixes
2015-11-30 11:06:34 +02:00
2cf68f30ec
Merge pull request #4312 from kaspar030/misc_fmt_compile_fixes
...
cpu: atmega_common, msp430: misc libc fixes for fmt
2015-11-28 23:47:09 +01:00
8d613ceb53
boards: chronos: add dummy write() implementation
2015-11-28 22:09:37 +01:00
Cenk Gündoğan
03b1d86179
Merge pull request #4355 from thomaseichinger/pr/telob_tty
...
boards/telosb: fix serial port on OS X
2015-11-27 17:42:14 +01:00
Thomas Eichinger
1f78293139
boards/telosb: fix serial port on OS X
2015-11-27 16:10:21 +01:00
Hauke Petersen
3f622d96ac
board/stm32f4discovery: added Arduino configuration
2015-11-27 12:45:12 +01:00
Hauke Petersen
c581316706
Merge pull request #4313 from haukepetersen/add_mega_pinmap
...
boards/arduino-mega2560: added Ardunio pin mapping
2015-11-26 13:30:30 +01:00
Hauke Petersen
171df39b3c
Merge pull request #4314 from haukepetersen/add_due_pinmap
...
boards/arduino-due: added Arduino pin mapping
2015-11-26 13:30:10 +01:00
Thomas Eichinger
72ee60b9d5
scripts: remove hardcoding of bash hashbang
...
For host systems like FreeBSD, bash binary is found in a different path.
2015-11-25 16:20:56 +01:00
test
6e51bb741f
boards: samr21-xpro: uart config cleanup
2015-11-23 15:37:56 +01:00
Hauke Petersen
004537e045
boards/samr21-xpro: use default at86rf2xx_params.h
2015-11-19 16:25:40 +01:00
Hauke Petersen
af067e9428
boards/mulle: use default at86rf2xx_params.h
2015-11-19 16:25:40 +01:00
Hauke Petersen
7430ab30bb
boards/iotlab-m3: use default at86rf2xx_params.h
2015-11-19 16:25:40 +01:00
Hauke Petersen
973d85fa2e
boards/fox: use default at86rf2xx_params.h
2015-11-19 16:25:39 +01:00
Hauke Petersen
36a111e72f
boards/fox: added radio to netif_default
2015-11-19 16:17:20 +01:00
Hauke Petersen
3f114cc155
boards/arduino-mega2560: added Ardunio pin mapping
...
added a pin mapping file that maps MCU GPIO pins to Ardunio
specific pin numbers
2015-11-19 16:16:40 +01:00
Hauke Petersen
a4fd5937e2
boards/arduino-due: added Arduino pin mapping
...
added a header file that maps from MCU pins to Arduino
pin numbers
2015-11-19 14:08:07 +01:00
Oleg Hahm
c8d89cb645
Merge pull request #3848 from haukepetersen/rm_samr21_at86defs
...
boards/samr21-xpro: rm unused radio interface defs
2015-11-18 17:12:43 +01:00
Cenk Gündoğan
567d0efe16
Merge pull request #4217 from haukepetersen/opt_tests_makefiles
...
tests: simplified Makefiles for device driver test apps
2015-11-13 15:46:04 +01:00
Hauke Petersen
99e5aaaa7d
boards/fox: added params file for the at86rf231
2015-11-13 14:54:16 +01:00
Andreas "Paul" Pauli
e5b6566c9a
Merge pull request #4170 from haukepetersen/opt_sam3_uart
...
cpu/sam3: cleaned up UART driver
2015-11-11 16:21:10 +01:00
Andreas "Paul" Pauli
bf63e09a65
Merge pull request #4137 from haukepetersen/opt_samr21_pwm
...
cpu/samd21: optimized pin config for PWM driver
2015-11-05 16:14:05 +01:00
René Herthel
13ae0ab979
atmega2560/cpu: Fixed wrong using of UART macros
2015-11-03 18:29:53 +01:00
Peter Kietzmann
a7ea2522c0
Merge pull request #4166 from x3ro/samr-multiple-boards-term
...
Minor usability improvements prior to adding documentation
2015-10-29 09:20:41 +01:00
Peter Kietzmann
6fcea29bdc
Merge pull request #4042 from gebart/pr/kinetis-gpio-periph-refactor
...
kinetis_common: Refactor GPIO implementation
2015-10-29 08:29:09 +01:00
Joakim Nohlgård
142c28094e
kinetis_common: Refactor GPIO implementation
...
This is a rewrite of the Kinetis GPIO driver which follows the
refactored API in [1]. Pins are specified using the GPIO_PIN(PORT_x, y)
macro, e.g. GPIO_PIN(PORT_E, 25) for the PTE25 pin.
The interrupt pin handling is now implemented as a linked list, this
is more memory efficient, but with a minor variation in interrupt
latency depending on in what order the pins were initialized at
runtime.
Because the linked list entries are taken from a shared pool, there is
also the possibility of running out of available configuration slots,
define the preprocessor macro GPIO_INT_POOL_SIZE in periph_conf.h if
you need more than 16 pins configured for interrupts in the same
application.
[1]: https://github.com/RIOT-OS/RIOT/pull/3095
2015-10-28 14:12:19 +01:00
Hauke Petersen
aa216b585e
board/udoo: adjusted UART configuration
2015-10-28 12:05:35 +01:00
Hauke Petersen
8c38ccdb99
boards/arduino-due: adjusted UART configuration
2015-10-28 12:05:35 +01:00
Hauke Petersen
20a5571640
boards: added support for SiLabs SLWSTK6220A
2015-10-28 11:33:44 +01:00
Hauke Petersen
e17ab3df4a
make: added common JLink Makefile for boards
2015-10-28 11:19:38 +01:00
Lucas Jenss
d80f18de0b
Minor usability improvements for samr21 usage
2015-10-27 19:43:40 +01:00
Hauke Petersen
ddb8765ee4
boards/z1: adjusted to UART changes
2015-10-27 14:59:39 +01:00
Hauke Petersen
49efe3f611
boards/wsn430-v1_4: adjusted to UART changes
2015-10-27 14:59:39 +01:00
Hauke Petersen
fe7e2d1a97
boards/wsn430-v1_3b: adjusted to UART changes
2015-10-27 14:59:39 +01:00
Hauke Petersen
0e1e16d67f
boards/wsn430-common: adjusted to UART changes
2015-10-27 14:59:39 +01:00
Hauke Petersen
c62f39aa54
boards/telosb: adjusted to UART changes
2015-10-27 14:59:39 +01:00
Hauke Petersen
bfdc3e2f95
boards/pttu: adjusted to UART changes
2015-10-27 14:59:39 +01:00
Hauke Petersen
eb46b6b80d
boards/msba2: adjusted to UART changes
2015-10-27 14:59:38 +01:00
Hauke Petersen
a4372ce514
boards/msb-430h: adjusted to UART changes
2015-10-27 14:59:38 +01:00
Hauke Petersen
a8502e2991
boards/msb-430: adjusted to UART changes
2015-10-27 14:59:38 +01:00
Hauke Petersen
d4c2ee62b4
boards/avsextrem: adjusted to UART changes
2015-10-27 14:59:37 +01:00
Hauke Petersen
0f3e6fd5b9
boards/arduino-due: adapted to UART changes
2015-10-27 14:59:37 +01:00
Hauke Petersen
2bf8136168
boards/yunjia-nrf51822: adapted to UART changes
2015-10-27 14:59:37 +01:00
Hauke Petersen
e7f9b5b4f6
boards/pca10005: adapted to UART changes
2015-10-27 14:59:37 +01:00
Hauke Petersen
86072b1f6d
boards/pca10000: adapted to UART changes
2015-10-27 14:59:37 +01:00