1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-30 17:01:19 +01:00

msp430: Fix variable usage in cc430-rtc.c

Closes #967.
This commit is contained in:
René Kijewski 2014-04-11 17:20:23 +02:00
parent 852618476c
commit 2793426c89

View File

@ -197,7 +197,7 @@ interrupt(RTC_VECTOR) __attribute__((naked)) rtc_isr(void)
}
if (rtc_second_pid) {
msg_t m;
static msg_t m;
m.type = RTC_SECOND;
msg_send_int(&m, rtc_second_pid);
}