[riot-devel] Minutes from the road map session at the RIOT summit

2017-10-21 Thread Oleg Hahm
Dear road-mapping IOTlers, it took me way too long, but finally I managed to transcribe the handwritten notes from our road map session at the summit some weeks ago into the wiki: https://github.com/RIOT-OS/RIOT/wiki/RIOT-Summit-roadmap-session-2017 I tried my best to summarize our discussions,

Re: [riot-devel] rtc alarm running with threads

2017-10-21 Thread Joakim NohlgÄrd
Hi Paula, It is likely that the debug print in the sale_test function overflows the ISR stack. You can increase that stack size by adding CFLAGS += -DISR_STACKSIZE=1024 to your Makefile. The interrupt service routines on cortex m have a separate stack which is set to 512 bytes by default. Usually