**** BEGIN LOGGING AT Thu Dec 18 02:59:56 2008 Dec 18 05:27:19 any fso guys here Dec 18 05:33:33 when a user space program writes to a serial device does it use the driver called s3c2410.c? Dec 18 05:37:55 dunno Dec 18 05:38:16 you could always put in an abort() (or debug or something) and find out Dec 18 05:42:57 jbick: there is no other way for user space to output to a serial port. Dec 18 05:44:26 mwester: i don't mean output...just to use a tty device, like when /dev/ttySAC0 needs to be used Dec 18 05:46:18 The short answer: Yes. ALL userspace operations that can cause an electrical signal to change on the serial port, or can detect an electrical signal change on the port will use the s3c23410 serial driver. Dec 18 05:47:56 The longer answer is that there is a stack of drivers, the higher level drivers handle line-control things, and depending on the capabilities of the hardware, may push more or less functionality down to the lower level driver. Dec 18 05:50:06 what are the higher level drivers? Dec 18 05:50:20 For example - selecting the baud rate on a /dev/tty device is passed down to the lowest-level driver. However, the special handling of the S and Q characters when XON/XOFF flow control is enabled is not usually done byt he lowest level driver. Dec 18 05:50:30 The higher level driver is the tty driver. Dec 18 05:51:17 jbick: Chapter 18: http://lwn.net/Kernel/LDD3/ Dec 18 05:51:58 thank you Dec 18 06:22:39 is anyone familiar with the org.freesmartphone.Device.Audio interface ? Dec 18 06:23:04 morning Dec 18 06:23:29 a bit Dec 18 06:23:36 great Dec 18 06:23:38 what's up with it? Dec 18 06:23:57 I'm try to get a callback when the scenario changes Dec 18 06:24:54 audio_iface.connect_to_signal( "SoundStatus", self.on_sound_status) doesn't seem to do the trick Dec 18 06:25:39 according to the docs, SoundStatus only reports sound changes Dec 18 06:25:48 scenario changes seem to be reported through Scenario Dec 18 06:26:12 which is another signal Dec 18 06:26:54 the only sound signal I found was the SoundStatus are the scenario signals documented ? Dec 18 06:27:56 let me take a look Dec 18 06:29:45 d'oh Dec 18 06:29:47 you're right Dec 18 06:29:58 Scenario signal is missing from the docs Dec 18 06:30:07 let me change that Dec 18 06:30:35 will take a moment... only gprs w/ my FR here Dec 18 06:30:44 great is it Scenario status by any chance ? Dec 18 06:31:21 no, seems just 'Scenario' Dec 18 06:31:26 params are: Dec 18 06:31:36 string: current_scenario Dec 18 06:31:40 string: reason Dec 18 06:35:11 is that through the device audio interface or is it another interface ? Dec 18 06:37:07 same interface Dec 18 06:37:10 same object Dec 18 06:38:51 does this look right Dec 18 06:38:58 audio_obj = self.bus.get_object('org.freesmartphone.odeviced', '/org/freesmartphone/Device/Audio') Dec 18 06:38:58 self.audio_iface = dbus.Interface(audio_obj, 'org.freesmartphone.Device.Audio') Dec 18 06:38:58 self.audio_iface.connect_to_signal( "Scenario", self.on_scenario_status) Dec 18 06:39:21 yes, that looks good Dec 18 06:39:53 freesmartphone.org: 03mickey 07specs * rbc025e7d1fe9 10/ (3 files in 3 dirs): odeviced: add missing description of org.freesmartphone.Device.Audio.Scenario signal. Dec 18 06:40:25 Should the headset plug send a signal when it gets plugged in ? Dec 18 06:41:47 yes, the headset sends an input event Dec 18 06:42:05 which -- in FSO -- is picked up by a rule Dec 18 06:42:07 that changes a mixer control Dec 18 06:42:49 Well using SHR right now perhaps it's framework is lagging a bit Dec 18 06:43:25 And that mixer event should trigger a scenario change ? Dec 18 06:45:02 Nytowl: have not verified it the last some days... but the plug headset in event worked in SHR Dec 18 06:45:37 no Dec 18 06:45:58 we do not change the whole scenario on headset plugin Dec 18 06:46:04 just one mixer control Dec 18 06:46:15 independent of current scenario Dec 18 06:46:23 Ok that explains it Dec 18 06:46:35 to be honest, i don't know whether this works with gsmhandset, it works with stereout at least Dec 18 06:47:21 Ok I just need to catch both signals then, thanks Dec 18 06:47:41 np Dec 18 06:48:35 What's with the ICE874? Dec 18 06:48:41 mrmoku I think it is work as the screen unblanks on insertion but I wasn't getting a scenario change signal Dec 18 06:48:49 mickey|ICE874, can you talk for at least 20 minutes? Dec 18 06:49:00 hard to tell Dec 18 06:49:02 i'm in a train Dec 18 06:49:05 ah. Dec 18 06:49:06 Ok, Dec 18 06:49:12 Well, I'll try to be quikc Dec 18 06:49:24 I'm writing a supervision tree hierarchy for FSO. Dec 18 06:49:42 What do you think about Erlang' supervision tree implementation Dec 18 06:49:50 and would the FSO team actually mind integrating my code? Dec 18 06:50:36 i guess i need to do some research on what a supervision tree is Dec 18 06:50:40 before i can answer that :) Dec 18 06:51:39 Uh, it's a way to monitor, spawn, and manage processes Dec 18 06:51:47 it's sort of an alternate init system. Dec 18 06:51:48 aah Dec 18 06:51:58 wow, that's interesting Dec 18 06:52:03 Instead of managing processes via /etc/init.d, we can use supervision Dec 18 06:52:21 Also, it does stuff like if a process fails, it'll restart everything underneath it Dec 18 06:52:25 etc... Dec 18 06:52:42 Also, if it's a Python interpreter, we can use fork(), to save on memory. Dec 18 06:53:26 ok, I think I know what you're planning. this sounds pretty cool. let me just give you three things to think about Dec 18 06:53:57 Alright. Dec 18 06:54:04 Listenin' Dec 18 06:54:26 ticket inspector... wiat Dec 18 06:54:29 haha Dec 18 06:55:30 a) there's a driving force that wants to integrate upstart into OE as the new default initsystem. FSO should support that as well. Dec 18 06:55:50 b) keep in mind that we might want to migrate to Vala, so if possible, don#t use too many python-magic Dec 18 06:56:19 c) people will think we're crazy and want to do everything on our own Dec 18 06:56:27 but c) is something i have to live with, not you :)) Dec 18 06:56:31 haha Dec 18 06:56:37 Man, why vala? Dec 18 06:56:52 Anyways Dec 18 06:57:07 Second thing Dec 18 06:57:13 Did you think anything about signal filtering? Dec 18 06:57:39 yes Dec 18 06:57:46 wrt. gsmd my take on it is Dec 18 06:57:56 i want ophoned to me more than it is right now Dec 18 06:58:05 it was supposed to encapsulate gsm and voip Dec 18 06:58:09 but it might as well contain firewalling Dec 18 06:58:11 redirection Dec 18 06:58:14 and additional stuff Dec 18 06:58:19 i don't want to change ogsmd too much Dec 18 06:58:33 it should be there for people who only want to use gsm low level interface Dec 18 06:58:37 "low level dbus" Dec 18 06:59:11 Should I start a thread Dec 18 06:59:16 on smartphone-standards Dec 18 06:59:24 yes, please, that'd be a good start Dec 18 06:59:32 Alright. Dec 18 06:59:39 Do you guys do planning conference calls? Dec 18 06:59:59 yeah, we do regular TCs Dec 18 07:00:17 i'll talk with the guys today Dec 18 07:00:21 why don't you publicize the conferences? Dec 18 07:00:24 perhaps you can join us on the next one Dec 18 07:00:48 that'd be excellent. Dec 18 07:01:00 PM me the conference info? Dec 18 07:01:03 next time Dec 18 07:01:15 doesn't help I'm on PST8PDT Dec 18 07:04:38 mickey|ICE874, Also, FSO should have its own chan Dec 18 07:05:11 i will Dec 18 07:05:13 what time is it for you atm? Dec 18 07:05:25 eventually yeah, i'm not sure we have reached the "critical mass" to justify that. Dec 18 07:05:27 yet Dec 18 07:05:28 Wed Dec 17 23:05:28 PST 2008 Dec 18 07:05:39 wow Dec 18 07:05:41 -9 from here Dec 18 07:05:53 darn, our TC will be in the middle of the night for you then Dec 18 07:05:54 oh, you're GMT+1? Dec 18 07:05:58 yep Dec 18 07:06:01 uhm, what time do you do it? Dec 18 07:06:02 well Dec 18 07:06:04 we can make an exception Dec 18 07:06:16 we usually phone thursdays 12:00 GMT+1 Dec 18 07:06:27 heh Dec 18 07:06:32 [if i don't visit the guys... like today] Dec 18 07:07:27 but we can change that to something more accessible if we know in advance Dec 18 07:07:49 I'm really available whenever. Dec 18 07:07:53 Well, no whenever. Dec 18 07:08:09 More like 19:00-01:00 PST8PDT Dec 18 07:08:30 hehe, right Dec 18 07:36:32 mickey|ICE874, quick thing, why are we using upstart? Dec 18 07:50:27 hi Dec 18 07:51:05 hi Dec 18 07:55:34 freesmartphone.org: 03mickey 07framework * r99209eb98249 10/framework/config.py: do not error out, if /etc directory can't be found Dec 18 07:55:35 freesmartphone.org: 03mickey 07framework * r7192c7d23bfe 10/framework/subsystems/ousaged/ (helpers.py lowlevel.py): ousaged: gathering resume reason now works for Openmoko devices Dec 18 08:45:00 freesmartphone.org: 03mickey 07framework * rbcc477049b4a 10/framework/subsystems/ogsmd/modems/ti_calypso/channel.py: ogsmd: [TI CALYPSO] remove %CGREG unsolicited code, we're not using it Dec 18 08:45:00 freesmartphone.org: 03mickey 07framework * r5218a43ed072 10/framework/subsystems/ogsmd/modems/abstract/unsolicited.py: ogsmd: [ABSTRACT] start handling +CGEV (neccessary to detect gprs connection teardown) Dec 18 08:45:00 freesmartphone.org: 03mickey 07framework * rf6e9c6ce88b8 10/ (docs/TODO framework/subsystems/ogsmd/modems/abstract/pdp.py): ogsmd: pdp: do not use ATZ in connect script, do not query for CPIN Dec 18 08:49:10 Hey Dec 18 08:53:17 Ainulindale: morning Dec 18 08:53:20 Ainulindale, hi there Dec 18 08:56:42 Good night Dec 18 08:59:31 good night Sargun Dec 18 09:00:14 :) Dec 18 09:21:38 hi i'm playing with the fso api, i'd like to know if there's a way to understand which gsm prefix should be used (i'm in italy, for example here is +39, if i dial 031123123123, +39 should be appended) Dec 18 09:53:19 hi all Dec 18 09:53:29 Ainulindale: ping Dec 18 09:57:15 DocScrutinizer: could you please answer a questing wrt capacitor type for the gsm buzz fix? Joel Newkirk asks whether he can use tantalum instead of ceramic ones as tantalum are much cheaper and he's going to perform a rework on a reasonable quantity of units (IIRC). Dec 18 10:00:28 PaulFertser: we don't have any tantalum caps here, and I would guess they are just too big. I was about to suggest a free caeramic cap for everyone asking for it. actually I'll bring a handfull of those to Germany on Sunday Dec 18 10:00:53 PaulFertser: technically there is nothing wrong with tantalum Dec 18 10:01:45 though I'd guess they are somewhat harder to solder, as they're basically electrolytic caps and so won't stand much heat Dec 18 10:01:53 DocScrutinizer: if you don't mind, i'm going to post your answer on the community mailing list in the corresponding thread. Dec 18 10:02:10 go ahead, you're welcome Dec 18 10:02:28 just quote this dialog is fine Dec 18 10:04:25 also, to whom it may concern, I plan to join 25C3 congress in Berlin, and maybe rework a couple of devices there for free, or at very least give away caps Dec 18 10:06:09 ...as well as other "chrismas-gifts", as we have a pile of electronics and mechanics junk in front of the office, which might make a nice spare parts source for some GTA01 owners Dec 18 10:07:09 maybe someone likes to upgrade his GTA01 to 2440 CPU ;-) Dec 18 10:09:21 Thanks a lot for the answer! It great you're hanging on IRC, btw :) Dec 18 10:18:23 DocScrutinizer: I could use a couple of PM chips for my two dead GTA01's (the ones that got 12V applied to USB port) Dec 18 10:18:48 although I don't have BGA desolder facilities, so probably can't use them anyway. Dec 18 10:27:46 alphaone: Please take a look at _setType and _getType in class SMS at sms.py. "pdu_mti" can't be used as a key in getType. Have you already fixed this (i proposed a patch yesterday to you)? Dec 18 10:28:47 freesmartphone.org: 03mickey 07framework * r083dbfe01549 10/framework/subsystems/ogsmd/modems/abstract/ (mediator.py pdp.py): ogsmd: pdp: make singleton handling more consistent with CallHandler Dec 18 10:31:42 rwhitby: Did you ever ask Andy about that? ;-) Dec 18 10:32:02 DocScrutinizer: nope Dec 18 10:32:38 rwhitby: he states he never seen any PMU failing from overvoltage out in the wild. Obviously he didn't hear your story Dec 18 10:33:05 you really should tell him ;-) Dec 18 10:33:34 I'll see if I can find some PCF50606 for you :) Dec 18 10:33:55 DocScrutinizer: oh, yes, he does know about mine. Dec 18 10:34:08 (a lot of chips with very tiny characters out there) Dec 18 10:34:13 his statement was regarding overvoltage from a nominal 5V source, not a 12V one :-) Dec 18 10:34:44 yoyo Dec 18 10:35:02 nominal 12v errrr 5v source :-D Dec 18 10:35:52 Tully fried his FR with a "nominal usb car adapter" when starting his scooter Dec 18 10:36:42 those nasty PCF506xx are ABS MAX 5V5. not much safety headroom Dec 18 10:36:47 PaulFertser: Yeah, will take a look at sms.py today, don Dec 18 10:36:50 't worry Dec 18 10:37:23 DocScrutinizer: that's why i always charge my external usb battery from untrusted sources and then use it to charge the real phone :) Dec 18 10:37:35 anyway, I'll take my microscope and try to find some for you Dec 18 10:38:11 (a really huge heap out there ;) Dec 18 10:38:34 for sure should contain some 50606 Dec 18 10:39:51 DocScrutinizer: does FIC/OM ship spare parts regularly btw? Dec 18 10:40:27 lindi-: nope, dn't think so Dec 18 10:41:13 * DocScrutinizer grins at some 1973 cases Dec 18 10:41:17 DocScrutinizer: so hypothetically if i wanted a new case (only the back part) who would i contact? Dec 18 10:41:26 santa Dec 18 10:41:44 SantaScrutinizer Dec 18 10:41:53 maybe me ;-) Dec 18 10:41:55 mickey|fso: i've just opened #301 and it seems it also shows "AtCommandChannel no longer operational" behaviour. It was produced using MS4 btw. I'm not sure whether it really matters. For now i'll stick with HEAD, do you think it'll be more useful. And, btw, what's the policy on reporting bugs on trac? Should the bugs present in MS4 but not present in HEAD be reported? And what about all the SHR folks still using stabilizatio Dec 18 10:42:04 just holding a few in my hands Dec 18 10:43:00 freesmartphone.org: 03mickey 07gsm0710muxd * rbbf01a25713a 10/src/gsm0710muxd.c: improve usage output and show version. patch courtesy Luca Capello Dec 18 10:43:06 PaulFertser: I finished my paper last night and mickey|fso and stefan are here to force me to actually do stuff :-) Dec 18 10:43:08 even a gta01 battery, woohooo Dec 18 10:43:54 alphaone: Congratulations! BTW, do you feel free and relaxed now, after finishing the paper? I usually feel just emptyness. :-/ Dec 18 10:45:20 DocScrutinizer: heh Dec 18 10:45:49 DocScrutinizer: i realize shipping costs are going to be large but it might still be useful if something breaks Dec 18 10:47:31 PaulFertser: Not really relaxed. I've been ill for some day now as well. Dec 18 10:48:25 alphaone: oh, just listen to some good music and you'll get well soon :) Dec 18 10:48:39 PaulFertser: Already in progress :-) Dec 18 10:53:51 guillaum1: pong Dec 18 10:55:42 I saw yesterday some commit regarding setting clock to time from GPS, is that going to be available on SHR? When? Dec 18 10:58:04 mickey|fso hi Dec 18 10:58:14 mickey|fso you have a minute? Dec 18 10:59:09 Ainulindale: hi Dec 18 10:59:09 I'm thinking about writing a Java binding of the FSO APIs on top of libframeworkd-glib instead of using dbus-java (it requires a JavaSE VM) Dec 18 10:59:09 I see that some part of the APIs are not implemented yet (org.freesmartphone.Phone, org.freesmartphone.GSM.SMS IncomingMessage, ...) Dec 18 10:59:09 What is the current status of libframeworkd-glib ? Dec 18 11:14:24 mickey|fso, lindi- : actually tried using power_on sysfs node for wlan. After "echo 0 > power_on" wifi no longer operational, with "mmc0:0001: error -110 reading SDIO_CCCR_INTx" error in dmesg. "echo 1 > power_on" doesn't change that, still the same error. But if i do "echo s3c2440-sdi > unbind; echo s3c2440-sdi > bind" in /sys/devices/platform/s3c2440-sdi/driver i can use wlan again. I think Andy should clarify this. Dec 18 11:14:50 PaulFertser: aha Dec 18 11:15:14 PaulFertser: i'll write that to my 'device {start|stop} {device}' alias Dec 18 11:17:38 lindi-: Good we have this interface of binding/unbinding, it's almost equivalent to reloading kernel module, but it works with built-in drivers as well. You can simulate reinsertion of PCI devices as well ;). Btw, would you mind opening a ticket at OM kernel tracker? Dec 18 11:18:27 PaulFertser: i can't touch the phone now, testing #1158 and then leaving to bus Dec 18 11:39:00 raster: ping Dec 18 11:40:21 alphaone: pong! Dec 18 11:41:41 raster: Can you tell me why the recent illume launcher doesn't show any Application icons anymore? Dec 18 11:42:32 works-for-me(tm) Dec 18 11:42:40 so... no.. i can't Dec 18 11:42:41 theme? Dec 18 11:42:44 config? Dec 18 11:42:52 missingpackages? (mime types) Dec 18 11:43:16 but the illume-images i built 2 or so weeks ago show icons Dec 18 11:43:20 and illume on my desktop does Dec 18 11:44:35 hmm, okay Dec 18 11:44:46 Need to check further then Dec 18 11:45:02 But good to know it's working for you Dec 18 11:46:42 And do you have any objections to moving the illume gadgets/modules to standalone modules? Dec 18 11:47:28 no Dec 18 11:47:29 It's starting to get important for me since I would like to use the GSM gadget for the integrated WWAN card in my laptop Dec 18 11:47:32 great Dec 18 11:47:35 they were in illume just for expediency Dec 18 11:47:43 i am splitting things out of illume bit by bit Dec 18 11:47:52 either into shared infra in e's core Dec 18 11:47:56 or config Dec 18 11:48:04 or some things will become other modules Dec 18 11:48:07 So I'll just send a patch when I get around to doing it. Dec 18 11:48:18 If you don't beat me to it Dec 18 11:48:24 likely not Dec 18 11:48:31 right now focusing on elementary Dec 18 11:48:37 and core efl and desktop e17 Dec 18 11:48:37 Ah, cool Dec 18 11:48:54 I still need to take a look at that. Dec 18 11:57:33 dcordes: no time atm., we have an important meeting Dec 18 11:57:41 dcordes: just tell me your latest findings wrt. atv1 Dec 18 11:57:55 (vs. atv0) Dec 18 12:04:37 guillaum1: well, current status, we implement them as we need them Dec 18 12:04:46 Feel free to send patches Dec 18 12:06:23 so guys, it seems I have spare time until february Dec 18 12:09:01 I guess I'll get latest shr and check the tickets Dec 18 12:47:05 Ainulindale: ok, thanks Dec 18 13:24:20 hello i have a problem with the gps on shr Dec 18 13:24:26 how can i switch it on? Dec 18 13:24:57 the fso-gpsd is running, but tangogps doesn't get a fix. I think i have to switch GPS on first Dec 18 13:35:16 white_gecko, I know in previous toyings with SHR, I didn't have to turn on GPS, I just had to wait a bit longer Dec 18 13:35:22 I never did figure out why though Dec 18 13:36:15 hm wenn i start agps gui i get realy fast a fix, but with tangogps only if agps gui is running Dec 18 13:36:29 but only sometimes Dec 18 13:37:45 rwhitby: sorry not yet found any 50606. That's ~5m^3 of cartons with all types of reels and tablets inside, plus lots of other rubbish (usb-vables etc pp) Dec 18 13:39:42 took a small carton with an unsorted collection of ~30.000 components with me to the appartment, but I'm quite sure I didn't pick any PCF506xx yet Dec 18 13:40:14 rwhitby: will give it another shot tomorrow Dec 18 13:41:32 tahnykou first Dec 18 13:41:34 btw: 3k of 470uF, alas a little bulky for big-C rework Dec 18 13:41:35 i have to go Dec 18 14:35:04 Hey Dec 18 14:42:32 hi quickdev Dec 18 14:42:48 hey mickey|fso Dec 18 14:43:03 quickdev: how's life? Dec 18 14:45:01 mrmoku, a bit stressful, but christmas time is coming :) it's fine anyway..and for you? Dec 18 14:46:40 quickdev: fine, though christmas does not make a lot of a difference (at least for non-students) ;) Dec 18 14:47:08 quickdev: how is one supposed to update the shr on the buildhost? I packaged pingus, but it's not there... Dec 18 14:47:28 mrmoku, you have buildhost access, right? Dec 18 14:47:32 yep Dec 18 14:48:12 By the way Dec 18 14:48:16 Before doing anything stupid Dec 18 14:48:20 Please do a git diff Dec 18 14:48:20 hey Ainulindale Dec 18 14:48:34 SOmetimes I modify stuff on the buildhost and forget to commit them afterwards Dec 18 14:48:43 I still didn't commit IMAGE_LINGUAS="en-us" Dec 18 14:48:44 hehe :) Dec 18 14:48:51 (hey quickdev) Dec 18 14:48:56 mrmoku: but anyway Dec 18 14:48:58 ssh etc Dec 18 14:49:00 cd shr Dec 18 14:49:02 git pull Dec 18 14:49:08 cd .. Dec 18 14:49:10 cd shr-testing Dec 18 14:49:12 bitbake myass Dec 18 14:49:14 bitbake package-index Dec 18 14:50:10 Ainulindale, have you looked at my ui yet? :) Dec 18 14:50:13 * mrmoku is so used to his aliases that he forgot -a to ls Dec 18 14:50:25 just thought shr is no git :-) Dec 18 14:50:33 quickdev: couldn't the last days Dec 18 14:50:38 quickdev: will install it tonight Dec 18 14:52:19 Ainulindale: IMAGE_LINGUAS and do_testlab... did not get touched by git pull Dec 18 14:53:03 quickdev: I'm using it with lots of joy :-) Dec 18 14:53:16 mrmoku, at least one user :) Dec 18 14:53:26 mrmoku, any bugs experienced? Dec 18 14:53:40 hehe, so you're not using it yourself ? ;) Dec 18 14:54:07 mrmoku, of course I'm using it Dec 18 14:54:17 would be a shame if not :) Dec 18 14:54:21 Meh Dec 18 14:54:22 so it's TWO users ;) Dec 18 14:54:28 yeah, hehe Dec 18 14:54:36 mrmoku, any bugs experienced? Dec 18 14:54:42 c'est marrant les 3/4 du temps quand je te parle mes messages te parviennent pas Dec 18 14:54:50 (woops) Dec 18 14:54:55 (wrong c/c) Dec 18 14:54:56 nothing grave I would remember now Dec 18 14:55:21 but I'm not phoning that much :-) Dec 18 14:56:57 quickdev: one thing I'm missing is handling multipart sms Dec 18 14:57:13 always thought frameworkd wanted to do that, not sure though Dec 18 14:57:25 mrmoku, frameworkd will do it...one day ;) Dec 18 14:57:52 alphaone, any information about that? Dec 18 14:57:59 ok, lets wait for that day then :-) Dec 18 14:59:31 quickdev: should be exposed via the optional properties already Dec 18 14:59:49 csm_id, csm_seq, csm_num Dec 18 15:01:02 alphaone, yes, I know, but there's no method to get a complete multipart sms or send one, right? Dec 18 15:01:46 right, opimd should assemble the SMS Dec 18 15:01:54 at least that's the plan at the moment Dec 18 15:02:05 at least that's mine :-) Dec 18 15:10:18 alphaone, could you have a quick look please? :) alphaone, could you please fix a little timeout for me? Dec 18 15:10:26 http://rafb.net/p/OUlwgu46.html Dec 18 15:10:41 argh....second sentence was in ctrl->c mode ;) Dec 18 15:13:00 alphaone, do you need the frameworkd.log ? Dec 18 15:40:07 hm..it should not take that long for a simple phonebook info Dec 18 15:40:31 quickdev: Yeah, would be good Dec 18 15:40:37 (frameworkd.log) Dec 18 15:42:03 Ainulindale: ping Dec 18 15:42:06 pong Dec 18 15:42:27 I'm busy, be quick Dec 18 15:45:34 Quicly: I extended the dbus vapi to support the filter part of dbus (and not only the dbus glib binding) Dec 18 15:45:52 First step is ok to implement an efficient rule processor Dec 18 15:45:56 :) Dec 18 15:46:13 Finished, you can go back to your occupations :) Dec 18 15:49:24 (oh BTW vapi = vala api c binding description...) Dec 18 16:05:04 alphaone, the log contains sensitive stuff. daniel@openmoko.org, right? Dec 18 16:09:04 alphaone, not only GetPHonebookINfo() is failing. Everything fails after that timeout Dec 18 16:09:39 (mail) yeah Dec 18 16:14:17 alphaone, it's out Dec 18 16:18:17 TAsn: hey, nice icon(s) :-) Dec 18 16:18:25 hehe thank sicu Dec 18 16:18:32 sicu o_O Dec 18 16:19:06 one thing is giving me a hard time though ;) Dec 18 16:19:06 mrmoku, what version are you using? Dec 18 16:19:16 mrmoku, tell me and it will be fixed ;] Dec 18 16:19:27 TAsn: 0.15.8-r0 Dec 18 16:19:35 cool ;] Dec 18 16:19:41 have you tried it rotated? Dec 18 16:19:53 taping the small triangle for combined calles to the same number is quite hard ;) Dec 18 16:19:56 changed the icon positioning when you rotate ;] Dec 18 16:20:23 mrmoku, that's because you don't read the wiki! Dec 18 16:20:43 TAsn: hehe, nice (rotation) Dec 18 16:20:57 I can't (don't want to) force a gtkrc upon you Dec 18 16:20:59 you could add the duration if in landscape (automatically) Dec 18 16:21:11 mrmoku, actually, that's a wicked idea! Dec 18 16:21:55 mrmoku, anyhow, the small triangles are a matter of bad gtkrc (or in SHR's case, none at all) Dec 18 16:22:11 just read the wiki page for more info about that. Dec 18 16:22:17 ok Dec 18 16:22:22 I added a sample gtkrc. Dec 18 16:22:28 TAsn: one suggestion: I know it would mean a lot of work but we need either a gtk theme which looks like elementary or we should use elementary for the phonelog app Dec 18 16:22:49 SHR gtkrc could need general enhancements Dec 18 16:23:30 bumbl, I think whether we end up re writing phonelog to work with elementary instead of gtk, we need a new gtk theme that looks like elementary ;] Dec 18 16:23:38 alphaone, any hint to further investigate that issue? Dec 18 16:23:52 so actually I would prefer working on a theme and not on a port ;] Dec 18 16:24:05 though, I don't have the time/skills to work on neither ;] Dec 18 16:24:21 enhancing (or doing) a SHR gtkrc would help all gtk apps... Dec 18 16:24:36 exactly Dec 18 16:24:36 hmm I would prefer using elementary + ptitjes gui suggestions (shr mailinglist) Dec 18 16:25:05 bumbl, if it looks the same using/not using elementary won't matter you that much. Dec 18 16:25:28 you are right Dec 18 16:25:29 mrmoku, we should find a gtkrc expert! Dec 18 16:25:35 ;] Dec 18 16:25:56 ptitjes: I still don't understand why you ask me what you should do, and in the end, don't even bother to listen to me Dec 18 16:25:56 hehe, I was looking into it some week ago... and noticed that I'm not the one ;) Dec 18 16:26:08 You might as well skip the "asking and bothering Ainulindale" part Dec 18 16:26:15 It'd save my time Dec 18 16:26:16 hehe Dec 18 16:26:17 mrmoku, hehe ;] Dec 18 16:26:56 bumbl, btw, I don't think this is our top most important priority. Dec 18 16:27:53 Ainulindale, would you mind adding a gtkrc-theme repo somewhere in the shr git so ppl will be able to work on that as well? Dec 18 16:28:01 mwester, I remember that you once talked with mickey|fso about a bug that cuts a byte of calypso's output, is that right/fixed? Dec 18 16:28:09 as a starter I will ad my pyphonelog fix. Dec 18 16:28:29 TAsn: no it ins't but when looking at my app omoney I found out that it is a lot easier and less time consuming when one does all the things right the first time Dec 18 16:28:59 bumbl, that has nothing to do with doing right or wrong Dec 18 16:29:13 it's just on a different level Dec 18 16:29:39 gtkrc isn't related to the code. Dec 18 16:29:50 TAsn: you could just add a new subdir? Dec 18 16:29:52 quickdev: there is a known buffer overflow problem with the calypso; it does not respond very quickly to flow control. Symptoms would be dropped characters. (This has only ever been observed on the GTA01). If you check dmesg, the buffer overflow will have been reported ("rxer" or similar message, IIRC) Dec 18 16:30:09 bumbl, TAsn Dec 18 16:30:13 mrmoku, I could, though I don't want it to be a sub section of pyphonelog Dec 18 16:30:14 Dolf made these suggestions a while ago Dec 18 16:30:20 Ainulindale, and? Dec 18 16:30:32 And he wishes to implement his mockups Dec 18 16:30:34 mrmoku, I want it to be a general solution. Dec 18 16:30:43 Ainulindale, are we talking about gtkrc? Dec 18 16:30:45 ptitjes just didn't bother to read the history about that, I think Dec 18 16:30:49 No, about GUI modifications Dec 18 16:30:53 oh. Dec 18 16:31:21 what about opening a gtkrc git repo / subsection? Dec 18 16:31:26 And seriously, I'm tired to see thousands of people focusing on issues we're already aware of, as if they were the key to the understanding of the universe Dec 18 16:31:42 TAsn: not inside pyphonelog... it would fit into shr-theme me thinks Dec 18 16:31:47 Open a ticket, and wait for it, no need to argue about this or that, we're well aware of such a thing Dec 18 16:31:54 And for gtkrc, what for? Dec 18 16:31:56 mrmoku, exactly. Dec 18 16:32:08 Ainulindale, don't you think a good gtkrc is needed? Dec 18 16:32:23 Ainulindale: one urgent thing is the triangle in pyphonelog Dec 18 16:32:28 I have no idea what its use is, so, no, I don't think so :-) Dec 18 16:32:39 Ainulindale, it's the theme settings for gtk apps Dec 18 16:32:43 Don't you remember UI are evil to me? Dec 18 16:32:51 mrmoku: what? Dec 18 16:32:57 now, gtk apps are set to work with the default "desktop" theme Dec 18 16:32:59 mwester, http://rafb.net/p/wCNTAi89.html - it reads 4095 bytes...isn't it suspicious? Dec 18 16:33:07 in pyphonelog you have a triangle to expand combined calls to one number Dec 18 16:33:14 TAsn: Well then it should be set in shr-theme IMHO, or shr-gtk-theme, whatever Dec 18 16:33:25 without gtkrc that is so small... even difficult with the stylus ;) Dec 18 16:33:28 Ainulindale, would you mind giving me access to that repo? ;] Dec 18 16:33:29 I won't build a repo just for that though I could create a shr-themes repo Dec 18 16:33:30 Ainulindale: well sorry Dec 18 16:33:38 bumbl: sorry? about what? Dec 18 16:33:53 mwester, anyway..I have a gta02. It's probably a completely different issue ;) Dec 18 16:33:59 about not opening a ticket, etc Dec 18 16:34:07 bumbl: errr Dec 18 16:34:12 Well you don't have to be sorry Dec 18 16:34:17 It was mainly directed to ptitjes Dec 18 16:34:20 hehe. Dec 18 16:34:27 I told him these things 42 times already Dec 18 16:34:32 It's as if he ignores me Dec 18 16:34:41 Well Ainulindale I'll be glad to have access to the shr-theme repo. Dec 18 16:34:45 I'm off to take a shower. Dec 18 16:34:46 cya. Dec 18 16:35:18 It's useless, to me, to keep buzzing around saying tons of things. Facts matter, buzzing around talking about tons of stuff, without considering the whole situation, isn't useful for anyone. Dec 18 16:35:53 So, IMHO, one should focus on a specific situation, investigate it, ask questions, without throwing around ideas, especially when they were already thrown Dec 18 16:36:12 quickdev: perhaps not; if you have any serial port issues they are worth reporting. I'm not comfortable with just assuming that the bigger FIFO on the gta02 magically fixed the problem. :( Dec 18 16:36:41 TAsn: I'll create it later tonight, I don't have access now Dec 18 16:37:12 mwester, I have only problems with big messages from the calypso (120 contacts). That seems logical then? Dec 18 16:37:41 Yes, that might indeed be an overflow we should look into. Dec 18 16:38:23 mwester, is there a way to investigate it further / to verify that it's an overflow? Dec 18 16:38:49 Well, anyway, I'm leaving Dec 18 16:38:50 See you later Dec 18 16:38:58 Frankly, I have been wondering how the calypso responds to flow-control -- i.e. does it test for flow-control at each character, or does it only test at the beginning of a message? The latter seems to be wrong, but fits the pattern for the gta01 case, anyway. Dec 18 16:39:20 quickdev: if it's a FIFO overrun there will be an rxerr in the dmesg log. Dec 18 16:39:38 mwester, there will be an rxerr no matter what kernel I'm using? Dec 18 16:39:43 there's none Dec 18 16:39:57 quickdev: http://scap.linuxtogo.org/files/218de8adbe4a003fe24c896e4996694d.png the [] shouldn't be here Dec 18 16:40:03 quickdev: Can't find anything wrong with that log... Dec 18 16:40:12 quickdev: if it's an overflow elsewhere in the serial stack, I don't know where it would be reported. The rxerr reporting has been enabled for a long while now, so it should be in all current kernels. Dec 18 16:40:32 quickdev: There's one thing you *can* do to diagnose further. Dec 18 16:40:55 bumbl, looks strange, further investigation needed.. Dec 18 16:41:05 mwester, that is? Dec 18 16:41:11 quickdev: if you use a kernel from my site, it has "nspy" built in -- that collects characters and events from the serial interrupt handlers directly. Dec 18 16:41:13 do you need the full text of the message? Dec 18 16:41:32 It will tell you exactly what the interrupt handler got from the UART hardware itself. Dec 18 16:41:36 anyway it is displayed correctly when I press show Dec 18 16:41:51 mwester, great Dec 18 16:42:04 http://moko.mwester.net/nspy.html Dec 18 16:42:08 mrmoku, some minutes to have a look at bumbl problem? Dec 18 16:42:37 and the kernels (somewhat dated, but working) on the same site, at: http://moko.mwester.net/dl.html#kernel Dec 18 16:42:39 no priority Dec 18 16:43:03 quickdev: uhh, my fault? Dec 18 16:43:15 (source for the changes on the git repo listed on the page, and if you need me to build a more current kernel, just say so -- but it'll take a day or so for me to find time.) Dec 18 16:43:27 mrmoku, no, probably not. but would be nice if you have a look anyway :) Dec 18 16:43:38 hehe Dec 18 16:44:25 bumbl: what libframeworkd-phonegui-efl version are you using? Dec 18 16:44:47 mrmoku: testing Dec 18 16:44:58 what char are those rectangles supposed to be? newlines? Dec 18 16:44:59 Ainulindale, sure thing, thanks. Dec 18 16:45:00 mwester, booting.. Dec 18 16:45:11 You're fast! Dec 18 16:45:25 mwester: that's why he's called quickdev ;) Dec 18 16:45:41 hehe! Dec 18 16:46:53 quickdev: heh, looks like the newline problem that I fixed... Dec 18 16:47:12 bumbl: any chance you can try out libframeworkd-phonegui-efl from unstable? Dec 18 16:47:18 mrmoku, have you fixed it for preview, too? Dec 18 16:47:38 quickdev: what is preview? I fixed the list and the message view... Dec 18 16:47:52 mrmoku: seems to be a \n Dec 18 16:48:22 quickdev: I guess you mean the list with preview... that one is fixed Dec 18 16:48:54 yeah, list with preview Dec 18 16:49:14 TAsn: where in what wiki do I find the gtkrc stuff? Dec 18 16:49:37 wiki.openmoko.org/wiki/PyPhonelog Dec 18 16:49:46 that's actually a must... ;] Dec 18 16:50:12 I hope the size is sufficient for you, it's just right for me, though you can easily make it bigger/smaller. Dec 18 16:50:18 man, me is just blind... scanned the whole page and did not find it :( Dec 18 16:50:53 are you serious? Dec 18 16:50:59 it's marked by a big box! Dec 18 16:51:05 the only box in the page iirc. Dec 18 16:51:08 maybe that is the problem ;) Dec 18 16:51:52 it's in the installation section... Dec 18 16:52:12 mrmoku: yeah, big enough for me :-) thanks Dec 18 16:53:25 alphaone, http://rafb.net/p/uT462Q59.html Dec 18 16:54:18 mrmoku, ;] Dec 18 16:55:16 alphaone, but that happens after the timeout Dec 18 16:55:23 it's a bug anyway? Dec 18 16:55:42 quickdev: Ah, could it be that it takes too long for the command to complete? Dec 18 16:55:52 Because your phonebook is so huge? Dec 18 16:55:56 120 contacts Dec 18 16:56:16 might be - is there "process time" limit ? Dec 18 16:56:26 "time per command" Dec 18 16:57:25 TAsn: how to get python-mokoui2 in SHR? finger scrolling is a must ;) Dec 18 16:57:47 mrmoku, if I'll say read the wiki you'll be surprised? ;] Dec 18 16:57:48 quickdev: Seems like this is the problem with large packets in the muxer Dec 18 16:58:07 If you want the gui to work with finger scrolling, download: python-mokoui2 Dec 18 16:58:15 but where to get it ;) Dec 18 16:58:35 ahh, you say manually downloading the link and installing then.... Dec 18 16:58:47 hmm not very end-phoner-friendly :p Dec 18 16:58:54 moo Dec 18 16:59:08 quickdev: Try to get the latest version of the muxer Dec 18 17:02:01 alphaone, I'm using http://git.freesmartphone.org/?p=gsm0710muxd.git;a=commit;h=d8b36b923ef69a64cb5a2d3bca799d772b9c73c3 - it's the second latest commit. That should be current enough, right? Dec 18 17:02:16 gsm0710muxd - 0.9.2+gitr12+d8b36b923ef69a64cb5a2d3bca799d772b9c73c3-r0.1 - GSM 07.10 muxer userspace daemon Dec 18 17:03:53 hmm Dec 18 17:04:04 Dave: muh Dec 18 17:05:04 neigh? Dec 18 17:07:48 alphaone, immediately after RetrievePhonebook() I'm calling GetPhonebookInfo().. Dec 18 17:08:44 yop! Dec 18 17:09:32 Who do I bribe to get python-pyalsaaudio into the feeds for FSO/SHR ? Dec 18 17:10:03 Ainulindale ? Dec 18 17:10:05 Oh, so this is an important question Dec 18 17:10:26 How well does Contact importing/exporting work, and what are the available settings regarding their storage? Dec 18 17:11:09 ptitjes: pong Dec 18 17:11:26 But not a long pong Dec 18 17:11:35 Going to drink a beer downstairs reading the Canard Enchainé Dec 18 17:11:57 alphaone, is that traceback a frameworkd fault? Dec 18 17:12:03 Ainulindale: I think that ptitjes was pinging you for me Dec 18 17:12:28 hoot hoot Dec 18 17:12:45 I wish it was beer time Dec 18 17:12:57 hah! Dec 18 17:14:05 quickdev: Yeah, looks like it got confused somehow Dec 18 17:14:28 Nytowl: Well what was your question then? Dec 18 17:14:56 Who do I bribe to get python-pyalsaaudio into the feeds for FSO/SHR ? Dec 18 17:15:03 Well, no one, it's already there. Dec 18 17:15:04 Ainulindale: don't be so bad! I listened to you! Dec 18 17:15:27 I just want to have an overview of all the possibilities before doing anything Dec 18 17:15:27 ptitjes: I'm not bad Dec 18 17:15:33 Err Dec 18 17:15:36 What are you talking about? Dec 18 17:15:47 I guess I should have double checked it wasn't last time I looked Dec 18 17:16:07 "buzzing..." stuff Dec 18 17:16:08 Nytowl: well you could have Dec 18 17:16:24 But my little imp tells me I'm weak at treachery Dec 18 17:16:29 You want a oeventsd, I'll do it Dec 18 17:16:30 I just built it in fact Dec 18 17:16:42 ptitjes: huh? Dec 18 17:16:48 In Vala Dec 18 17:16:51 What are you talking about, again? Dec 18 17:17:57 One of the main usability problem/bug IMHO of the SHR is lake of response of ringing otne Dec 18 17:18:12 What's the link with vala there? Dec 18 17:18:21 And what's the link with what I want? Dec 18 17:18:37 You told me you want to have better oeventsd Dec 18 17:18:43 When? Dec 18 17:19:03 before... :] Dec 18 17:19:13 Well, I think you misunderstood me Dec 18 17:19:15 You were surely meaning "without bugs" Dec 18 17:19:27 Or I was drunk when I told you that Dec 18 17:19:32 Because there's already someone working on that Dec 18 17:19:35 but I understoud it in an other way Dec 18 17:19:42 yeah maybe me too so :) Dec 18 17:19:42 And again Dec 18 17:19:48 That has nothing to do with SHR Dec 18 17:20:07 Well... Dec 18 17:20:13 You asked what you could do for SHR Dec 18 17:20:17 And that's not SHR Dec 18 17:20:20 That's my point Dec 18 17:20:24 It's underneath so it has to do with Dec 18 17:20:39 That's not related to SHR work Dec 18 17:20:48 The fact is I dislike doing dbus in C Dec 18 17:20:48 And not related to what I asked for wrt SHR Dec 18 17:21:05 And as I told you Dec 18 17:21:18 There's alread someone working on vala migration for some stuff, oeventsd included Dec 18 17:21:28 +y Dec 18 17:21:41 mickey|fso: correct me if I'm wrong Dec 18 17:21:56 can't recall if it was odeviced or oeventsd Dec 18 17:22:22 Yeah but the current (from source) vala dbus vapi is insuficient to implement oevents and opimd efficiently Dec 18 17:22:46 It does not permit to use filters Dec 18 17:22:55 as in C Dec 18 17:23:19 This is why I did the extension Dec 18 17:24:48 alphaone, GetPhonebookInfo ( '+CPBS="%s";+CPBR=?' ) and RetrievePhonebook ( '+CPBS="%s";+CPBR=%d,%d' ) are using the same type of command and the same channel ( self.responseFromChannel ). Maybe that's why it gets confused? Dec 18 17:30:15 DocScrutinizer: ping Dec 18 17:31:02 humm? Dec 18 17:31:26 i read in the ml that you will join the cc meeting Dec 18 17:31:33 yup Dec 18 17:31:38 that's the plan Dec 18 17:31:53 meet a lot of friends there ;-) Dec 18 17:31:53 and that you will fix some neos? Dec 18 17:31:59 maybe Dec 18 17:32:09 humm Dec 18 17:32:19 depends on my mood and "shatterhand condition" Dec 18 17:32:29 hehe Dec 18 17:32:47 hmm too bad I can't be there :p Dec 18 17:32:47 i am not there but i know someone in my area who will be there Dec 18 17:33:03 emdete will be there Dec 18 17:33:09 anyway: this will mean lots of free bears joerg :ü Dec 18 17:33:13 :p Dec 18 17:33:18 DocScrutinizer: where are you from in germany? Dec 18 17:33:23 naaah, that's not a repair service to send in ;-) Dec 18 17:33:48 south Dec 18 17:33:53 BY Dec 18 17:33:54 it was worth a try Dec 18 17:34:36 he could try your luck, but I'll promise nothing Dec 18 17:34:48 do you know him? Dec 18 17:35:13 for sure I won't sit there three days just doing buzz-fix rework - U know Dec 18 17:35:23 thats sure Dec 18 17:35:40 what is the price doc?;-) Dec 18 17:35:45 what do you like Dec 18 17:36:27 so guys coming with their own device and being interested in learning how to do this themselves, probably will be preferred Dec 18 17:36:47 again depends on mood ;-) Dec 18 17:37:13 there must be something to raise your mood:-) Dec 18 17:37:26 a "thank you" on the ML, a beer, a nice talk while I fix this Dec 18 17:37:28 dunno Dec 18 17:37:29 so these fast-boot patches, they're quite behind om-daily it seems Dec 18 17:37:58 DocScrutinizer: make a kind of snowballsystem Dec 18 17:38:00 DocScrutinizer: i cant join, have to work ... Dec 18 17:38:25 me too ;-) Dec 18 17:38:29 the number of beers is proportional to his mood, thus the mood is antiproportional to his "shatterhand condition", hehe.. Dec 18 17:38:41 lol Dec 18 17:38:45 DocScrutinizer: i hope in the end there will be an official way for this and i can sent it to trisoft Dec 18 17:39:11 that's the plan I'd guess, longterm Dec 18 17:39:34 DocScrutinizer: but getting rid of that bug would be a big step for me for daily use of the neo Dec 18 17:40:04 first we need some early adopters to aprove it actually fixed buzz for them Dec 18 17:40:06 I'm lucky, haven't ever experienced buzzing (living not in a town..maybe that's it) Dec 18 17:40:19 DocScrutinizer: here i am Dec 18 17:40:24 quickdev: yup Dec 18 17:40:37 DocScrutinizer, or is the source known? Dec 18 17:40:48 hehe :) Dec 18 17:41:00 BluesLee: I tld you, try your luck, but I can't promise anything Dec 18 17:41:31 mickey|fso, here for some simple questions? Dec 18 17:41:56 DocScrutinizer: okay, maybe i will try my luck... Dec 18 17:42:06 DocScruntinizer: I used the big cap fix and it worked for my buzz Dec 18 17:42:12 quickdev: buzz is virtually cmpletely understood. BTS tells Ur phone about how much power to use for xmit. This power causes buzz, when high enough Dec 18 17:42:31 DocScrutinizer: I used the big cap fix and it worked for my buzz , helps if I can spell Dec 18 17:42:49 Nytowl: PLEEEASE send a detailed report! to me directly! Dec 18 17:43:05 the more details, the better Dec 18 17:43:22 the faster we will make this an official recommendation Dec 18 17:43:28 I posted pictures on ML to joerg and werner a few weeks ago Dec 18 17:43:33 What what!? Dec 18 17:43:36 i read that its really hard to do yourself Dec 18 17:43:50 ask Nytowl Dec 18 17:44:11 heh :P Dec 18 17:44:18 I didn't do most of the work myself I had one of our hardware guys do it Dec 18 17:44:23 Depends on what your skillset is, eh Doctor Joerg? ;) Dec 18 17:44:37 heh, yeah, that makes more sense :) Dec 18 17:44:37 yup Dec 18 17:44:39 If you don't know 0402 means I wouldn't attempt it myself Dec 18 17:44:47 hehe Dec 18 17:44:48 Nytowl: are you Vasco Nvoa? Dec 18 17:45:00 nope Angus Ainslie Dec 18 17:45:24 Then DocScrutinizer here's another report for you: http://lists.openmoko.org/pipermail/community/2008-December/038045.html Dec 18 17:45:45 The cap isn't the hard part the resistor is Dec 18 17:45:57 wanna hear a funny detail? just brushed 3000 transistors into my left hand and filled it to a small bag Dec 18 17:46:10 Nytowl: correct Dec 18 17:46:22 o.O Dec 18 17:46:24 well when they're the size of a grain of sand Dec 18 17:46:43 semiconductors ftw? Dec 18 17:46:45 3 ways to get rid of that issue: 1. trying my luck;-) 2. find a hw guru in my neighborhood 3. wait a long time before om will do something Dec 18 17:47:01 right Dec 18 17:47:09 That just about sums it up! :) Dec 18 17:47:44 its my personal opinion Dec 18 17:48:01 the gps software fix was something different Dec 18 17:48:12 BluesLee: if you haven't done much surface mount work find some 0402 components to practice on first Dec 18 17:48:14 i was really impressed how fast they fixed it Dec 18 17:48:41 Nytowl: i even dont know what 0402 means ... Dec 18 17:49:19 It's the size of the resistor that needs to be placed on the board Dec 18 17:49:30 :) Dec 18 17:49:41 Yeah, Joerg's pretty amazing with his hardware fixes ;D Dec 18 17:51:07 quickdev: It picks up stray data from the response before:w Dec 18 17:51:47 BluesLee: 0.04 x 0.02 inches i'd guess Dec 18 17:51:57 wow Dec 18 17:52:21 is this the solution http://people.openmoko.org/joerg/GSM_EMI_noise/noise_stopped_by_athena_rework/GTA02%20noise%20issue%20report.doc Dec 18 17:52:38 not exactly ;-) Dec 18 17:53:11 go up one folder-level, there you might find a buzz-fix_s Dec 18 17:53:18 SOP.pdf Dec 18 17:53:23 BluesLee: http://people.openmoko.org/joerg/GSM_EMI_noise/big-C_rework_SOP__DRAFT3__.pdf i guess Dec 18 17:53:35 Oops, not that Dec 18 17:53:41 http://people.openmoko.org/joerg/GSM_EMI_noise/big-C_rework_SOP_rc1.pdf is newer. Dec 18 17:53:42 nah, .._rc0.pdf Dec 18 17:53:50 ok, rc1 Dec 18 17:53:58 I thought it was 0.4 mm x 0.2 mm but could be wrong Dec 18 17:54:31 no, I think in electronics all is inches, or mil Dec 18 17:55:11 actually the R are a little bit bigger than 0.4mm Dec 18 17:55:35 there are 0201 as well, those might match your figure ;-) Dec 18 17:55:43 Sounds so challenging, i want to try it myself though i don't experience buzz and i'm not proficient in soldering :p Dec 18 17:56:00 hehe Dec 18 17:56:00 Whenever I make or receive a call using SHR, I cannot release the call, and I have to reboot the phone to make or receive calls again. Is there any way to avoid this? Dec 18 17:56:07 i would to be honest Dec 18 17:56:31 find me at 25C3, I'll give you a good quantity of SMD-components to practice Dec 18 17:56:38 And i can easily ask the guys at work who can do it without problems. Dec 18 17:56:40 my last attempt was to switch a microdrive in an ipod with a cf card Dec 18 17:56:42 :o Dec 18 17:56:53 and how did that go, Mr. Lee? :P Dec 18 17:56:56 I wish i could go to 25C3... Dec 18 17:57:08 Dave: i broke the ipod Dec 18 17:57:11 Yeah we have some boards around here with 0201 one them, I can hear the hardware guys swear when one of those needs works Dec 18 17:57:45 Dave: but the idea was good;-) Dec 18 17:57:49 :P Dec 18 17:58:05 you should have called Joerg ;D Dec 18 17:58:20 Nytowl: lol Dec 18 17:59:05 I heard 0201 dissolve in staining, too small ;-D Dec 18 17:59:27 haha Dec 18 17:59:28 Hadn't heard that one yet but I don't doubt it Dec 18 17:59:44 one day you look at your broken board and a 0201 has vanished Dec 18 18:00:09 DocScrutinizer: you haven't overlooked a link to a rework report by Vasco Nvoa i just gave you, have you? Dec 18 18:00:37 there was a solution by cutting a pin? Dec 18 18:01:01 nope, seen it Dec 18 18:01:04 thanks Dec 18 18:01:22 BluesLee: didn't pan out Dec 18 18:01:45 too risky, too ugly, to much buzz left over Dec 18 18:01:51 too much Dec 18 18:01:56 okay Dec 18 18:02:18 as i do not use or like headsets it would be okay for me Dec 18 18:03:02 there are reports of om-employees who removed the hs-receptacle all together Dec 18 18:03:22 naughty Dec 18 18:03:32 though that's also damn hard with out breaking he whole board Dec 18 18:04:12 BluesLee: Just take some old unused board with tiny components and practice with it. It'd be a useful skill anyway. Once you feel confident, do your FR. ;) Dec 18 18:05:06 BluesLee: but don't even think about that if you had to start learning soldering at all for it Dec 18 18:05:50 the advice to practice it is for experienced elektronics solderers who just don't know SMT Dec 18 18:06:07 soldering is nothing for me though i like handcrafts Dec 18 18:06:19 so forget about it Dec 18 18:06:29 i can make good quality juggling balls/bean bags Dec 18 18:06:42 with a sewing machine but that want help;-) Dec 18 18:06:46 I'm soldering since i was 5 years old, and even I had problems Dec 18 18:07:06 mwester: ping Dec 18 18:07:16 DocScrutinizer: once i needed to solder some SMT, i just tried and it worked out. A bit clumsy, but workable. Not 0402 but still... Dec 18 18:07:48 honestly SMT isn't made for manual soldering Dec 18 18:08:38 PaulFertser_: but I assme you worked with liquid hot metal before, no? Dec 18 18:09:38 DocScrutinizer: soldering guitar jacks and DIP 2.54 ICs. ;) Dec 18 18:10:13 yup, so you know whats a correct solderjoint and how to make it Dec 18 18:10:59 no use in dripping hot tin on a cold 0402 ;-) Dec 18 18:12:00 its pretty hard to heat up the pad, while not burning the component Dec 18 18:12:44 mission impossible Dec 18 18:12:46 BTW, can a soldering grease used for the task? Dec 18 18:12:57 noooooopee! Dec 18 18:13:14 use flux! electronic flux Dec 18 18:13:23 no grease please Dec 18 18:14:02 usually flux is in the core of your solder strand Dec 18 18:14:02 Yay, I'm going to be on the train today! Dec 18 18:14:43 colophonium Dec 18 18:14:57 I wasn't going use the grease anyway :) And what about the tin? I think lead-free has higher melting temperature and therefore it is harder to use it? Dec 18 18:15:02 best is you use SMT-solder-paste Dec 18 18:15:59 you already have leadfree on the board. So when u use lead, the slder on the board won't melt, or the lead will burn Dec 18 18:16:20 I knew that :p Dec 18 18:17:08 I know a lot of RF guys who prefer to use lead solder, and use a different "bin" of flux. Dec 18 18:24:02 I also prefer lead-tin, but if you have to do a rework on a board where you have RoHS-tin already, using lead is deprecated for technical reasons Dec 18 18:25:31 you simply shouldn't mix them up Dec 18 18:25:53 they all left, hehe Dec 18 18:26:02 :-) Dec 18 18:26:21 boooooh, here is evil doc >:-) Dec 18 18:26:34 you killed them with all of that hw stuff details Dec 18 18:27:03 actually that what my boss is accusing me all the time ;-) Dec 18 18:28:06 Any tricky details i missed while reloading my stupid ZTE GPL-infringing (fuck ZTE!) adsl router? Dec 18 18:28:07 didn't believe it worked so good :D Dec 18 18:29:26 if i meet emdete and you are in a good mood i can test your rework then, maybe feedback speeds up the whole procedure ... Dec 18 18:29:54 does om test it? Dec 18 18:30:12 BluesLee: yup, much appreciated Dec 18 18:30:23 otherwise you wouldnt have called for testers Dec 18 18:30:33 sure, but we don't have a "good" buzz-situation here Dec 18 18:30:57 where? Dec 18 18:31:13 in by? Dec 18 18:31:16 TPE Dec 18 18:31:19 .tw Dec 18 18:31:26 okay Dec 18 18:31:32 are you there? Dec 18 18:31:40 no ... Dec 18 18:31:44 right now: yes Dec 18 18:31:48 ahh Dec 18 18:32:11 i have good buzz situations:-) Dec 18 18:32:38 [2008-12-19 02:32:21] [Whois] DocScrutinizer ist n=jr@118-166-71-84.dynamic.hinet.net (joerg) Dec 18 18:32:51 doc J Dec 18 18:33:02 >traceroute dynamic.hinet.net Dec 18 18:33:14 :o Dec 18 18:33:46 are the echo problems related to the buzz issue or are they totally independent? Dec 18 18:34:15 i tried to adjust alsamixer without big success Dec 18 18:34:18 totally independant Dec 18 18:34:51 sorry, have to eat and sleep now Dec 18 18:35:00 i guess buzz fixed + echo adjusted by alsa would be optimal Dec 18 18:35:15 gn8, have to learn something Dec 18 18:35:19 echo fixed by AT%N0175 Dec 18 18:35:40 yeah we had that discussion here Dec 18 18:35:50 or, eventually, MOKO11 Dec 18 18:35:55 Ainulindale said "no, its not my job" Dec 18 18:36:30 fso people should do it Dec 18 18:36:32 he's right. It's FSO job Dec 18 18:36:45 up to date echo is not fixed for me Dec 18 18:37:35 okay, will also eat something Dec 18 18:37:50 bye Dec 18 18:46:01 haha, mickey's life is going to be so miserable. Dec 18 18:46:07 He's on the bottom of everyone. Dec 18 18:46:12 And everyone is using him. Dec 18 18:46:34 *sigh* Dec 18 18:46:45 indeed Dec 18 18:46:59 haha Dec 18 18:47:02 i want to using michey as a my sexual thing Dec 18 18:47:20 Uh... Dec 18 18:47:43 Only if you're the one of maybe three females who bought a freerunner? Dec 18 18:47:57 no I am a men Dec 18 18:48:15 anybody can tell me how to make bitbake fetch newest frameworkd-devel? it sticks to gitr3d4244fcd... Dec 18 19:00:59 Ainulindale: ping (http://pastebin.com/d5fd4a813) Dec 18 19:11:31 mickey|fso: It seems your solution to send re-enable unsolicited responses on resume is racy, please take a look at http://pastebin.com/m2b4e6420 It tries to send AT+CTZU=1 and AT+CMGL=2 even before "setting resource status for GSM from suspended to resuming". Dec 18 19:18:10 mickey|fso, ping Dec 18 19:19:15 mickey|fso: And, it seems that parser is somehow broken, it completely ignores %CPI incoming call indication, though they are coming intact and correct: http://pastebin.com/m6baaa33a Dec 18 19:23:07 mickey|fso: And the reason is shown later in the log... Sorry for not mentioning it. It's because it awaits reply to the AT+CTZU=1... Dec 18 19:23:17 dcordes: any news wrt. atv? Dec 18 19:24:28 PaulFertser: sure you don't have the version that was broken for one day? Dec 18 19:24:41 freesmartphone.org: 03stefan 07framework * r1c32b9fb63f7 10/framework/subsystems/ogpsd/ (eten.py factory.py gpschannel.py): Dec 18 19:24:41 freesmartphone.org: ogpsd: Add EtenDevice for the glofiish devices. Dec 18 19:24:41 freesmartphone.org: This patch also introduces a baudrate config option in ogpsd.serialchannel. Dec 18 19:25:08 mickey|fso: commit 9e4966d35572, Tue Dec 16 Dec 18 19:27:52 mickey|fso, no I'm not certain what I must double check Dec 18 19:29:20 atv1 Dec 18 19:29:36 should turn your GSM modem to common result presentation Dec 18 19:29:37 (OK) Dec 18 19:30:34 ok I can try in a few Dec 18 19:30:46 btw did you have a look at the wince logs? Dec 18 19:32:02 mickey|fso: Sorry for trimming too much, i was so excited doing it ;) Here's the complete log for losing incoming phone call after resume (i can create a ticket, but i don't know yet the policy of reporting bugs on FSO HEAD): http://pastebin.com/m304cb45d Dec 18 19:32:30 dcordes: yes, they're using short result code Dec 18 19:32:32 we don't want taht Dec 18 19:32:39 I see Dec 18 19:32:51 so switch your modem to v1 Dec 18 19:32:55 and then everything should work fine Dec 18 19:33:03 and remove the patches from the parser Dec 18 19:33:07 and beyond that? seen anything that caught your attention? Dec 18 19:33:37 ok will do that Dec 18 19:34:00 nothing unusual Dec 18 19:34:04 except some unknown commands Dec 18 19:34:57 good. I collected these in prop-commands.txt Dec 18 19:34:59 Sun's headquarters look like a prison or a church. Dec 18 19:35:34 hope they won't get rick roll'D if many people think they look like a church Dec 18 19:37:05 dcordes: Well, the main building looks like a churche. Dec 18 19:37:08 s/church Dec 18 19:37:11 dkwapodkwadwad I hate lag. Dec 18 19:42:17 freesmartphone.org: 03daniel 07framework * rdef440027b0a 10/framework/subsystems/ogsmd/ (5 files in 3 dirs): Dec 18 19:42:17 freesmartphone.org: ogsmd: Add support for different SMS message types Dec 18 19:42:17 freesmartphone.org: This patch also (hopefully!) fixes the SMS PDU breakage that has been Dec 18 19:42:17 freesmartphone.org: around in master for some time. Dec 18 19:42:17 freesmartphone.org: SMS types are now sms-{deliver,submit} and sms-{deliver,submit}-report Dec 18 19:45:53 ptitjes? Dec 18 19:48:55 alphaone: it's getting better all the time, thanks :) Dec 18 19:50:23 I'm full, damn Dec 18 19:50:25 I love this hotel Dec 18 19:50:32 PaulFertser: :-) Dec 18 19:50:48 Ainulindale: Been testing the minibar again? Dec 18 19:51:25 Nein Dec 18 19:51:33 The restaurant is sooo goooood Dec 18 19:51:37 :O Dec 18 19:51:43 Ainulindale, you're addicted. :p Dec 18 19:51:49 Well Dec 18 19:51:52 Ainulindale: so you're in good mood now? Dec 18 19:51:59 I've been coming to this hotel, well Dec 18 19:52:07 Two nights a month since july Dec 18 19:52:19 heh Dec 18 19:52:26 Ainulindale: Hehe Dec 18 19:52:27 That's why I like working for my client Dec 18 19:52:54 This night I ate noix de saint jacques and some échine de porcelet (piglet) with honey and spices Dec 18 19:53:03 and washed them up with some saumur champigny Dec 18 19:53:11 And I'll pay nothing Dec 18 19:53:12 Life is good Dec 18 19:53:23 Ainulindale: nice client Dec 18 19:53:31 Indeed Dec 18 19:53:39 Ainulindale: Cool :-) Dec 18 19:53:51 (and a beer for starters) Dec 18 19:53:56 Hence, I'm full Dec 18 19:54:32 to help digesting... I have some bitbakery prolems ;) Dec 18 19:54:41 Only thing missing is a nice cigar Dec 18 19:56:20 mickey|fso, I accidently removed your mail with the last patch you sent (the one for the updated parser) and have no local copy. could you chekc which file/lines were affected? Dec 18 19:57:32 paser.py was affected Dec 18 19:57:39 Ainulindale: are you sure your LOCAL/REMOTE magic in shr.bbclass works as expected? Dec 18 19:57:39 i'll resend the mail Dec 18 19:57:52 mrmoku: works on the buildhost, and works here Dec 18 19:57:58 your bb file is a custom one ? Dec 18 19:57:59 20:00 < mrmoku> Ainulindale: ping (http://pastebin.com/d5fd4a813) Dec 18 19:58:09 If it is Dec 18 19:58:12 Ainulindale: I get parsing errors if I set to REMOTE Dec 18 19:58:14 I bet you have no SHR_PV Dec 18 19:58:23 mickey|fso, which function? Dec 18 19:58:32 just trying to bitbake -c clean frameworkd-devel Dec 18 19:58:43 and get errors if set to REMOTE Dec 18 19:58:48 works if set to LOCAL Dec 18 19:58:50 Your error has no relation with frameworkd-devel Dec 18 19:59:05 yep, but with your local/remote magic ;) Dec 18 19:59:07 But with gurana_git Dec 18 19:59:18 If your bb file is wrong the my magic won't work Dec 18 19:59:21 Pastebin your bb file Dec 18 19:59:32 If I'm not responsive, by the way Dec 18 19:59:39 THat's because I have a beer and Tomb Raider is on the TV Dec 18 19:59:48 That means I'm mainly trying not to laugh to much Dec 18 19:59:52 +o Dec 18 19:59:58 uhh, you might have given me the correct clue - thanks Dec 18 20:00:14 dcordes: probably in feed() Dec 18 20:00:20 Yeah, so my bet was right? :-) Dec 18 20:00:21 was starting to write a .bb for guarana... which is lying around localy Dec 18 20:00:24 dcordes: just download the latest parser.py from git Dec 18 20:00:38 mrmoku: and that's why you should read error messages! =) Dec 18 20:00:56 Ainulindale: hehe, how right you are Dec 18 20:01:04 * mrmoku starts thinking Ainulindale is always right :-) Dec 18 20:01:57 Ooooh yeah, worship me :-) Dec 18 20:02:15 But you should worship mickey|fso in my stead Dec 18 20:02:19 He's the one who needs it Dec 18 20:02:26 (opimd, opimd, opimd, opimd....) Dec 18 20:02:26 * mickey|fso ultrafrustrated today Dec 18 20:02:34 mickey|fso: why is that? :-) Dec 18 20:02:44 ezx is making nothing but problems :/ Dec 18 20:02:46 * mrmoku knew already that mickey|fso is doing the right things :-) Dec 18 20:02:57 mickey|fso: well I was recently wondering about that Dec 18 20:03:04 I don't even know what is ezx anyway Dec 18 20:03:25 I think I don't read enough documentation :-) Dec 18 20:03:39 openezx is where we all met, trying to work on the first linux phone w/ 100% OSS Dec 18 20:04:30 Oh ok Dec 18 20:04:45 more than 6 million devices out there Dec 18 20:04:53 but the project never got real steam Dec 18 20:05:13 we've been "close to a release" for years now Dec 18 20:05:26 and today everything goes backwards Dec 18 20:06:00 heh Dec 18 20:07:24 I wonder how many msm7* devices are out there now Dec 18 20:08:46 today's experience reminds me just how hard it is to reach a "fully" supported state without vendor support Dec 18 20:08:54 mickey|fso: chin up, it's almost christmas; time to spoil yourself for once ;) Dec 18 20:10:02 mickey|fso, look at qualcomm. they guard all docs with their life Dec 18 20:10:17 I wonder if there will ever be a leaked 7200 datasheet Dec 18 20:11:24 mickey|fso: what's the roadblock you hit today? Dec 18 20:11:34 mickey|fso, I think the last patch wasn't for parser.py . it would be great if you could check your sent mail real quick. (my sd hardware is broken) Dec 18 20:12:13 else I would just copy the latest framework-devel Dec 18 20:12:29 just copy the latest, should do Dec 18 20:12:36 Kensan: well Dec 18 20:12:43 didn't touch my 780 setup for two weeks Dec 18 20:12:50 wanted to get something done today and... Dec 18 20:12:57 2.6.27 no longer boots (did two weeks ago) Dec 18 20:13:06 can't read SMS from the SIM (worked two weeks ago) Dec 18 20:13:11 NO changes whatsoever Dec 18 20:13:15 i didn't even remove the SD Dec 18 20:13:20 i'm completely lost Dec 18 20:13:22 mickey|fso: sounds funky... Dec 18 20:13:58 mickey|fso: any chance of "hardware related" issues? Cat swallowing the phone and putting it back after that etc? Dec 18 20:14:12 always possible Dec 18 20:14:14 but unlikely Dec 18 20:14:24 problem is expensive setup costs Dec 18 20:14:25 (in time) Dec 18 20:14:34 need to have gen-blog flashed on the device (instead of the old kernel) Dec 18 20:14:40 need to have an SD prepared with all the contents Dec 18 20:14:43 etc. Dec 18 20:14:44 mickey|fso: yeah... I might give it a go this weekend. Dec 18 20:15:01 mickey|fso: haven't been able to toy around with my a780 since I got it :( Dec 18 20:16:05 mickey|fso: any discharge related issues? Dec 18 20:16:16 mickey|fso: hm... hard to guess what the problem could be. Dec 18 20:18:00 bad karma Dec 18 20:19:47 mickey|fso: murphy... Dec 18 20:20:02 always there watching over us tech folks... Dec 18 20:23:54 Kensan! Dec 18 20:24:32 Hi Dave Dec 18 20:24:37 Greetings. Dec 18 20:24:40 stefan_schmidt: good evening. Dec 18 20:24:50 hi Kensan Dec 18 20:26:46 stefan_schmidt: gnufiish seems to come along :) Dec 18 20:28:12 Kensan: A bit yes :) Dec 18 20:28:43 hello \o/ Dec 18 20:33:14 stefan_schmidt: is Harald talking about gnufiish at 25C3? Dec 18 20:33:27 Kensan: no Dec 18 20:33:37 Kensan: But about running an own GSM BTS :) Dec 18 20:34:53 stefan_schmidt: yes, I read about that. There's some very interesting stuff this year Dec 18 20:35:06 stefan_schmidt: as usual :) Unfortunately I will not be able to go :( Dec 18 20:35:12 yopyop Dec 18 20:35:17 Kensan: I hope not to much. Like to relax a bit there :) Dec 18 20:35:21 Kensan: :( Dec 18 20:35:59 * Kensan points stefan_schmidt towards #openezx Dec 18 20:36:05 ;) Dec 18 20:37:10 Kensan: I know, sitting in his range. Strange problems with the SMS phonebook on his A780... Dec 18 20:37:53 stefan_schmidt: ah ic. :( Dec 18 20:38:27 stefan_schmidt: is he (still) jealous of your and alphaone's x200s? ;) Dec 18 20:38:29 *heh* Dec 18 20:38:54 Kensan: heh, he had a look at them and was pondering earlier... Dec 18 20:38:59 I sure hope so :-) Dec 18 20:39:10 did someone use scummvm on shr? Dec 18 20:39:28 mickey|fso: btw, do you know if anybody (on OM or otherwise) is trying to run automated tests for kernel issues on fr? I figured I could set one up since I already know some people who have fr but don't use it at the moment and I don't have time to manually test all new kernel versions for all possible use cases Dec 18 20:39:29 or was able to map f5 correctly? Dec 18 20:39:53 Blueslee, Yes! Dec 18 20:39:59 lindi-: not that i know Dec 18 20:40:01 Dave: how? Dec 18 20:40:14 point and click -> launch application? Dec 18 20:40:16 mickey|fso: ok, it involves things like figuring out how to do fallback boot in case of kernel panic Dec 18 20:40:38 mickey|fso: afaik uboot does not support fallback like grub does Dec 18 20:41:33 Dave: ts seems to be broken for me Dec 18 20:41:42 mickey|fso: with prepaid SIM it could even be used to test reliability of fso-frameworkd Dec 18 20:41:54 alphaone: oh hi there :) lurking in the background I see ;) Dec 18 20:41:57 (by making automated calls from other computer with asterisk) Dec 18 20:42:05 Dave: not calibrated well in rotated mode in scummvm Dec 18 20:42:11 :-) Dec 18 20:42:36 stefan_schmidt: I am pondering myself... Dec 18 20:43:05 Dave: which scummvm u use? do you use shr? Dec 18 20:43:18 yes Dec 18 20:43:36 and scummvm works well? Dec 18 20:43:47 Well, it works. Dec 18 20:43:54 I don't know what else you're getting at :) Dec 18 20:44:09 as in, runs and plays games (without crashing)? Dec 18 20:44:14 mickey|fso, finally got the clean, updated fso tree Dec 18 20:44:19 stefan_schmidt: but I am missing sc-reader and to some smaller extent an optical drive... and 12" might just be 1 inch too small for me... Dec 18 20:44:35 mwester: ping Dec 18 20:44:42 Kensan: sc reader? Dec 18 20:44:49 stefan_schmidt: smartcard Dec 18 20:44:54 ah Dec 18 20:45:05 Kensan: Use the SIM card slot ;) Dec 18 20:45:06 stefan_schmidt: if only the latitude e4300 were a thinkpad... Dec 18 20:45:19 Dave: its interesting, when i start it calibration is okay but within the game not Dec 18 20:45:50 you mean cursor is wacky? Dec 18 20:46:00 stefan_schmidt: hm... not all smartcards are in simformat... plus that would mean some serious driver-mucking ;) Dec 18 20:46:05 its not at the right place Dec 18 20:46:08 if even possible... Dec 18 20:46:09 yeah Dec 18 20:46:19 this has always been a long-standing problem, Bluelee :) Dec 18 20:46:26 no one really bothered to look into it further Dec 18 20:46:27 Kensan: I doubt. Directly connected to the WWAN card Dec 18 20:46:35 * Dave throws a freerunner at cjb Dec 18 20:46:53 Blueslee, had the same problems in 2007 with scummvm Dec 18 20:47:13 Dave: and now its gone? Dec 18 20:47:14 even after the xglamo xrandr shit was fixed Dec 18 20:47:16 No Dec 18 20:47:33 Like I said, it's always been like that, and has never been further looked into so far as I have observed. Dec 18 20:47:39 It's clearly an outstanding issue. Dec 18 20:47:46 You're welcome to fix it :D Dec 18 20:47:58 stefan_schmidt: hm yeah in that case... Dec 18 20:48:26 stefan_schmidt: speaking of unsupported hardware: any news about the intel turbo memory thing? Dec 18 20:49:20 Kensan: nope Dec 18 20:49:25 looting binux Dec 18 20:49:35 Kensan: All intel linux devs seem to hide Dec 18 20:50:37 stefan_schmidt: the stuff I picked up via google seems to indicate it was mainly to help vista with disk access etc. Dec 18 20:51:13 Kensan: yeah, same as I found. Need to turn on all MTD driver + debug and see if anything comes out of this. Dec 18 20:51:45 Kensan: If not, I'm not sure if I really like to start hacking on this also. Don't think so... Dec 18 20:54:16 where is the history of cli-framework stored? Dec 18 20:58:37 :\ Dec 18 20:59:21 Hey Dec 18 20:59:31 alphaone, some time to speak? Dec 18 21:02:16 quickdev: Hey Dec 18 21:02:20 quickdev: sure Dec 18 21:02:42 alphaone, you said results are parsed sequentially, right? Dec 18 21:02:51 Be aware though, I am seriously sleep deprived. Dec 18 21:02:55 yeah Dec 18 21:03:12 :) Dec 18 21:03:29 alphaone, how does the parser know when the end of the result is reached? Dec 18 21:03:36 s/when/that/ Dec 18 21:03:36 quickdev meant: alphaone, how does the parser know that the end of the result is reached? Dec 18 21:04:51 quickdev: ogsmd? Dec 18 21:05:00 alphaone, yes Dec 18 21:05:22 (I'd like to find out what's the cause of the issue we talked about some hours ago) Dec 18 21:05:24 Through newline I think Dec 18 21:05:27 or OK Dec 18 21:05:31 OK\r\n Dec 18 21:05:35 Would need to look at the parser Dec 18 21:05:39 or ask mickey|fso Dec 18 21:05:44 Ah, there he is Dec 18 21:05:58 alphaone, could you forward that mail to mickey|fso ? Dec 18 21:05:59 quickdev: Mickey already has sort of an idea Dec 18 21:06:50 maybe it's because I'm using GetPhonebookInfo() immediately after RetrievePhonebook() ? And they're using almost the same command? Dec 18 21:06:54 i glanced at your stuff Dec 18 21:06:56 mickey|fso, what's your idea? :) Dec 18 21:07:09 ogsmd's parser is not forgiving Dec 18 21:07:25 if the input is not well-formatted, it will emit errors Dec 18 21:07:25 that means? :) Dec 18 21:07:45 i suspect you run into a problem with either the muxer implementation or the server side muxer Dec 18 21:07:50 buffer-overflow Dec 18 21:08:17 4095 bytes, yeah Dec 18 21:08:45 mickey|fso, muxer implementation = gsm0720muxd? and server side muxer? Dec 18 21:08:45 it might be worth a try enlarging the muxer's buffer Dec 18 21:08:56 "server side muxer" in the gsm firmware Dec 18 21:09:13 ah..ok Dec 18 21:09:46 we have a muxer alternative soon wihch we can try with as well Dec 18 21:09:59 mickey|fso, I had a look at mwester's spy output. It seems to be ok. If it's ok it can only be gsmmuxd? Dec 18 21:10:03 mickey|fso, ok I booted, killed all python processes, enabled the ATV1 mode, ran frameworkd -s ogsmd -d, cli-framework, did the call as usual, it returend 1. have the frameworkd Dec 18 21:10:08 log in front of me Dec 18 21:10:17 good Dec 18 21:10:59 well not exactly. it looks the same Dec 18 21:11:06 that's sad Dec 18 21:11:17 I'll email Dec 18 21:11:29 ok, out of ideas then. show me at ccc. Dec 18 21:11:33 mickey|fso, http://git.freesmartphone.org/?p=gsm0710muxd.git;a=blob;f=src/gsm0710muxd.c;h=083df5dbbe90b499e66ad91567eafc925a4a4014;hb=HEAD - the buffer is 4096. There seems to be the problem. Dec 18 21:12:01 quickdev: try bumping to 16k Dec 18 21:12:11 mickey|fso, yes, doing it atm Dec 18 21:12:14 k Dec 18 21:12:45 mickey|fso, but gsmmuxd should continue to read if there's still some, or am I wrong? Dec 18 21:13:05 no idea, i have to admit Dec 18 21:13:13 i only worked on the build system for it Dec 18 21:13:24 * mickey|fso tried to stay away from 07.10 Dec 18 21:15:51 mickey|fso, I never see any ATD in the frameworkd log Dec 18 21:18:20 sounds like you never hang up Dec 18 21:19:07 stefan_schmidt: (was away) yeah... would just be some additional builtin 2 gigs of nand. maybe for swap for so... Dec 18 21:20:09 mickey|fso, and never dial? Dec 18 21:20:11 Kensan: Sure, I would love to use it, but spending weeks on writing a driver is not worth it Dec 18 21:20:18 stefan_schmidt: indeed. Dec 18 21:20:50 dcordes: it will not hang up until you tell it to Dec 18 21:20:55 oh ATD Dec 18 21:21:12 it doesn't recognize an answer Dec 18 21:21:17 so new commands get enqueued Dec 18 21:21:19 but never processed Dec 18 21:21:22 thanks to the 0\r Dec 18 21:21:48 how can I make whatever log all of the ATport rx/tx Dec 18 21:22:03 happens automatically with log_level=DEBUG Dec 18 21:22:44 how come there's nothing really sent to the modem according to the frameworkd log (with DEBUG on) ? Dec 18 21:23:50 that's simple Dec 18 21:23:54 first command gets sent Dec 18 21:24:04 never receives a response (due to our beloved 0\r) Dec 18 21:24:10 will not send next command Dec 18 21:24:13 done Dec 18 21:25:47 but I turned the OK on Dec 18 21:25:55 uhm... wait Dec 18 21:25:59 I mailed the log Dec 18 21:26:06 so it DID work? Dec 18 21:26:08 hello, I'm trying to use btooth+alsa on my shr... i need this: /usr/lib/alsa-lib/libasound_module_pcm_bluetooth.so but bluez-utils-alsa is not in shr feed Dec 18 21:26:52 argh Dec 18 21:27:02 ATV1 needs to be the first command Dec 18 21:27:02 mickey|fso, no, my bro didn't receive the call Dec 18 21:27:05 otherwise it will not work Dec 18 21:27:22 the first meaing, the first command sent to the modem after 'cold boot' ? Dec 18 21:27:29 It'll be in two minutes a21 Dec 18 21:27:33 the first before ogsmd parses anything Dec 18 21:27:35 so Dec 18 21:27:42 tnx Ainulindale Dec 18 21:27:44 you need to edit the channel lowlevel init Dec 18 21:27:58 try grabbing the one from calypso channel Dec 18 21:28:07 that should work Dec 18 21:28:28 Ainulindale: Tomb Raider finished? Dec 18 21:28:31 are you aware the modem is already initialized when frameworkd starts? Dec 18 21:28:44 ..which I can't avoid at this time Dec 18 21:29:37 that doesn#t matter Dec 18 21:29:45 lowlevel init means low level to ogsmd Dec 18 21:29:52 that is _before_ our regular parser kicks in Dec 18 21:29:52 mrmoku: yeah Dec 18 21:29:56 it was awful Dec 18 21:30:09 But I expected that much Dec 18 21:30:12 how about removing frameworkd from init and sending the ATV1 just manually before it's started? Dec 18 21:30:12 Ainulindale, write my name when you will put it in shr feed, please Dec 18 21:30:21 a21: huh? Dec 18 21:30:34 Ainulindale, about alsa+vtooth Dec 18 21:30:43 "write your name"? Dec 18 21:30:43 s/v/b/ Dec 18 21:30:43 a21 meant: Ainulindale, about alsa+btooth Dec 18 21:31:01 Ainulindale: I still have another bitbake problem... I want latest greatest frameworkd-devel... but it picks up an older rev Dec 18 21:31:05 Ainulindale, here in chat so it beeps to me :D Dec 18 21:31:18 dcordes: don't start hacking Dec 18 21:31:23 mickey|fso, it works flawlessly now. ( Ainulindale, I probably found the cause of your segfaults ) Dec 18 21:31:30 quickdev: amazing Dec 18 21:31:35 quickdev: so there were segfaults? :-) Dec 18 21:31:46 Ainulindale, only for people with maaany contacts ;) Dec 18 21:31:53 quickdev: that's my case Dec 18 21:31:53 dcordes: add a lowlevel init and we're done Dec 18 21:31:59 I don't have any friends, but I have people I whine with Dec 18 21:32:07 (lots of them) Dec 18 21:32:12 you can probably even reuse the one from the calypso Dec 18 21:32:22 a21: there it is Dec 18 21:32:30 mrmoku: no idea, check in any srcrev file included in your conf Dec 18 21:32:32 :love: Dec 18 21:32:36 mickey|fso, can you provide a hint on how to add the calypso low level init to the singleline modem? Dec 18 21:32:45 Ainulindale, did you give me access to the shr-theme pack/ Dec 18 21:32:45 ? Dec 18 21:33:05 dcordes: look at the calypso channel class Dec 18 21:33:07 copy Dec 18 21:33:08 paste Dec 18 21:33:09 done Dec 18 21:33:40 ok Dec 18 21:34:10 Ainulindale, it's a bug in gsm0710muxd Dec 18 21:34:13 TAsn: I didn't create it yet and I still was wondering how to package that Dec 18 21:34:17 quickdev: Oh? Dec 18 21:34:53 TAsn: I even think it should be packaged as a separate package Dec 18 21:34:59 Ainulindale, I do agree. Dec 18 21:35:14 Salut Vanessa ! (Ceci est un script automatisé pour me permettre d'éviter de perdre mon temps) Dec 18 21:35:16 when you think about it, please let me know. Dec 18 21:35:17 (woops) Dec 18 21:35:20 (shortcut) Dec 18 21:35:21 ainulindale is ALWAYS right Dec 18 21:35:30 he never fail Dec 18 21:35:30 TAsn: well I'm thinking about it Dec 18 21:35:36 Ainulindale, btw...the package is on the way :) Dec 18 21:35:38 I'm just wondering how to do that properly Dec 18 21:35:42 mickey|fso, in calypso's modem.py? Dec 18 21:35:44 Hire: Call me Hannibal smith Dec 18 21:35:50 * Ainulindale chews his cigar Dec 18 21:36:00 Ainulindale, I meant when you are done with thinking about it ;] Dec 18 21:36:19 TAsn: Well I was wondering whether we should put that in a single git or in a specific theme git Dec 18 21:36:24 I tend to think latter is better Dec 18 21:36:28 i will call you "hannibal kitty" Dec 18 21:36:58 Hire: I can haz mozarella Dec 18 21:37:15 you might be write. as you don't do guis I know nothing about managing a distro ;] Dec 18 21:37:58 I might be "write"? :-) Dec 18 21:38:15 Don't know what is your mother tongue but that's funny a french would have written the same Dec 18 21:38:24 ;p Dec 18 21:39:07 dcordes: no Dec 18 21:39:10 mrmoku: do you know if reducing locales still breaks the SHR build? Dec 18 21:39:11 dcordes: channel Dec 18 21:39:30 sicu: no it doesn't Dec 18 21:39:52 Ainulindale: great, thx =] Dec 18 21:40:11 dcordes: Just start playing around a little. You'll get there. Use grep, find, etc. to get the information you so desire. Dec 18 21:40:34 dcordes: You might find that they'll turn up results faster than mickey ;-) Dec 18 21:40:40 Ainulindale: i'll edit the wiki then =] Dec 18 21:40:52 quickdev: though that doesn't explain why it segfaulted while I was typing in the name of a new contact Dec 18 21:41:13 Ainulindale, it would explain it, but let me verify it first...to be sure Dec 18 21:44:37 mickey|fso, alphaone I can't guess what I need to copy Dec 18 21:44:46 freesmartphone.org: 03jluebbe 07framework * r78582569e660 10/framework/subsystems/otimed/otimed.py: otimed: accept only valid time from ogpsd Dec 18 21:44:47 freesmartphone.org: 03jluebbe 07framework * r3d274adf9b45 10/ (7 files in 6 dirs): Dec 18 21:44:47 freesmartphone.org: ogsmd: reformat mobile_network_code into networks.tab Dec 18 21:44:47 freesmartphone.org: This adds a new DBus interface "org.freesmartphone.GSM.Data" on the server Dec 18 21:44:48 freesmartphone.org: object, which can be used to query the network database. Dec 18 21:44:48 calypso channel class is not too precise Dec 18 21:45:22 wow Dec 18 21:45:26 gsm.DATA Dec 18 21:46:45 Ainulindale: the Makefile did not set up shr-autorev-unstable.inc in local.conf Dec 18 21:46:54 Ainulindale, you might be right* Dec 18 21:47:19 mrmoku: I wonder whose fault that is :-) Dec 18 21:47:21 that has nothing to do with my native language, I think it's because im dead tired ;] Dec 18 21:47:34 Ainulindale: heh, the original Makefile does the same ;) Dec 18 21:47:38 TAsn: where are you from again? Dec 18 21:47:43 Israel Dec 18 21:47:45 mrmoku: yeah but you're the last known committer :-p Dec 18 21:47:46 so I just cloned the error Dec 18 21:48:09 and I'm going to fix it :p Dec 18 21:48:22 You'd better do that, else I'll spank you Dec 18 21:49:03 dcordes: Trial and error :-) Dec 18 21:49:04 use your energy more usefull... like thinking about how to handle framework config for devel/non-devel ;) Dec 18 21:49:41 dcordes: def _hookLowLevelInit( self ): Dec 18 21:49:43 ... Dec 18 21:49:47 mrmoku: well it's not that different anyway Dec 18 21:49:53 my father always told me, when you start righting write instead of right, it's time to go to bed ;] Dec 18 21:49:59 and we could do a frameworkd-devel-config-shr anyway Dec 18 21:50:10 TAsn: heh :-) Dec 18 21:50:14 ;] Dec 18 21:50:24 j/k, night. Dec 18 21:50:59 Ainulindale: right now it conflicts, because frameworkd-devel is asking for framework-devel-config which the shr-config is not providing Dec 18 21:51:08 I bet it does Dec 18 21:51:08 we might just add that provide to the .bb for now Dec 18 21:51:17 not for devel Dec 18 21:51:21 We might as well do that, yes Dec 18 21:52:25 mickey|fso, let me see what my modem replies to ATE0 Dec 18 21:52:40 TAsn: nite =] Dec 18 21:54:24 mickey|fso, ATE0Q0V1 ?? Dec 18 21:54:34 ate0q0v1 Dec 18 21:54:57 OK Dec 18 21:55:04 ATE0 Dec 18 21:55:05 0 Dec 18 21:57:49 mickey|fso, ok so I put the def _hookLowLevelInit( self ): class after _init class inside singleline channel.py ? Dec 18 21:59:08 yes Dec 18 22:00:17 mickey|fso, if I haven't done anything wrong while compiling the patched gsm0710muxd, it's still appearing. Dec 18 22:01:03 quickdev: so it's not fixed? Dec 18 22:01:12 mickey|fso, no, it isn't Dec 18 22:01:17 ok Dec 18 22:01:19 http://rafb.net/p/UhMEic69.html Dec 18 22:01:19 what's left? kernel / firmware? Dec 18 22:01:28 then i'm out of ideas until i had the chance to test another muxer Dec 18 22:02:09 mickey|fso, anything funny in there? Dec 18 22:02:25 dcordes: remove the stuff about modem communication timestamp Dec 18 22:03:08 that's a calypso only thing Dec 18 22:05:37 mickey|fso, I don't understand which lines to remove Dec 18 22:05:57 is there some switch? Dec 18 22:06:05 - if CalypsoModemChannel.modem_communication_timestamp: Dec 18 22:06:05 CalypsoModemChannel.modem_communication_timestamp = time.time() Dec 18 22:06:12 - Dec 18 22:07:05 so only the Dec 18 22:07:07 if CalypsoModemChannel.modem_communication_timestamp: Dec 18 22:07:08 line? Dec 18 22:07:15 * dcordes ducks Dec 18 22:13:07 both Dec 18 22:17:29 mickey|fso, gsm0710muxd gets only 4096 bytes, no byte more Dec 18 22:21:54 mickey|fso, booting Dec 18 22:23:37 mickey|fso, Ok I just booted with the added thingy Dec 18 22:24:05 I ran mickeyterm Dec 18 22:24:30 the 0 reply is active Dec 18 22:26:17 so the function doesn't seem to work Dec 18 22:26:36 ? Dec 18 22:26:51 how can you tell? Dec 18 22:27:07 perhaps your strange modem resets the setting on closing channel Dec 18 22:27:17 I doubt this Dec 18 22:28:32 so Dec 18 22:28:37 once again and the last check Dec 18 22:28:44 you say atv1 Dec 18 22:28:47 it answers with OK Dec 18 22:28:57 you say something else... like AT+CIMI Dec 18 22:29:06 it answers with 0 agian? Dec 18 22:29:13 let me double check this Dec 18 22:29:55 mickey|fso, isn't it late for you? Dec 18 22:29:59 btw, when I open a terminal program on smd0 (also mickeyterm) the channel spits all of the unread stuff Dec 18 22:30:37 ATV1 Dec 18 22:30:38 OK Dec 18 22:31:04 AT+CIMI Dec 18 22:31:06 xxx Dec 18 22:31:07 OK Dec 18 22:31:17 I bet I included a funny error in the .py Dec 18 22:31:26 wait Dec 18 22:31:29 do Dec 18 22:31:31 ATZ Dec 18 22:31:37 what does that return? Dec 18 22:32:04 sorry- I killed the terminal, reran it, did the AT+CIMI Dec 18 22:32:21 and got OK again. so this excludes the modem resetting the state after channel close Dec 18 22:32:28 ATZ now Dec 18 22:32:32 0 Dec 18 22:32:37 ok Dec 18 22:32:38 ?! Dec 18 22:32:59 problem solved Dec 18 22:33:04 g'night Dec 18 22:33:05 * dcordes opens command reference Dec 18 22:34:30 c.remove( "ATZ" ) Dec 18 22:34:38 err Dec 18 22:34:42 c.remove( "Z" ) Dec 18 22:35:06 ah Dec 18 22:35:24 put it after c = self._commands["init"] Dec 18 22:36:51 it should not make a difference though Dec 18 22:37:14 since we send E0V1 in init Dec 18 22:37:16 mickey|fso, how would it solve the problem then Dec 18 22:37:17 after ATZ Dec 18 22:37:18 sorry Dec 18 22:37:33 somehow it gets reset to the wrong mode Dec 18 22:37:33 oh Dec 18 22:37:41 but try removing it anyways Dec 18 22:37:59 that's why I asked if we can get us something like the wince (raw AT rx/tx) log Dec 18 22:38:40 let me add the line on-kais real quick Dec 18 22:39:20 the paths are crazy Dec 18 22:40:32 ok Dec 18 22:41:48 mickey|fso, what's the preferred way to test if frameworkd still destroys the OK? Dec 18 22:42:50 let it init the channel Dec 18 22:42:57 then kill -9 Dec 18 22:43:01 then check w/ mickeyterm Dec 18 22:43:49 ok Dec 18 22:44:38 channel.py in line 97 Dec 18 22:45:04 _hookLowLevelInit Dec 18 22:45:11 for i in itertools.count(): Dec 18 22:45:19 NameError: global name 'itertools' is not defined Dec 18 22:45:20 mickey|fso, could you have a look at that bug in some days? Would be fine :) Dec 18 22:46:09 even if it's just to ensure that it's kernel / fw Dec 18 22:46:45 it's the Z line Dec 18 22:46:51 c.remove( 'Z' ) Dec 18 22:47:34 hm what's wrong with that Dec 18 22:47:43 you need itertools.py Dec 18 22:47:50 so Dec 18 22:47:53 'import itertools' Dec 18 22:47:58 into that file Dec 18 22:48:09 doesn't append need itertools too? Dec 18 22:48:16 c.append Dec 18 22:48:45 no Dec 18 22:48:48 append is a method on a list object Dec 18 22:48:55 itertools is a module Dec 18 22:49:16 where in the file do I put the 'import itertools' line? Dec 18 22:49:36 there is the from ogsmd.modems.abstract.channel import AbstractModemChannel Dec 18 22:49:37 line Dec 18 22:49:44 below would be excellent Dec 18 22:50:14 do I need to specify the 'from ' too? Dec 18 22:51:23 mickey|fso, however, gn8, cya Dec 18 22:51:45 no Dec 18 22:52:27 now it wants global name 'logger' Dec 18 22:52:32 I added import logger Dec 18 22:52:41 but that seems to be the wrong module name Dec 18 22:54:15 import logging Dec 18 22:54:24 logger=logging.getlogger("ogsmd") Dec 18 22:54:27 thanks Dec 18 22:56:03 mickey|fso, 'module' object has no attribute 'getlogger' Dec 18 22:56:51 getLogger Dec 18 22:56:53 cap L Dec 18 22:56:55 ok Dec 18 22:57:34 NameError: global name select is not def Dec 18 22:58:28 import select Dec 18 22:59:11 time gobject Dec 18 22:59:16 dcordes: I may help if you would take yourself some time to have a look around the other files and modems in there. The dialog about every single line over IRC seems pretty slow... Dec 18 22:59:40 I looked it up in the calypso Dec 18 23:01:41 ok seems to run Dec 18 23:02:15 AT Dec 18 23:02:16 OK Dec 18 23:02:17 :) Dec 18 23:02:30 Finally, yay :) Dec 18 23:02:37 lol battery died just this second Dec 18 23:03:07 heh, the kaiser really tries to get around it ;) Dec 18 23:03:20 qualcomm pressed the button Dec 18 23:04:06 if only I had a second working phone handy now Dec 18 23:04:33 I'll just call foobar and see what the log says Dec 18 23:05:01 you don't need to call Dec 18 23:05:13 inspecting the startup log will tell us if it worked or not Dec 18 23:05:23 if it processed more than one command, it works Dec 18 23:05:25 if not... doom Dec 18 23:05:48 no world domination? Dec 18 23:05:54 yes Dec 18 23:06:14 Not for the Kaiser Dec 18 23:06:29 it's a live Dec 18 23:06:57 The cake is a lie Dec 18 23:08:12 can I ring somebody just for fun? Dec 18 23:11:25 053134943519419741 Dec 18 23:11:44 dcordes, +1.925.202.9485 Dec 18 23:12:06 no pr0n #s please Dec 18 23:12:44 * mickey|fso computes the amount of support money he earned this nite Dec 18 23:12:57 dcordes: The one from alphaone is fine. Funny one, no pr0n Dec 18 23:13:18 mickey|fso: YOu are not paid for support, it'S that easy. :D Dec 18 23:13:32 * dcordes writes a bill for openmoko inc. PR department Dec 18 23:14:03 dcordes: 053134943741 Dec 18 23:15:59 dcordes: +4953134943594196000 Dec 18 23:17:25 * mwester thinks that mickey|fso's participation with the community should earn him the entire Om marketing dept's salary and expense budget. Dec 18 23:17:38 * mickey|fso bows with honor Dec 18 23:17:40 :) Dec 18 23:19:44 * rwhitby agrees Dec 18 23:19:57 freesmartphone.org: 03jluebbe 07framework * rc6c9001f33a3 10/framework/subsystems/ (ogsmd/gsm/const.py otimed/otimed.py): otimed: use network database to install a time zone file Dec 18 23:20:02 * rwhitby thinks mwester should get a cut too Dec 18 23:22:07 alphaone, screaming apes are in my kaiser Dec 18 23:22:17 * mickey|fso opens the champagne Dec 18 23:22:20 alphaone, check your mailbox Dec 18 23:22:30 dcordes: Then you must have dialed the wrong number ;-) Dec 18 23:22:35 dcordes: congrats Dec 18 23:22:42 It's not my mailbox Dec 18 23:22:47 lol it is mickey's honour Dec 18 23:22:51 dcordes: Apes are cool, aren't they? :) Dec 18 23:23:11 * stefan_schmidt applauds mickey Dec 18 23:23:12 I didn't assume the speaker is openned automatically Dec 18 23:23:49 * dcordes applauds everybody contributing to _free_ software on mobile phones Dec 18 23:24:43 * dcordes and falls asleep Dec 18 23:24:45 ttyl Dec 18 23:24:49 n8 Dec 18 23:25:16 night dcordes Dec 18 23:25:17 so after the ezx failure this is the best that happened today wrt. non-om-hardware Dec 18 23:26:33 i keep getting: [ERROR: Please set the 'CACHE' variable.] when trying to build SHR, anybody know where and what i set this to? Dec 18 23:27:00 it's when trying to bitbake -c clean Dec 18 23:30:07 mwester: hey there you are Dec 18 23:30:22 mwester: did you see 2180? Dec 18 23:31:07 :) Dec 18 23:31:30 dcordes: oh cool, phonecall with htc? Dec 18 23:32:28 * Kensan for one welcomes the new fso-phonecalling overlords Dec 18 23:33:16 * Kensan takes hat off and bows to mickey|fso & the gang Dec 18 23:36:33 Well good stuff, keep it up guys :) Dec 18 23:36:36 good night all Dec 18 23:36:44 n8 Dec 18 23:44:53 :P Dec 18 23:56:34 Kensan: (sorry, popping in and out, rather busy today with other stuff!) Yes, I saw 2180. I think my assumption that these errors on the GTA02 were caused by baud rate or simple application code issues may be flawed. I'll dig into this some more. Dec 19 00:03:58 they were caused by keanu reeves Dec 19 00:05:37 there is no bug...or perhaps it was a spoon Dec 19 00:15:11 freesmartphone.org: 03daniel 07framework * r898dff053f32 10/framework/subsystems/ogsmd/ (device.py gsm/sms.py modems/abstract/mediator.py): Dec 19 00:15:11 freesmartphone.org: ogsmd: Add support for sms-submit-reports and return timestamps Dec 19 00:15:11 freesmartphone.org: When sending an SMS an sms-submit-report is returned which includes a Dec 19 00:15:11 freesmartphone.org: timestamp. This is the time when the Short Message Service Center Dec 19 00:15:13 freesmartphone.org: received the short message. Dec 19 00:15:15 freesmartphone.org: The DBus calls for sending SMS now also return a timestamp in string Dec 19 00:15:17 freesmartphone.org: format (WARNING, API breakage!) Dec 19 00:24:05 Ainulindale: Warning, API breeakage Dec 19 00:29:12 Danger Will Robinson Danger! Dec 19 00:31:07 Yes! Dec 19 00:35:02 freesmartphone.org: 03daniel 07specs * r03286c0102ed 10/ (7 files in 4 dirs): Added timestamp return value for Send{Stored}Message functions Dec 19 00:40:57 ofaild Dec 19 00:41:08 opassed Dec 19 00:46:26 Agreed :) Dec 19 00:46:47 :) Dec 19 00:46:49 nighty night Dec 19 00:49:00 truste **** ENDING LOGGING AT Fri Dec 19 02:59:57 2008