Re: Any experience with GPS/GPRS/GSM application kits ?

2010-02-09 Thread Thomas Petazzoni
Hi Sarath, On Sat, 30 Jan 2010 14:16:12 -0800 Sarath Kamisetty wrote: > Any embedded Linux experience with boards having GPS/GPRS/GSM kits ? I > am interested in Fox Board LX832 (http://foxlx.acmesystems.it/), not > sure if it is available in US. In general, any board to build a > GPS/GSM/GPRS o

Re: interrupt dependencies.

2010-02-09 Thread nidhi mittal hada
i tried a solution .. int A { spin_lock a x=0 func A() x=1; spin_unlock a } int B { done = false; while(done == false) { spin_lock a; if(x==1){ func B() spin_unlock a; done = true; }