mailer | 1 Mar 2008 01:36
Favicon

bagder: r16460 - trunk/docs

Date: 2008-03-01 01:36:08 +0100 (Sat, 01 Mar 2008)
New Revision: 16460

Log Message:
removed FAQ, hopelessly outdated and better kept and maintained in the wiki

Removed:
   trunk/docs/FAQ
Modified:
   trunk/docs/FILES

Deleted: trunk/docs/FAQ
===================================================================
--- trunk/docs/FAQ	2008-02-29 23:27:55 UTC (rev 16459)
+++ trunk/docs/FAQ	2008-03-01 00:36:08 UTC (rev 16460)
 <at>  <at>  -1,770 +0,0  <at>  <at> 
-Q1. What is a FAQ?
-A1. A rare small animal of the species 'Textius Electronicus'. It is known for
-    its helpful attitude and vicious misspellings.
-
-Q2. Okay, fine, what is _this_ FAQ?
-A2. This FAQ is for questions (that we have answers to) that have been asked
-    repeatedly either in emails or on IRC.
-
-Q3. What is Rockbox?  What is it's purpose?
-A3. The purpose of this project is to write an Open Source replacement 
-    firmware for the Archos Jukebox 6000, Studio 20 and Recorder MP3 players.
-
-Q4. I want to write code for my Archos, how do I proceed?
-A4. Our guide on first time (http://www.rockbox.org/docs/firsttime.html) 
(Continue reading)

mailer | 1 Mar 2008 11:47
Favicon

amiconn: r16461 - trunk/apps

Date: 2008-03-01 11:47:21 +0100 (Sat, 01 Mar 2008)
New Revision: 16461

Log Message:
Always dump the identify info as big endian for readability and consistency.

Modified:
   trunk/apps/debug_menu.c

Modified: trunk/apps/debug_menu.c
===================================================================
--- trunk/apps/debug_menu.c	2008-03-01 00:36:08 UTC (rev 16460)
+++ trunk/apps/debug_menu.c	2008-03-01 10:47:21 UTC (rev 16461)
 <at>  <at>  -26,6 +26,7  <at>  <at> 
 #include "debug_menu.h"
 #include "kernel.h"
 #include "sprintf.h"
+#include "structec.h"
 #include "action.h"
 #include "debug.h"
 #include "thread.h"
 <at>  <at>  -1882,7 +1883,11  <at>  <at> 
     int fd = creat("/identify_info.bin");
     if(fd >= 0)
     {
+#ifdef ROCKBOX_LITTLE_ENDIAN
+        ecwrite(fd, ata_get_identify(), SECTOR_SIZE/2, "s", true);
+#else
         write(fd, ata_get_identify(), SECTOR_SIZE);
+#endif
(Continue reading)

mailer | 1 Mar 2008 14:42
Favicon

bluebrother: r16462 - trunk/rbutil/rbutilqt

Date: 2008-03-01 14:42:14 +0100 (Sat, 01 Mar 2008)
New Revision: 16462

Log Message:
Fix voicefile / talkfile generation windows not updating the displayed settings if the user used the
"change" button.

Modified:
   trunk/rbutil/rbutilqt/createvoicewindow.cpp
   trunk/rbutil/rbutilqt/createvoicewindow.h
   trunk/rbutil/rbutilqt/installtalkwindow.cpp
   trunk/rbutil/rbutilqt/installtalkwindow.h

Modified: trunk/rbutil/rbutilqt/createvoicewindow.cpp
===================================================================
--- trunk/rbutil/rbutilqt/createvoicewindow.cpp	2008-03-01 10:47:21 UTC (rev 16461)
+++ trunk/rbutil/rbutilqt/createvoicewindow.cpp	2008-03-01 13:42:14 UTC (rev 16462)
 <at>  <at>  -36,7 +36,7  <at>  <at> 
     Config *cw = new Config(this,4);
     cw->setSettings(settings);
     cw->show();
-    connect(cw, SIGNAL(settingsUpdated()), this, SIGNAL(settingsUpdated()));
+    connect(cw, SIGNAL(settingsUpdated()), this, SLOT(settingsUpdated()));
 }

 void CreateVoiceWindow::accept()
 <at>  <at>  -58,7 +58,6  <at>  <at> 
     voicecreator->setMountPoint(settings->mountpoint());
     voicecreator->setTargetId(settings->curTargetId());
     voicecreator->setLang(lang);
(Continue reading)

mailer | 1 Mar 2008 14:52
Favicon

bluebrother: r16463 - trunk/rbutil/rbutilqt

Date: 2008-03-01 14:52:02 +0100 (Sat, 01 Mar 2008)
New Revision: 16463

Log Message:
httpget class: if a request is cancelled before a response is available give a hint about this instead of
returning a nonsense response value.

Modified:
   trunk/rbutil/rbutilqt/httpget.cpp

Modified: trunk/rbutil/rbutilqt/httpget.cpp
===================================================================
--- trunk/rbutil/rbutilqt/httpget.cpp	2008-03-01 13:42:14 UTC (rev 16462)
+++ trunk/rbutil/rbutilqt/httpget.cpp	2008-03-01 13:52:02 UTC (rev 16463)
 <at>  <at>  -32,6 +32,10  <at>  <at> 
     outputToBuffer = true;
     cached = false;
     getRequest = -1;
+    // if a request is cancelled before a reponse is available return some
+    // hint about this in the http response instead of nonsense.
+    response = -1;
+
     connect(&http, SIGNAL(done(bool)), this, SLOT(httpDone(bool)));
     connect(&http, SIGNAL(dataReadProgress(int, int)), this, SLOT(httpProgress(int, int)));
     connect(&http, SIGNAL(requestFinished(int, bool)), this, SLOT(httpFinished(int, bool)));

_______________________________________________
rockbox-cvs mailing list
rockbox-cvs <at> cool.haxx.se
http://cool.haxx.se/cgi-bin/mailman/listinfo/rockbox-cvs
(Continue reading)

mailer | 1 Mar 2008 14:58
Favicon

bluebrother: r16464 - trunk/rbutil/rbutilqt

Date: 2008-03-01 14:58:18 +0100 (Sat, 01 Mar 2008)
New Revision: 16464

Log Message:
oops, removed a bit too much.

Modified:
   trunk/rbutil/rbutilqt/createvoicewindow.h

Modified: trunk/rbutil/rbutilqt/createvoicewindow.h
===================================================================
--- trunk/rbutil/rbutilqt/createvoicewindow.h	2008-03-01 13:52:02 UTC (rev 16463)
+++ trunk/rbutil/rbutilqt/createvoicewindow.h	2008-03-01 13:58:18 UTC (rev 16464)
 <at>  <at>  -33,6 +33,7  <at>  <at> 
     public:
         CreateVoiceWindow(QWidget *parent = 0);
         void setSettings(RbSettings* sett);
+        void setProxy(QUrl proxy){m_proxy = proxy;}

     public slots:
         void accept(void);
 <at>  <at>  -44,6 +45,7  <at>  <at> 
         Ui::CreateVoiceFrm ui;
         ProgressLoggerGui* logger;
         RbSettings* settings;
+        QUrl m_proxy;
 };

 #endif

(Continue reading)

mailer | 1 Mar 2008 17:33
Favicon

gevaerts: r16465 - trunk/firmware/target/arm

Date: 2008-03-01 17:33:54 +0100 (Sat, 01 Mar 2008)
New Revision: 16465

Log Message:
remove the #ifdef CONFIG_CPU == PP5020 around DEV_INIT2 |= INIT_USB. It shouldn't be needed

Modified:
   trunk/firmware/target/arm/usb-fw-pp502x.c

Modified: trunk/firmware/target/arm/usb-fw-pp502x.c
===================================================================
--- trunk/firmware/target/arm/usb-fw-pp502x.c	2008-03-01 13:58:18 UTC (rev 16464)
+++ trunk/firmware/target/arm/usb-fw-pp502x.c	2008-03-01 16:33:54 UTC (rev 16465)
 <at>  <at>  -44,9 +44,7  <at>  <at> 
     DEV_RS |= DEV_USB1;
     DEV_RS &=~DEV_USB1;

-#if CONFIG_CPU == PP5020
     DEV_INIT2 |= INIT_USB;
-#endif

     while ((inl(0x70000028) & 0x80) == 0);
     outl(inl(0x70000028) | 0x2, 0x70000028);
 <at>  <at>  -55,9 +53,7  <at>  <at> 
     /* disable USB-devices until USB is detected via GPIO */
     DEV_EN &= ~DEV_USB0;
     DEV_EN &= ~DEV_USB1;
-#if CONFIG_CPU == PP5020
     DEV_INIT2 &= ~INIT_USB;
-#endif
(Continue reading)

mailer | 1 Mar 2008 18:52
Favicon

peter: r16466 - trunk/firmware/target/coldfire/iriver

Date: 2008-03-01 18:52:26 +0100 (Sat, 01 Mar 2008)
New Revision: 16466

Log Message:
code police: add some missing trailing zeroes to remove possible confusion. No functional change.

Modified:
   trunk/firmware/target/coldfire/iriver/ata-iriver.c

Modified: trunk/firmware/target/coldfire/iriver/ata-iriver.c
===================================================================
--- trunk/firmware/target/coldfire/iriver/ata-iriver.c	2008-03-01 16:33:54 UTC (rev 16465)
+++ trunk/firmware/target/coldfire/iriver/ata-iriver.c	2008-03-01 17:52:26 UTC (rev 16466)
 <at>  <at>  -36,10 +36,10  <at>  <at> 
 void ata_enable(bool on)
 {
     if(on)
-        and_l(~0x0040000, &GPIO_OUT);
+        and_l(~0x00040000, &GPIO_OUT);
     else
-        or_l(0x0040000, &GPIO_OUT);
-    
+        or_l(0x00040000, &GPIO_OUT);
+
     or_l(0x00040000, &GPIO_ENABLE);
     or_l(0x00040000, &GPIO_FUNCTION);
 }
 <at>  <at>  -53,11 +53,11  <at>  <at> 
 {
 #ifdef HAVE_ATA_LED_CTRL
(Continue reading)

mailer | 1 Mar 2008 20:28
Favicon

gevaerts: r16467 - trunk/firmware/usbstack

Date: 2008-03-01 20:28:09 +0100 (Sat, 01 Mar 2008)
New Revision: 16467

Log Message:
only initialize class drivers that are actually enabled. This is needed for usb-storage because it grabs
the audio buffer during usb_storage_init(), which stops playback. It's probably also the right thing to
do for other drivers.

Modified:
   trunk/firmware/usbstack/usb_core.c

Modified: trunk/firmware/usbstack/usb_core.c
===================================================================
--- trunk/firmware/usbstack/usb_core.c	2008-03-01 17:52:26 UTC (rev 16466)
+++ trunk/firmware/usbstack/usb_core.c	2008-03-01 19:28:09 UTC (rev 16467)
 <at>  <at>  -385,15 +385,18  <at>  <at> 
      * won't be used. This simplifies other logic (i.e. we don't need to know
      * yet which drivers will be enabled */
 #ifdef USB_STORAGE
-    usb_storage_init();
+    if(usb_core_storage_enabled)
+        usb_storage_init();
 #endif

 #ifdef USB_SERIAL
-    usb_serial_init();
+    if(usb_core_serial_enabled)
+        usb_serial_init();
 #endif

(Continue reading)

mailer | 1 Mar 2008 22:40
Favicon

amiconn: r16468 - trunk/firmware/target/arm

Date: 2008-03-01 22:40:33 +0100 (Sat, 01 Mar 2008)
New Revision: 16468

Log Message:
Minor cleanup and a clarification.

Modified:
   trunk/firmware/target/arm/usb-fw-pp502x.c

Modified: trunk/firmware/target/arm/usb-fw-pp502x.c
===================================================================
--- trunk/firmware/target/arm/usb-fw-pp502x.c	2008-03-01 19:28:09 UTC (rev 16467)
+++ trunk/firmware/target/arm/usb-fw-pp502x.c	2008-03-01 21:40:33 UTC (rev 16468)
 <at>  <at>  -48,7 +48,7  <at>  <at> 

     while ((inl(0x70000028) & 0x80) == 0);
     outl(inl(0x70000028) | 0x2, 0x70000028);
-    udelay(0x186A0);
+    udelay(100000);

     /* disable USB-devices until USB is detected via GPIO */
     DEV_EN &= ~DEV_USB0;
 <at>  <at>  -68,9 +68,7  <at>  <at> 
     if (on) {
         /* if USB is detected, re-enable the USB-devices, otherwise make sure it's disabled */
         DEV_EN |= DEV_USB0;
-        DEV_RS &=~DEV_USB0;
         DEV_EN |= DEV_USB1;
-        DEV_RS &=~DEV_USB1;
         DEV_INIT2 |= INIT_USB;
(Continue reading)

mailer | 1 Mar 2008 23:55
Favicon

roolku: r16469 - in trunk/apps/plugins: . bitmaps/mono bitmaps/native chessbox midi mpegplayer reversi sudoku

Date: 2008-03-01 23:55:09 +0100 (Sat, 01 Mar 2008)
New Revision: 16469

Log Message:
M:Robe 100: add button definition/bitmaps to plugins and enable compilation

Added:
   trunk/apps/plugins/bitmaps/mono/rockblox_background.160x128x1.bmp
   trunk/apps/plugins/bitmaps/native/sudoku_inverse.160x128x1.bmp
   trunk/apps/plugins/bitmaps/native/sudoku_normal.160x128x1.bmp
   trunk/apps/plugins/bitmaps/native/sudoku_start.160x128x1.bmp
Modified:
   trunk/apps/plugins/SOURCES
   trunk/apps/plugins/SUBDIRS
   trunk/apps/plugins/battery_bench.c
   trunk/apps/plugins/bitmaps/mono/SOURCES
   trunk/apps/plugins/bitmaps/native/SOURCES
   trunk/apps/plugins/blackjack.c
   trunk/apps/plugins/bounce.c
   trunk/apps/plugins/brickmania.c
   trunk/apps/plugins/calculator.c
   trunk/apps/plugins/chessbox/chessbox.c
   trunk/apps/plugins/chessbox/chessbox_pgn.c
   trunk/apps/plugins/chessclock.c
   trunk/apps/plugins/chip8.c
   trunk/apps/plugins/chopper.c
   trunk/apps/plugins/cube.c
   trunk/apps/plugins/dict.c
   trunk/apps/plugins/disktidy.c
   trunk/apps/plugins/fireworks.c
(Continue reading)


Gmane