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
Hauke Petersen
ab2fb1f095
boards/nrf51dongle: adapted to UART changes
2015-10-27 14:59:37 +01:00
Hauke Petersen
c5d67b69fc
boards/airfy-beacon: adapted to UART changes
2015-10-27 14:59:37 +01:00
Hauke Petersen
63b37640b6
s board/periph_conf: added some spaces
2015-10-27 12:28:32 +01:00
Ludwig Knüpfer
01b3486edc
boards: add ADC definitions to periph_conf
2015-10-25 14:30:35 +01:00
Ludwig Knüpfer
0b5918003f
cpu/nrf51 + boards: fix typo - TIEMER -> TIMER
2015-10-25 08:07:21 +01:00
Hauke Petersen
83b322f9ce
s board: fixes
...
- moved pwm_conf[_chan]_t to periph_cpu.h
- fixed comments for channel definitions
2015-10-23 11:41:04 +02:00
Hauke Petersen
d70d59592e
boards/samr21-xpro: adjusted PWM pin configuration
2015-10-23 11:41:04 +02:00
Hauke Petersen
d8cefaf97f
Merge pull request #4080 from thomaseichinger/pr/openmote-fix-flasher
...
boards/openmote: This board *doesn't* use openocd
2015-10-23 11:16:40 +02:00
Peter Kietzmann
c59f2450a7
Merge pull request #4133 from gebart/pr/mulle-xtimer-init
...
mulle: Initialize xtimer early to support nvram usage in board_init
2015-10-22 11:49:02 +02:00
Peter Kietzmann
24a82833f1
Merge pull request #4128 from haukepetersen/opt_boards_makefeat
...
boards: cleaned up entries in Makefile.features
2015-10-22 11:05:45 +02:00
Joakim Nohlgård
043deca350
mulle: Initialize xtimer early to support nvram usage in board_init
2015-10-22 07:54:25 +02:00
Peter Kietzmann
fc539573a4
Merge pull request #3485 from gebart/pr/mulle-nvram
...
mulle: Initialize NVRAM storage at boot, update boot counter
2015-10-21 18:01:23 +02:00
Hauke Petersen
528e832c90
boards: cleaned up entries in Makefile.features
2015-10-21 16:45:21 +02:00
Paul Rathgeb
df68ac9f79
cpu/lpc11u34 : Added SPI for NXP LPC11U34 (SPI_0 and SPI_1)
...
make: Blacklisted 'weio' in driver_at86rf2xx and driver_kw2xrf due to insufficient memory
2015-10-16 17:28:09 +02:00
Thomas Eichinger
02e2d8c353
Merge pull request #4084 from ks156/adc
...
cpu/lpc11u34 : Added ADC support for LPC11U34
2015-10-14 10:22:09 +02:00
Paul Rathgeb
c2d8d27322
cpu/lpc11u34 : Added ADC support for LPC11U34
2015-10-13 21:45:17 +02:00
Joakim Gebart
22af0cca80
mulle: Initialize NVRAM storage at boot, update boot counter
...
The boot counter is incremented on each boot. Still missing is an
interface for reading the boot counter from an application.
2015-10-13 18:19:34 +02:00
Hauke Petersen
e395dfd91e
boards: s/GPIO(x,y)/GPIO_PIN(x,y)/
2015-10-13 14:59:53 +02:00
Thomas Eichinger
c0782d68e8
Merge pull request #4070 from thomaseichinger/hauke_fix_l1_uartpins
...
cpu/stm32l1: cleaned up UART pin configuration slightly
2015-10-13 11:37:12 +02:00
Thomas Eichinger
f4a6293858
boards/openmote: This board *doesn't* use openocd
2015-10-12 18:09:27 +02:00
Hauke Petersen
cdcdd185af
boards/nucleo-l1: adapted UART configuration
2015-10-10 13:24:28 +02:00
Paul Rathgeb
8b97ef12d5
cpu/lpc11u34 : Add CPUID support and added this capability to board/weio
2015-10-10 09:23:45 +02:00
Paul Rathgeb
01e5c056d9
cpu/lpc11u34 : Added PWM support for the NXP LPC11U34
...
and added PWM capabilities to the board WeIO
2015-10-08 15:37:38 +02:00