Commit Graph

105 Commits (0f2fa7883cf75bec70d3ade0ec8d3e00b8151a7c)

Author SHA1 Message Date
Hauke Petersen 26e9194631 cpu/cc430: remove gpioint driver 6 years ago
Kaspar Schleiser d1db946188 Merge pull request #6344 from haukepetersen/opt_pm_misc
pm: misc cleanup and fixes
6 years ago
Alexandre Abadie 3e49d0c8c6 Merge pull request #6434 from aabadie/petersen_typo
cpu: fix typo in author email
6 years ago
Alexandre Abadie 245f60edfa cpu: fix typo in author email 6 years ago
Oleg Hahm 7ee7801c10 *: remove trailing underscores from header guards 6 years ago
Hauke Petersen efa0aa1fa9 cpu/cc430|chronos: moved periph_common dep to CPU 6 years ago
Hauke Petersen a35709b4f8 Merge pull request #6360 from OlegHahm/periph_timer_remove_irq
periph timer: remove timer_irq_(en|dis)able
6 years ago
Oleg Hahm d0316fa7ae periph timer: remove timer_irq_(en|dis)able 6 years ago
Hauke Petersen f8eaff4bbe cpu: moved msp430-common to msp430_common 6 years ago
Joakim Nohlgård 7c48c891a0 xtimer: Update xtimer usage to match API changes 7 years ago
Kaspar Schleiser c3f7186d4e unify usage of inline assembly 7 years ago
DipSwitch 0bb4748a94 core: Fix/refactor function naming in core/incude/irq.h 7 years ago
Hauke Petersen b11a3ad74b cpus: adapted timer implementations to API changes 7 years ago
Joakim Nohlgård 77fbe188e7 cpu/cc430: Update to match timer_init API change 7 years ago
Joakim Nohlgård cbaeccdb90 periph/timer: Drop timer_reset 8 years ago
Hauke Petersen b49eb93249 cpu/cc430: timer: s/TIMER_DEV/TIMER_BASE/ 8 years ago
Kaspar Schleiser a22f0a3c78 cpu: msp430*: remove obsolete hwtimer_compat dependency 8 years ago
Kaspar Schleiser 832539fc88 cpu: cc430: remove hwtimer support, switch gpioint to xtimer 8 years ago
Kaspar Schleiser 87d2596819 cpu: cc430: make adc use xtimer 8 years ago
Hauke Petersen 335ec926de cpu/cc430: added peripheral timer implementation 8 years ago
Hauke Petersen 69e83bbab3 cpu: removed hwtimer code from msp430 CPUs 8 years ago
Hauke Petersen 0cdda8bad6 boards/chronos: fixed after removing legacy header 8 years ago
Kaspar Schleiser 723d0b2479 remove legacy board specific cc110x code 8 years ago
Hauke Petersen 3ec9c7b2cb cpu/cc430: fixed missing include in adc driver 8 years ago
Joakim Gebart d8e9b62c75 cpu/cc430/flashrom.c: Fix warning about unused static function by declaring inline 8 years ago
Joakim Gebart 84bf05a0bd cpu/cc430: fix unused-but-set-variable 8 years ago
Joakim Gebart 13832d8e62 everything: Remove filename from @file Doxygen command 8 years ago
Ludwig Ortmann cf637942cc *: add missing blank lines
Some functions had no blank lines to separate them from their
neighborhood.
8 years ago
Kévin Roussel 25ac0db606 Robust use of TimerA for 'hwtimer' module 9 years ago
Kévin Roussel d101b30dd8 Make hwtimer_spin() work even with interrupts disabled
by using only 16 significative bits on MSP430 hardware timers
9 years ago
Oleg Hahm 60cd0d357d periph_rtc: streamline lpc2387 and cc430 naming 9 years ago
Oleg Hahm 498edb1854 cc430: lpc2387: switch to new periph/rtc interface
Removes the old interface.
9 years ago
BytesGalore a4d2ee307c cpu: added `extern "C"` to headers 9 years ago
Hinnerk van Bruinehsen ec98c85a05 lint: fix unusedVariable warnings
SQUASH ME: into unusedVariable (annotated)

SQUASH ME: into unusedVariable (II)

SQUASH ME: into unreadVariable (II)
9 years ago
Fabian Nack 07fff37efe drivers - cc110x_ng: rename ng driver to legacy 9 years ago
René Kijewski 0cc699c0ce lint: reduce scope
Fix some lint warnings of kind
```
style (variableScope): The scope of the variable '…' can be reduced
```
9 years ago
Ludwig Ortmann 2439bd839c doc: fix more license headers
Remove some cruft, set correct lgpl versions, update to lgpl where
this had been overlooked in the past, fix odd comment style...
9 years ago
Ludwig Ortmann b7992922ce fix license headers in non-.c files 9 years ago
Oleg Hahm aa2ecf6216 initialize kernel_pid_t correctly 9 years ago
Ludwig Ortmann 1df6505db9 boards/cpu: fix some warnings 9 years ago
Ludwig Ortmann c883c33d83 doc: fix flashrom doxygen 9 years ago
Oleg Hahm 983d056c75 core: harmonizes the data type for the process ID
Instead of using differing integer types use kernel_pid_t for process
identifier. This type is introduced in a new header file to avoid
circular dependencies.
9 years ago
Ludwig Ortmann d55da67fb6 Merge pull request #1329 from LudwigOrtmann/riot_license
RIOT default license header change
9 years ago
Ludwig Ortmann 5fdce06b3b doc: use lgplv2.1-short license header instead of lgplv2-short-v1 9 years ago
Ludwig Ortmann c40b281873 doc: use lgplv2.1-short license header instead of lgplv2-short-v3 9 years ago
Cenk Gündoğan 3989945679 converting tabs to spaces in cpu (#1439)
This PR converts tabs to white spaces.
The statement I used for the conversion:
```find . -name "*.[ch]" -exec zsh -c 'expand -t 4 "$0" > /tmp/e && mv /tmp/e "$0"' {} \;```
Afterwards, I had a quick overview of the converted files to prevent odd indentation.
9 years ago
Simon Gene Gottlieb 519ed7163c board/flash: changing flashrom_write signature
→ changing all flashrom_write() function to the same signature
	→ adding const keyword to signature
9 years ago
Hauke Petersen 9001e0c2fb core: removed duplicated hwtimer_arch.h 9 years ago
René Kijewski 467b41ad49 make: easifier usage of module subdirectories
Many modules have subdirectories. Often these subdirectories should only
be included under certain circumstances. Modules that use submodules
currently need to use this pattern:

```make
DIRS = …

all: $(BINDIR)$(MODULE).a
   @for i in $(DIRS) ; do $(MAKE) -C $$i ; done ;

include $(RIOTBASE)/Makefile.base

clean::
   @for i in $(DIRS) ; do $(MAKE) -C $$i clean ; done ;
```

This PR moves the `all:` and `clean::` boilerplate into `Makefile.base`.
9 years ago
Oleg Hahm ef4fe6616c documentation: unified descriptive text for cpu 9 years ago