This image is the top of the content box. Unfortunately, there is no information-based reason for this div to be here. It's just here for design reasons. Sorry.
Go Back   MisticRiver :: For iriver Enthusiasts > All things Rockbox > ROCKbox Forums > ROCKbox for H3xx Series
Home Forums Register FAQ Search Today's Posts Mark Forums Read


Welcome to the misticriver forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.
Reply
 
LinkBack Thread Tools Display Modes
  #81 (permalink)  
Old December 21st, 2005, 01:15 AM
Misticriver's evil monkey!
 
Join Date: Sep 2005
Location: Los Angelos, California
Posts: 1,063
is the screen on rockbox, the one thats plain light blue and thats it, the same kind of code as those old crappy 2-bit or something green and black computers? i mean, my school still uses those for processing the student absenses (no i dont want my h320 to do that)
__________________
My only useful thread on MR... H3xx all you need to know guide!Rockbox now included!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #82 (permalink)  
Old December 21st, 2005, 01:18 AM
Born Again Mistic
 
Join Date: Sep 2005
Location: Melbourne, AUS
Posts: 1,045
We can have three things:

Form over function
Function over Form

But whats even better? Function and form!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #83 (permalink)  
Old December 21st, 2005, 10:23 AM
Misticriver's evil monkey!
 
Join Date: Sep 2005
Location: Los Angelos, California
Posts: 1,063
Quote:
Originally Posted by swunk
We can have three things:

Form over function
Function over Form

But whats even better? Function and form!
lol, thats why we are all trying to make it all colorful!

will anyone help me? i got the compiling program to work but i cant find how to put color....i'll do more research until an answer pops.



EDIT: i dont think i know enough about this to be able to even try (but i did anyway). I'm only a kid , i finnaly figured out how to get the program to compile to run correctly, but now i cant do anything to make rockbox change in any way. Can anyone help?
__________________
My only useful thread on MR... H3xx all you need to know guide!Rockbox now included!

Last edited by savagenator : December 21st, 2005 at 10:37 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #84 (permalink)  
Old December 21st, 2005, 11:10 AM
Eager Mistic Beaver
 
Join Date: Jul 2005
Location: Italy, Trieste
Posts: 233
Send a message via MSN to marco
Quote:
(example: my school can't say christmas break)
ur school sux. useless christmas.
3.14159265:ur wps scares me wit all that colors i could get an epilectyc crysis or whatever its called
__________________
MARCO - former H320 (became H302) and now SONY NW-A808 owner (I know, I left iRiver, but you know...)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #85 (permalink)  
Old December 21st, 2005, 11:19 AM
Hoping For A Cool Title
 
Join Date: May 2005
Posts: 78
You mean epilepsy?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #86 (permalink)  
Old December 21st, 2005, 11:25 AM
Eager Mistic Beaver
 
Join Date: Jul 2005
Location: Italy, Trieste
Posts: 233
Send a message via MSN to marco
exactly. did u get it too, after seeing the thumbnail in the first page?
__________________
MARCO - former H320 (became H302) and now SONY NW-A808 owner (I know, I left iRiver, but you know...)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #87 (permalink)  
Old December 21st, 2005, 01:58 PM
Hoping For A Cool Title
 
Join Date: May 2005
Posts: 78
I felt a twitch and a dribble of drool, yes.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #88 (permalink)  
Old December 21st, 2005, 02:12 PM
Amorphous Mutating Mistic
 
Join Date: Aug 2005
Location: Scotland
Posts: 643
Bah, its not that bad

I have been trying to get colour bitmaps to work with the wps, but as of yet I have had no luck. My excuses are
1) my lack of knolage of c programming and the storage of bitmaps
2) I have moved back to my parents home over christmas so I am using an old laptop and running everything off my iriver. as such I am not used to the keyboard etc...
3) I am just lazy

I will keep trying though

EDIT- look here for more info [Patch] Color Changer
__________________
Pi() - My programing is only as good as my speling

Last edited by 3.14159265 : January 2nd, 2006 at 01:37 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #89 (permalink)  
Old December 21st, 2005, 07:42 PM
reddshack's Avatar
The Apprentice
 
Join Date: Mar 2004
Location: UVU.Provo, UT
Posts: 1,710
Send a message via AIM to reddshack Send a message via MSN to reddshack Send a message via Yahoo to reddshack
If people really want I can post my build for them to load. The only problem with that is that the source changes daily and.... if you learn to compile rockbox on your own then you can have the most up to date version with whatever color settings.

Here are my values for the black backgroud and red text I posted a few posts up. I added to the comment tags so that I remember what's going on
Code:
#define LCD_BLACK      LCD_RGBPACK(0, 0, 0)
#define LCD_DARKGRAY   LCD_RGBPACK(85, 85, 85)
#define LCD_LIGHTGRAY  LCD_RGBPACK(170, 170, 170)
#define LCD_WHITE      LCD_RGBPACK(255, 255, 255)
#define LCD_DEFAULT_FG LCD_RGBPACK(255, 0, 0) /* LCD_BLACK normally */
#define LCD_DEFAULT_BG LCD_RGBPACK(0, 0, 0) /* rockbox blue 182, 198, 229 */
*Notice that I have the RGBPACK on every color value now. Even though right now there is redundancy (with black), if I ever want to have different colors for each different value, the RGBPACK is already written there for me to change the colors!

I understand that there are people who can't compile their own builds because they don't understand it. If people reaaally want, then I can attach it for download.
__________________
reddshack.com --> easily amused
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #90 (permalink)  
Old December 21st, 2005, 07:47 PM
Hoping For A Cool Title
 
Join Date: May 2005
Posts: 78
With a smiddgen of Perl, you can just write some code that will download the new source, apply the code, compile, then send to iRiver.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -7. The time now is 06:48 PM.


Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.1.0
This image is the bottom of the content box. Unfortunately, there is no information-based reason for this div to be here. It's just here for design reasons. Sorry.