1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00
RIOT/cpu/nrf51822
Hauke Petersen e7fbaf3815 cpu: removed NAKED attribute from ISRs
- removed the __attribute__((naked)) from ISRs
- removed ISR_ENTER() and ISR_EXIT() macros

Rationale: Cortex-Mx MCUs save registers R0-R4 automatically
on calling ISRs. The naked attribute tells the compiler not
to save any other registers. This is fine, as long as the
code in the ISR is not nested. If nested, it will use also
R4 and R5, which will then lead to currupted registers on
exit of the ISR. Removing the naked will fix this.
2014-10-30 19:33:32 +01:00
..
include doc: fix ambiguous file name warnings 2014-10-23 20:53:00 +02:00
periph cpu: removed NAKED attribute from ISRs 2014-10-30 19:33:32 +01:00
cpu.c cpu/nrf51822: squash added support for nrf51822 cpu 2014-08-04 13:42:06 +02:00
hwtimer_arch.c cpu/nrf51822: squash added support for nrf51822 cpu 2014-08-04 13:42:06 +02:00
io_arch.c cpu/nrf51822: squash added support for nrf51822 cpu 2014-08-04 13:42:06 +02:00
lpm_arch.c cpu/nrf51822: squash added support for nrf51822 cpu 2014-08-04 13:42:06 +02:00
Makefile cpu/nrf51822: squash added support for nrf51822 cpu 2014-08-04 13:42:06 +02:00
Makefile.include cpu/nrf51822: squash added support for nrf51822 cpu 2014-08-04 13:42:06 +02:00
nrf51822qfaa_linkerscript.ld cpu/nrf51822: some fixes and clean up 2014-09-17 14:44:13 +02:00
reboot_arch.c cpu/nrf51822: squash added support for nrf51822 cpu 2014-08-04 13:42:06 +02:00
startup.c cpu/nrf51822: fixed issue with disabled RAM 2014-10-13 13:04:39 +02:00
syscalls.c cpu: multiple: change size_t to ptrdiff_t for_sbrk_r 2014-09-14 22:07:05 +02:00