Send buglog mailing list submissions to
[email protected]
To subscribe or unsubscribe via the World Wide Web, visit
http://lists.openmoko.org/mailman/listinfo/buglog
or, via email, send a message with subject or body 'help' to
[EMAIL PROTECTED]
You can reach the person managing the list at
[EMAIL PROTECTED]
When replying, please edit your Subject line so it is more specific
than "Re: Contents of buglog digest..."
Today's Topics:
1. [Bug 1194] Touchscreen Jitter
([EMAIL PROTECTED])
2. [Bug 1181] Battery temperature is incorrect (fix)
([EMAIL PROTECTED])
3. [Bug 1181] Battery temperature is incorrect (fix)
([EMAIL PROTECTED])
4. [Bug 1181] Battery temperature is incorrect (fix)
([EMAIL PROTECTED])
5. [Bug 1181] Battery temperature is incorrect (fix)
([EMAIL PROTECTED])
6. [Bug 1181] Battery temperature is incorrect (fix)
([EMAIL PROTECTED])
7. [Bug 1181] Battery temperature is incorrect [patch]
([EMAIL PROTECTED])
8. [Bug 1225] New: visual enhancement for dfu-util
([EMAIL PROTECTED])
9. [Bug 1225] visual enhancement for dfu-util
([EMAIL PROTECTED])
10. [Bug 1194] Touchscreen Jitter
([EMAIL PROTECTED])
11. [Bug 1226] New: Support USSD messages, e.g. for "remaining
airtime" checks ([EMAIL PROTECTED])
12. Your Bugzilla buglist needs attention. ([EMAIL PROTECTED])
--- Begin Message ---
http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=1194
------- Additional Comments From [EMAIL PROTECTED] 2008-02-11 16:36 -------
This is probably related if not I will open a new PR:
If I have a fullscreen SDL application and use the stylus to click near the
screen borders SDL's internal mouse pointer variables go nuts. What happens is
that if you click near the right/left border, the y coordinate gets a big offset
(from the real location) vice versa for the up/bottom border. Now you might say,
that this is a SDL issue but I think it has to do with the values reported by
the touchscreen. If run tsprint I get negative values for the top/left border
and values equal or bigger than the display width/height for the right/bottom
border.
If SDL - for some reason - does not expect this to happen it might choke on it.
I am looking forward to provide a test application.
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
--- End Message ---
--- Begin Message ---
http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=1181
[EMAIL PROTECTED] changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #494 is|0 |1
obsolete| |
------- Additional Comments From [EMAIL PROTECTED] 2008-02-11 22:34 -------
Created an attachment (id=525)
-->
(http://bugzilla.openmoko.org/cgi-bin/bugzilla/attachment.cgi?id=525&action=view)
Modified lookup table to match actual thermistor
I modified the patch so the LUT matches the B=3370 thermistor in the batteries.
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
--- End Message ---
--- Begin Message ---
http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=1181
[EMAIL PROTECTED] changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #502 is|0 |1
obsolete| |
------- Additional Comments From [EMAIL PROTECTED] 2008-02-11 22:36 -------
Created an attachment (id=526)
-->
(http://bugzilla.openmoko.org/cgi-bin/bugzilla/attachment.cgi?id=526&action=view)
Updated with correct B value
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
--- End Message ---
--- Begin Message ---
http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=1181
[EMAIL PROTECTED] changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #526|Updated with correct B value|Scilab script: updated with
description| |correct B value
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
--- End Message ---
--- Begin Message ---
http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=1181
[EMAIL PROTECTED] changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #525|Modified lookup table to |Patch: Modified LUT,
description|match actual thermistor |measurement equation, & sane
| |error value
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
--- End Message ---
--- Begin Message ---
http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=1181
[EMAIL PROTECTED] changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #526 is|1 |0
patch| |
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
--- End Message ---
--- Begin Message ---
http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=1181
[EMAIL PROTECTED] changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Battery temperature is |Battery temperature is
|incorrect (fix) |incorrect [patch]
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
--- End Message ---
--- Begin Message ---
http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=1225
Summary: visual enhancement for dfu-util
Product: OpenMoko
Version: current svn head
Platform: PC
OS/Version: Linux
Status: NEW
Severity: enhancement
Priority: P2
Component: dfu-util
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]
CC: [email protected]
No one knows where the dfu-util progress bar ends. The appended patch fixes
this.
diff --git a/src/host/dfu-util/src/sam7dfu.c b/src/host/dfu-util/src/sam7dfu.c
index 536b2e1..eff3f48 100644
--- a/src/host/dfu-util/src/sam7dfu.c
+++ b/src/host/dfu-util/src/sam7dfu.c
@@ -108,6 +108,13 @@ int sam7dfu_do_dnload(struct usb_dev_handle *usb_handle,
int interface,
#if 0
read(fd, DFU_HDR);
#endif
+ printf(" |");
+ {
+ int i;
+ for (i=0; i< PROGRESS_BAR_WIDTH; i++)
+ printf("-");
+ printf("|\n");
+ }
printf("Starting download: [");
fflush(stdout);
while (bytes_sent < st.st_size /* - DFU_HDR */) {
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
--- End Message ---
--- Begin Message ---
http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=1225
------- Additional Comments From [EMAIL PROTECTED] 2008-02-12 00:38 -------
Created an attachment (id=527)
-->
(http://bugzilla.openmoko.org/cgi-bin/bugzilla/attachment.cgi?id=527&action=view)
progress bar patch
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
--- End Message ---
--- Begin Message ---
http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=1194
------- Additional Comments From [EMAIL PROTECTED] 2008-02-12 01:14 -------
Created an attachment (id=528)
-->
(http://bugzilla.openmoko.org/cgi-bin/bugzilla/attachment.cgi?id=528&action=view)
sdl test app embedded in its OE recipe
SDL Test app and OE recipe to build it.
Run it and you will see how the painted block follows the touched area of the
screen. It will all be nice until you touch any of the borders.
With this test app I was able to observe the following (IMHO wrong) behavior:
If you touch the screen with the stylus at the upper border the cursor block
will move quickly towards the left or right end depending on whether you are on
the left or right half of it. If you now move the stylus to the other side the
cursor's movement will turn as well and will soon crash into the other end.
Analogus behavior can be observed with all the other borders.
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
--- End Message ---
--- Begin Message ---
http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=1226
Summary: Support USSD messages, e.g. for "remaining airtime"
checks
Product: OpenMoko
Version: current svn head
Platform: Neo1973
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: gsmd
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]
CC: [email protected]
gsmd and other related applications should support USSD (Unstructured
Supplementary Service Data) messages from the carrier. This protocol is used
with some prepaid plans to check the remaining balance. For example, with Fido
Prepaid (Canada) I dial "*225" and get a USSD response indicating the answer:
AT+CUSD=1
OK
ATD*225;
OK
%CPRI: 1,2
+CUSD: 0,"Your balance is $55.15, expiring at 00:01am 15022008 (DDMMYYYY).
Refill before this date to keep your unused balance. Thank you.",15
ATH
OK
These messages may also appear when a regular call is made, e.g.:
ATD604xxxxxxx;
K
%CPRI: 1,2
+CUSD: 0,"Reminder: Airtime expires soon. Please refill to avoid losing airtime5
%CSQ: 21, 99, 2
There are probably other USSD-related functions that should be supported at some
point, but just passing these messages through to the user's GUI would be a good
start (and would be required for a "consumer-ready" phone).
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
--- End Message ---
--- Begin Message ---
[This e-mail has been automatically generated.]
You have one or more bugs assigned to you in the Bugzilla
bugsystem (http://bugzilla.openmoko.org/cgi-bin/bugzilla/) that require
attention.
All of these bugs are in the NEW state, and have not been touched
in 7 days or more. You need to take a look at them, and
decide on an initial action.
Generally, this means one of three things:
(1) You decide this bug is really quick to deal with (like, it's INVALID),
and so you get rid of it immediately.
(2) You decide the bug doesn't belong to you, and you reassign it to someone
else. (Hint: if you don't know who to reassign it to, make sure that
the Component field seems reasonable, and then use the "Reassign bug to
owner of selected component" option.)
(3) You decide the bug belongs to you, but you can't solve it this moment.
Just use the "Accept bug" command.
To get a list of all NEW bugs, you can use this URL (bookmark it if you like!):
http://bugzilla.openmoko.org/cgi-bin/bugzilla/buglist.cgi?bug_status=NEW&[EMAIL
PROTECTED]
Or, you can use the general query page, at
http://bugzilla.openmoko.org/cgi-bin/bugzilla/query.cgi.
Appended below are the individual URLs to get to all of your NEW bugs that
haven't been touched for a week or more.
You will get this message once a day until you've dealt with these bugs!
http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=934
http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=935
http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=1012
http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=1081
http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=1107
http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=1127
http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=1133
http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=1136
http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=1158
http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=1162
http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=1189
http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=1197
http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=1199
http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=1200
http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=1201
http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=1206
http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=1212
http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=1214
http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=1215
http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=1216
http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=1217
http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=1218
--- End Message ---
_______________________________________________
buglog mailing list
[email protected]
http://lists.openmoko.org/mailman/listinfo/buglog