[android-porting] RIL problem: cannot reach RIL_register

2009-09-23 Thread simon
n libril D/AT ( 166): AT< +CREG: 1, "247C", "0E4D", 0 D/RILC( 166): *initialize an event in ril_event_set,ril_event.cpp in libril D/AT ( 166): AT< +CREG: 1, "247C", "0E57", 0 D/RILC( 166): *initialize an event in ril_event_set,ril_event.cpp in libril any idea is appreciated!! : ) Thanks $ Regards Simon --~--~-~--~~~---~--~~ unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting -~--~~~~--~~--~--~---

[android-porting] RIL: s_listen_event is not triggered

2009-09-29 Thread simon
my opinion, listenCallback is the func of the event s_listen_event. Is s_listen_event not triggered? Or others? any idea??? Thanks & regards simon --~--~-~--~~~---~--~~ unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting -~--~~~~--~~--~--~---

[android-porting] sms send error

2009-11-02 Thread simon
Hi, all I am porting ril in android. Now, the phone call is fine, but I can't send the sms. In ril/reference-ril/atchannel.c, at_send_command_full_nolock writeline("AT+CMGS=19") to the modem, and pthread_cond_wait (&s_commandcond, &s_commandmutex). I think it is waiting for the unsolicited "< "

[android-porting] pppd start

2009-11-17 Thread simon
Hi, all I want to start pppd in my system. So, I follow the advice in the maillist, but it still doesn't work. It said that Unable to start service ctl [pppd_gprs] uid: 1001. I found my problem was in the list too, but hadn't soloved. What i have done: init.rc setprop ro.radio.use-ppp yes (i

[android-porting] Re: Couldn't set tty to PPP discipline

2009-11-24 Thread simon
hi, Herman what's the MUXD function to make you set to PPP line discipline? I'm working on this. On 11月9日, 下午5时01分, Herman wrote: > I use network manager, it can be set to PPP line discipline now. After I use > MUXD function. I think the reason of previous is AT control and PPP use the > same por

[android-porting] Re: Setup ppp

2011-06-07 Thread simon
I have just completed this part of work recently so here are some advice. 1, get the ppp source code(I am using ppp-2.4.4) and compile "chat" . (android has pppd but doesn't have chat . Maybe there are some other ways to attach the net without chat ) 2, modify ppp-2.4.4/scripts/ppp-on accordin

[android-porting] Re: Porting Android for Dummies?

2011-08-05 Thread simon
你照这个链接做,基本系统能跑起来。其它驱动(比如音视频),就需要你针对具体的硬件调试了。 http://code.google.com/p/rowboat/wiki/Main?tm=6 On 8月4日, 上午6时13分, jordanleegauci wrote: > Hi All, > I am a computer engineering student and I have bought a cheap Chinese > Android tablet for the sole purpose to tinker with the Android OS. > Specifical

[android-porting] copybit format conversion issue, for help

2010-08-24 Thread Simon Chan
any thing I can do to work aound it, and will not hurt performance significantly? eg. by some way I can force ARGB src image data. Suggestion is welcome and much appreciated. Thanks a lot. BR. Simon Chan -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http

[android-porting] Re: copybit format conversion issue, for help

2010-08-25 Thread Simon Chan
Anyone has some comments on the issue? thanks! On 8月24日, 下午2时57分, Simon Chan wrote: > I have encountered a format coversion issue when manage to add copybit > module for some hw 2D core. > > There are a lot of blit operations from COPYBIT_FORMAT_RGBA_ to > COPYBIT_FORMAT_RGB_5

[android-porting] Re: Porting Information

2010-08-25 Thread Simon Chan
http://source.android.com/porting/index.html may be a good start point. On 8月25日, 下午10时41分, Salvatore De Simone wrote: > Hi to all, i'm an italian universitary student and i want to learn > more about the porting of the android source,but i want a suggestion > about the guidelines, books and othe

[android-porting] Re: copybit format conversion issue, for help

2010-08-27 Thread Simon Chan
U only supports BGRA_. if (format == PIXEL_FORMAT_RGBA_) { format = PIXEL_FORMAT_BGRA_; } } .. But after applying similar code in eclair Android for my case, it doesn't work. So I wonder there is something more I need to take care? Any comments? Thanks! BR. Simo

[android-porting] Fwd: copybit format conversion issue, for help

2010-08-30 Thread Simon Chan
Hi, Mathias, Sorry to disturb you, but can you say something about the format issue? Many thanks! BR. Simon -- Forwarded message -- From: Simon Chan Date: 2010/8/27 Subject: Re: copybit format conversion issue, for help To: android-porting@googlegroups.com Hi all, I note

[android-porting] Fwd: copybit format conversion issue, for help

2010-08-30 Thread Simon Chan
Hi, Mathias, Sorry to disturb you, but can you help say something about the format issue? Many thanks! BR. Simon -- Forwarded message -- From: Simon Chan Date: 2010/8/27 Subject: Re: copybit format conversion issue, for help To: android-porting@googlegroups.com Hi all, I

[android-porting] why __func__ variable contains the type signature of the function except its bare name?

2011-08-03 Thread Simon Chan
l_device_t*, overlay_t*) It's certainly not the thing I expect. I don't know whether it's the intended behavior or I have made something wrong? Thanks! Regards, Simon -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

Re: [android-porting] why __func__ variable contains the type signature of the function except its bare name?

2011-08-04 Thread Simon Chan
Hi David, Thanks for your reply. But __FUNCTION__ is the same, both behave like __PRETTY_FUNCTION__. I am a little confused. Anyone has more explaination? Thanks! BTW, I am working on the Gingerbread 2.3.4. Regards, Simon 2011/8/4 David Turner : > Use __FUNCTION__ instead of __func__, &g

[android-porting] Touchscreen offset and calibration

2015-08-04 Thread Simon Bagley
I am porting the touchscreen driver for use on a TI DM3730 based board with Android ICS 4.0.3, which uses a four wire resistive touch panel on top of a WVGA (800x480) LCD. The board uses the TSC2046 touchscreen driver IC which operates in the same way as the ADS7846, hence we are using the ADS7

[android-porting] Re: Touchscreen offset and calibration

2015-09-16 Thread Simon Bagley
Hi Gary, thanks - I now know how to get the idc file included. Regards, Simon On Wednesday, 19 August 2015 16:01:40 UTC+1, Gary Bisson wrote: > > Hi Simon, > > You can look at the grouper device folder as an example: > http://androidxref.com/5.1.1_r6/xref/device/asus/grouper

[android-porting] running android on SMP hardware

2009-01-08 Thread Simon Braunschmidt
hardware. Gruessle Simon --~--~-~--~~~---~--~~ unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting -~--~~~~--~~--~--~---