Re: [riot-devel] How to properly use cortexm_sleep

2019-05-28 Thread Oleg Artamonov
Hi.Yes, but for emergency reboots only. Implementations: https://github.com/unwireddevices/RIOT/blob/loralan-public/cpu/stm32_common/periph/iwdg.c and https://github.com/unwireddevices/RIOT/blob/loralan-public/cpu/nrf5x_common/periph/iwdg.c For task scheduling on sleepy devices we use RTC-based tim

Re: [riot-devel] Notification: Hack'n'ACK @ Tue May 28, 2019 5pm - 10pm (CEST) (RIOT Events)

2019-05-28 Thread Emmanuel Baccelli
Some of us are already on Jitsi at https://meet.jit.si/riot-hacknack Cheers! Emmanuel On Mon, May 27, 2019 at 5:11 PM Martine Lenders wrote: > Hi, > > this is a reminder or maybe new information for some: The Hack'n'ACK this > month will start in Berlin (and Paris?) tomorrow already at 3pm. If

[riot-devel] RIOT vectors for Smartfusion2 port

2019-05-28 Thread Ashim Asharaph
Dear RIOT Developers I am currently working on a port for RIOT to the Microsemi SmartFusion2 board which has a Cortex M3. I see that most of the CPUs have a vectors.c file which specify all the interrupt vectors. Some of the other boards have an assembly file for startup such as the lpc2387 whi

Re: [riot-devel] RIOT vectors for Smartfusion2 port

2019-05-28 Thread Juan Ignacio Carrano
Hi Ashim, I assume you are basing your SmartFusion port on some existing CPU. If that's the case, it would be useful to know which one. Even better if you can link us to a publicly accessible repo. I have tried including this file in the new cpu folder I created but get the following error w

Re: [riot-devel] CC2538dk Riotboot support

2019-05-28 Thread Emmanuel Baccelli
FYI I opened a PR adding a WIP porting guide: https://github.com/RIOT-OS/RIOT/pull/11597 On Mon, May 27, 2019 at 2:43 PM Gaëtan Harter wrote: > On 5/27/19 2:36 PM, Emmanuel Baccelli wrote: > > Seems to me that a quick riotboot porting guide could be useful somewhere > > in the wiki. > > > > More

Re: [riot-devel] Lightweight Syslog Implementation

2019-05-28 Thread Robin
Hi Kaspar, > See above. There's an example log backend in sys/log/log_printfnoformat > showing how to create a logging backend module. It should be straigh > forward to use syslog there. i just found some time to have a short look into the logging API. I tried to compile my tests with the log_pri

Re: [riot-devel] How to properly use cortexm_sleep

2019-05-28 Thread Kees Bakker
Nice, Thanks for sharing On 28-05-19 08:48, Oleg Artamonov wrote: Hi. Yes, but for emergency reboots only. Implementations: https://github.com/unwireddevices/RIOT/blob/loralan-public/cpu/stm32_common/periph/iwdg.c and https://github.com/unwireddevices/RIOT/blob/loralan-public/cpu/nrf5x_comm