ESP8266 Developer Zone The Official ESP8266 Forum 2017-12-19T19:22:12+08:00 https://bbs.espressif.com:443/feed.php?f=7&t=8750 2017-12-19T19:22:12+08:00 2017-12-19T19:22:12+08:00 https://bbs.espressif.com:443/viewtopic.php?t=8750&p=18737#p18737 <![CDATA[Re: SysGCC RTOS-SDK xTimerCreate Error]]> But the ESP provided a compiling environment in the documentation ESP8266 SDK Getting Started Guide, maybe you can use that one instead.

Statistics: Posted by Her Mary — Tue Dec 19, 2017 7:22 pm


]]>
2017-12-13T16:39:06+08:00 2017-12-13T16:39:06+08:00 https://bbs.espressif.com:443/viewtopic.php?t=8750&p=18682#p18682 <![CDATA[SysGCC RTOS-SDK xTimerCreate Error]]> I wanted to create a time base to perform functions regularly, I thought about using the following code:

xTimerHandle timer;

void callback_timer (xTimerHandle xTimer)
{

}

timer = xTimerCreate ("timer", 5000 / portTICK_RATE_MS, pdTRUE, (void *) 0, & callback_timer);

The problem when I fill it is the following

Error.png

Statistics: Posted by texas_72 — Wed Dec 13, 2017 4:39 pm


]]>