nimaltd / gsm_v5

gsm module library for STM32 LL
GNU General Public License v3.0
232 stars 86 forks source link

Sim80x #4

Closed AndreaCorpino closed 6 years ago

AndreaCorpino commented 6 years ago

Hi, your guide is very good. I found it well done and interesting. One Question: When you say _7) call Sim80xInit(osPriorityLow) on your app. , where in the "main" i should put it to test your project?

Thanks and nice day.

nimaltd commented 6 years ago

please Open FreeRtos.c and call Sim80x_Init(osPriorityLow) in first of initial task

/ StartDefaultTask function / void StartDefaultTask(void const * argument) { Sim80x_Init(osPriorityLow) ; .. ... ...

AndreaCorpino commented 6 years ago

Thank you!

nimaltd commented 6 years ago

your welcome