00:01:13 | Stevie[FP] | ohhh |
00:01:22 | Stevie[FP] | i should put a breakpoint on this, it's easy to get lost :P |
00:01:28 | Stevie[FP] | Unrecognized ATA command 0xc4! |
00:01:59 | thu | what cpu is that? |
00:02:11 | Zagor | c4 is READ MULTIPLE |
00:02:37 | Zagor | thu: hitachi sh-1 |
00:02:46 | thu | never heard of it |
00:02:55 | Zagor | it's in your archos :) |
00:03:34 | * | thu searches for a big hammer |
00:12:21 | Stevie[FP] | lol |
00:12:34 | Stevie[FP] | wtf |
00:12:40 | Stevie[FP] | it issues a read multiple for 1 sector |
00:12:41 | Stevie[FP] | :-o |
00:13:15 | Stevie[FP] | good it uses lba |
00:13:28 | Stevie[FP] | (which makes sense, as CHS is useless after about 2gb) |
00:13:32 | Zagor | yup |
00:13:57 | Stevie[FP] | yet I wouldn't have put CHS past Archos ;) |
00:14:07 | Zagor | hehe |
00:14:10 | Stevie[FP] | they'd try it! |
00:17:56 | Stevie[FP] | ack |
00:18:00 | Stevie[FP] | conflicting standards |
00:18:48 | Stevie[FP] | hmm |
00:18:51 | Stevie[FP] | omg |
00:18:54 | Stevie[FP] | you'll NEVER believe this |
00:19:10 | * | Zagor braces |
00:19:11 | Stevie[FP] | ... their startup code appears to violate ata spec |
00:22:35 | Zagor | how? |
00:22:49 | Stevie[FP] | granted, I'm not 100% certain, plus I don't know which version of the spec they worked against |
00:23:13 | Stevie[FP] | the spec says |
00:23:38 | Stevie[FP] | if bit 8 of IDENTIFY DEVICE word 59 is zero, they must issue a SET MULTIPLE command before issuing READ MULTIPLE |
00:23:46 | Stevie[FP] | seeing as how they never actually read the data from the IDENTIFY DEVICE |
00:24:00 | Stevie[FP] | they probably can't know for certain whether or not that bit is set or clear |
00:24:01 | Stevie[FP] | :P |
00:24:47 | Zagor | sounds like they simply never tested on a disk without multiple capability. |
00:25:33 | Stevie[FP] | or one that has a default multiple sector setting |
00:25:44 | * | Stevie[FP] hopes '1' is a good default |
00:26:32 | * | Stevie[FP] runs the cpu |
00:29:57 | Stevie[FP] | wtf |
00:36:16 | Stevie[FP] | woah |
00:36:19 | Stevie[FP] | what's on 0x0e? |
00:37:18 | MT | hmm |
00:37:37 | MT | fd = open("/.rockbox/worm_settings",O_WRONLY | O_TRUNC | O_CREAT); |
00:37:41 | MT | whats wrong with that |
00:37:57 | Stevie[FP] | dunno |
00:38:00 | Zagor | Stevie[FP]: bus access (CS6/ |
00:38:05 | MT | not creating the file :/ |
00:38:28 | Zagor | MT: what return code do you get? |
00:38:57 | MT | dunno |
00:39:09 | MT | is there some handy debug print statement for the ui |
00:39:30 | Zagor | is this the uisimulator? |
00:39:44 | MT | yes |
00:39:58 | Zagor | did you create the .rockbox directory? |
00:40:02 | MT | yes |
00:40:20 | Zagor | you can use the DEBUGF macro to print stuff to the console |
00:40:33 | Stevie[FP] | Zagor: i thought that was 0x06 |
00:40:34 | MT | can it take sprintf formats? |
00:40:53 | jzoss_ | MT: or you can try splash(5*HZ, 0,true, "rc: %d'", fp) |
00:41:05 | Zagor | MT: yes |
00:41:24 | Zagor | Stevie[FP]: yes, they both use cs6. see p106 in the sh7032 hardware manual |
00:41:50 | MT | We open the real file 'archos/.rockbox/worm_settings' |
00:41:50 | MT | fd<0: -1 |
00:42:29 | Zagor | MT: try printing errno too. the simulators use the operating system file code |
00:42:39 | MT | okies |
00:43:01 | Stevie[FP] | ahhhhh |
00:43:10 | Stevie[FP] | 0x06 == for dma |
00:43:11 | Stevie[FP] | err |
00:43:14 | Stevie[FP] | 0x06 == for 8-bit |
00:43:19 | Stevie[FP] | 0x0e == for 16-bit (data) |
00:44:38 | | Quit _aLF ("bye") |
00:53:15 | Stevie[FP] | hmm |
00:53:18 | Stevie[FP] | ata 0xc6 |
00:53:28 | Stevie[FP] | so they ARE doing it right, in fakt |
00:54:13 | elinenbe | Stevie[FP]: what are you working on? |
00:56:06 | Zagor | an archos emulator |
00:56:27 | MT | hmm |
00:56:42 | MT | the error is ENOENT (no such file) |
00:56:52 | MT | i guess i must have my flags in the wrong order? |
00:57:15 | Zagor | MT: order is irrelevant, since they are ORed together before they are passed to the function |
00:57:19 | Stevie[FP] | okay |
00:57:35 | Stevie[FP] | 0x0902d2cc <- ata read buffer |
00:58:26 | Stevie[FP] | 0x0902d4cc <- end of ata read buffer |
00:58:48 | Stevie[FP] | i wonder what's @F200 |
00:59:22 | | Join midknight2k3 [0] (LaLaLaLaLa@ACC0ADBE.ipt.aol.com) |
00:59:31 | midknight2k3 | heloo |
00:59:38 | | Quit mecraw ("Trillian (http://www.ceruleanstudios.com)") |
01:00 |
01:00:19 | Stevie[FP] | mmh |
01:01:04 | elinenbe | not just a simulator, but a realy emulator? How is it going? |
01:01:47 | Stevie[FP] | very poorly. |
01:01:59 | midknight2k3 | Ut Oh |
01:02:00 | Zagor | i wouldn't say that |
01:02:07 | Stevie[FP] | I would |
01:02:15 | Stevie[FP] | I'm locking up and I don't know why |
01:02:18 | midknight2k3 | lol |
01:02:21 | Stevie[FP] | it's comparing some value to 100 |
01:03:45 | Stevie[FP] | mmmh. |
01:06:05 | Zagor | Stevie[FP]: well, you've still come a long way. successfully emulating the cpu and lcd is quite spectacular |
01:06:06 | | Quit |nsomniac (Read error: 104 (Connection reset by peer)) |
01:06:15 | midknight2k3 | it's very neat |
01:06:26 | Stevie[FP] | Changelog for 1.51.41: |
01:06:26 | Stevie[FP] | (6/11/2003 4:24PM) |
01:06:26 | Stevie[FP] | - Changed 'Demo Mode' parameter to 'Special Mode'. |
01:06:26 | DBUG | Sent KICK Stevie[FP] to server |
01:06:26 | Stevie[FP] | 0=Normal (as was before) |
01:06:26 | Stevie[FP] | 1=Demo mode (as was before) |
01:06:26 | Kick | (#rockbox Stevie[FP] :No flooding!) by logbot!~bjst@labb.contactor.se |
01:06:28 | | Join Stevie[FP] [0] (~whatsit2u@65.114.136.196) |
01:06:36 | midknight2k3 | HAHAHAHA |
01:06:37 | Stevie[FP] | ewps |
01:06:38 | midknight2k3 | juyst kidding |
01:06:41 | midknight2k3 | and sorry |
01:06:41 | Stevie[FP] | the CPU and LCD were easy |
01:06:45 | Stevie[FP] | they're documented :P |
01:06:49 | Stevie[FP] | ok |
01:06:49 | Zagor | hehe |
01:06:55 | Stevie[FP] | after writing the '3' in 'Ver : 4.53' |
01:07:20 | Stevie[FP] | it sets global_X (at 0x0900f200) to 0 |
01:09:15 | Stevie[FP] | after issuing SET MULTIPLE |
01:09:29 | midknight2k3 | Correct. |
01:09:31 | Stevie[FP] | it reads from there |
01:09:46 | Stevie[FP] | global_Y (somewhere else) += global_X |
01:09:53 | Stevie[FP] | and now where I'm stuck |
01:10:21 | Stevie[FP] | it loops waiting until global_X < glo |
01:10:23 | Stevie[FP] | hmmmmmm |
01:10:25 | midknight2k3 | MT, still working on wormlet patch? |
01:10:38 | MT | no |
01:10:41 | MT | swearing at it |
01:10:45 | midknight2k3 | lol |
01:10:51 | midknight2k3 | not turning out i guess? |
01:11:01 | Stevie[FP] | thats the annoying thing about software |
01:11:02 | Stevie[FP] | you can't kick it |
01:11:05 | Stevie[FP] | you can only swear at it |
01:11:10 | midknight2k3 | you can delete it |
01:11:13 | MT | ah no, its finished, it just wont save the settings as id like |
01:11:19 | midknight2k3 | oh |
01:11:21 | midknight2k3 | coool! |
01:11:25 | midknight2k3 | i wanna see! lol |
01:11:26 | | Join Yeft [0] (Yeft@AC995D3B.ipt.aol.com) |
01:11:34 | Yeft | hi chan |
01:11:59 | midknight2k3 | hey hey |
01:12:02 | midknight2k3 | its you |
01:12:06 | Zagor | Stevie[FP]: i suppose global_X is not the same as global_long in the isr? |
01:12:15 | midknight2k3 | get your fm recorder yet? |
01:12:19 | jzoss_ | off for dinner... cya later! |
01:12:23 | Yeft | still no fm recorder−−-j and r messed it up... |
01:12:33 | midknight2k3 | aw man :( |
01:12:33 | | Quit jzoss_ ("Trillian (http://www.ceruleanstudios.com)") |
01:12:35 | Yeft | well i did kinda |
01:12:42 | midknight2k3 | kinda? |
01:12:44 | Yeft | trillian ....ewww lol |
01:12:54 | midknight2k3 | haha |
01:13:03 | Yeft | lol i put in an address to ship it to that wasnt the billing address |
01:13:08 | Yeft | and they had a prob w/ that |
01:13:10 | Stevie[FP] | AHA |
01:13:18 | midknight2k3 | got it steve? |
01:13:28 | midknight2k3 | poor you lol |
01:13:36 | midknight2k3 | just should have gone to BESTBUY |
01:13:40 | Stevie[FP] | 0x0900da5c: 0x2100 mov.b r0, @r1 ; (0x05ffff00) <- 01(write 0x00000001 to unknown OCP reg 0x100) |
01:13:45 | Yeft | i know i'm trying to crakc the passwords on my own computer, *evil girn* |
01:13:52 | midknight2k3 | ...i get it! not! |
01:13:55 | Yeft | grin* |
01:13:57 | midknight2k3 | haha |
01:13:59 | Yeft | OH!!!!!!!!!! |
01:14:04 | Stevie[FP] | ocp reg 0x100 == timer |
01:14:10 | Yeft | right |
01:14:22 | midknight2k3 | wha are you trying to do stevie? |
01:14:45 | MT | same thing he does every night; try to take over the world! |
01:14:45 | * | Stevie[FP] sees about implementing timer #0 |
01:14:50 | Yeft | == i know what that means! its a logical = and not a C++ |
01:14:55 | Yeft | errr C* |
01:15:04 | midknight2k3 | hmm |
01:15:06 | Yeft | right? |
01:15:10 | Stevie[FP] | ??? |
01:15:16 | midknight2k3 | timer #0? sounds great! |
01:15:23 | Yeft | == is a logical equal |
01:15:28 | Yeft | as in this = this |
01:15:46 | Yeft | correct? |
01:15:55 | Yeft | Oui! j'etudie beacoup n'estpas |
01:16:44 | Zagor | Yeft: == is for comparison, = is for assignment |
01:16:49 | MT | >200 people in #c, i go ask my question and they all go quiet :/ |
01:16:59 | Yeft | right...... |
01:17:03 | midknight2k3 | lol |
01:17:06 | Yeft | lol! |
01:17:15 | midknight2k3 | i hate when people do that |
01:17:24 | Yeft | 201 :P |
01:17:41 | midknight2k3 | people keep chatting and on and on then you ask one little thing or mention one thing and then everyone shuts up for the following ten minutes |
01:18:18 | MiChAeLoL | ;p; |
01:18:20 | MiChAeLoL | lol |
01:18:26 | MiChAeLoL | should i ask a question in there? |
01:18:35 | midknight2k3 | whatever lol |
01:18:56 | MiChAeLoL | lol |
01:19:05 | MiChAeLoL | they shut up |
01:19:30 | MiChAeLoL | hahaha no one has said anything yet in there |
01:19:41 | midknight2k3 | ha ha hahah |
01:19:44 | Zagor | bed time, bye guys |
01:19:46 | MiChAeLoL | still quiet |
01:19:47 | MiChAeLoL | lol |
01:19:48 | | Quit Zagor ("Client exiting") |
01:19:54 | midknight2k3 | im guessing itll be like two more mins before anyone says a peeop |
01:20:09 | MiChAeLoL | someone just said "itself." and then some other person asked something |
01:20:17 | midknight2k3 | lol |
01:20:22 | MiChAeLoL | otherwise still quiet ..lol it worked |
01:20:28 | midknight2k3 | where are you? what server? |
01:20:34 | midknight2k3 | freenode? #c? |
01:20:34 | MiChAeLoL | "<MiChAeLoL> so what does 00006x0043043fe stand for?" |
01:20:36 | MiChAeLoL | yea |
01:20:56 | MiChAeLoL | 206 people and its still quiet |
01:21:00 | midknight2k3 | haha |
01:21:03 | MiChAeLoL | lol |
01:21:13 | MiChAeLoL | its so nerdy its not even funny |
01:21:29 | MiChAeLoL | their analyzing my bs question |
01:23:25 | MiChAeLoL | haha |
01:23:46 | Yeft | base 33? |
01:23:50 | Yeft | lol! |
01:23:57 | Yeft | i have trouble with base 6 |
01:24:05 | midknight2k3 | whatever |
01:24:10 | MiChAeLoL | hehe |
01:24:15 | MiChAeLoL | i left #c already |
01:24:32 | Yeft | me2 |
01:24:43 | MiChAeLoL | who the hell is "helper"? |
01:24:48 | MiChAeLoL | <helper> hi MiChAeLoL , |
01:24:49 | MiChAeLoL | <helper> need a hacked paypal accounts for free ? |
01:24:49 | MiChAeLoL | <helper> go to www.freepaypal.ht.st and get it now! |
01:25:19 | MiChAeLoL | its #c++ now |
01:25:37 | MiChAeLoL | never mind, im in the future of #gcc |
01:25:53 | MiChAeLoL | lol the topic is "* Topic is 'Let's talk compiler guts!' |
01:25:55 | midknight2k3 | WHATEVER |
01:26:10 | midknight2k3 | getting that wromlet patch working MT? lol |
01:27:03 | * | MiChAeLoL wants to eat space invaders |
01:27:31 | * | midknight2k3 wants to have that wormlet patch |
01:27:41 | * | MiChAeLoL wants both, and a search feature |
01:28:03 | * | midknight2k3 saw a patch that added a search feature |
01:28:04 | * | MiChAeLoL is gunna talk in third person, like rich rapers |
01:28:14 | * | MiChAeLoL saw that patch too |
01:28:16 | * | midknight2k3 "rich rapers"? |
01:28:37 | * | MiChAeLoL was refering to rich people that sing rap +ers |
01:28:39 | * | Tib|Away wonders when the windows 2003 server archos recorder patch is coming out, with 128 megabit color support? |
01:28:51 | * | MiChAeLoL chuckels |
01:28:59 | * | midknight2k3 shuts you up |
01:29:06 | * | MiChAeLoL is getting sick of the purple mirc font |
01:29:17 | * | Tib|Away thinks you can change it. |
01:29:18 | * | midknight2k3 let's talk normal now |
01:29:22 | * | MiChAeLoL changes to xchat |
01:29:22 | MT | shush |
01:29:24 | * | midknight2k3 agrees. |
01:29:30 | midknight2k3 | SHUTUP!!! |
01:29:33 | * | MiChAeLoL seconds that oppoinion |
01:29:35 | * | Tib|Away says,"Hello, I'm glad we are talking normal." |
01:29:40 | * | MiChAeLoL spelled that wrong |
01:29:45 | midknight2k3 | YES |
01:29:46 | midknight2k3 | SHUT |
01:29:47 | * | MiChAeLoL left to get food |
01:29:47 | midknight2k3 | UP |
01:29:48 | MiChAeLoL | UP |
01:29:54 | Tib|Away | UP |
01:29:54 | midknight2k3 | idiot |
01:29:55 | MiChAeLoL | UPCHUCKSHUT |
01:29:55 | midknight2k3 | idiot |
01:29:57 | DBUG | Sent KICK midknight2k3 to server |
01:29:57 | midknight2k3 | idiot |
01:29:57 | Kick | (#rockbox midknight2k3 :Stop repeating yourself) by logbot!~bjst@labb.contactor.se |
01:30:00 | Tib|Away | heh |
01:30:02 | | Join midknight2k3 [0] (LaLaLaLaLa@ACC0ADBE.ipt.aol.com) |
01:30:04 | * | Tib|Away laughs |
01:30:05 | MiChAeLoL | HAAHaHaHaaaHahaHaHAHAa biatch |
01:30:06 | | Join |nsomniac [0] (fuckstuck@81-29-33-248.tau.hesby-radio.no) |
01:30:08 | MiChAeLoL | lol |
01:30:11 | midknight2k3 | IDIOT LOGBOT |
01:30:16 | midknight2k3 | IDIOT LOGBOT |
01:30:19 | MiChAeLoL | kicked |
01:30:20 | MT | gah |
01:30:21 | midknight2k3 | IDIOT GAY LOGBOT |
01:30:22 | * | Tib|Away sets mode +m |
01:30:34 | MT | im sure this is a problem with the ui simulator |
01:30:36 | * | MiChAeLoL sets mode +o MiChAeLoL |
01:30:55 | * | midknight2k3 has quit IRC (Quit:"Quit") |
01:30:58 | midknight2k3 | just kidding |
01:31:03 | MiChAeLoL | so did the fm recording feature ever get fixed in rockbox? |
01:31:04 | midknight2k3 | AHAHAH |
01:31:09 | midknight2k3 | it's not broken! |
01:31:18 | MiChAeLoL | ok |
01:31:35 | MiChAeLoL | thought it was, but dont have my fm recorder yet to see (still in the mail) |
01:32:16 | midknight2k3 | it's not busted! |
01:32:21 | midknight2k3 | what's wrrrooooonggg!! |
01:32:24 | midknight2k3 | noooooooo! |
01:32:41 | MiChAeLoL | Status: In Transit |
01:32:41 | MiChAeLoL | Scheduled Delivery: Jun 13, 2003 |
01:32:44 | MiChAeLoL | :D |
01:32:48 | MiChAeLoL | 2 more days |
01:32:54 | MiChAeLoL | as long as i have it for the weekend im happy |
01:32:56 | midknight2k3 | say the same thing three times in a row |
01:33:07 | MiChAeLoL | i dont want him to ban me |
01:33:13 | MiChAeLoL | does he ban people? |
01:33:15 | midknight2k3 | he just kicks you lol |
01:33:16 | midknight2k3 | no |
01:33:22 | midknight2k3 | it's fun |
01:33:26 | MiChAeLoL | already been kicked once tho |
01:33:31 | midknight2k3 | and a dramatic way to leave the room |
01:33:31 | MiChAeLoL | and isnt 3 kicks a ban? |
01:33:37 | midknight2k3 | IVE BEEN KICKED like 6 times |
01:33:40 | MiChAeLoL | hehe |
01:33:41 | MiChAeLoL | ok |
01:33:46 | midknight2k3 | its fun |
01:33:48 | midknight2k3 | try it |
01:33:54 | MiChAeLoL | why? |
01:33:55 | MT | hmm |
01:33:58 | midknight2k3 | hmm |
01:34:01 | MT | test it on my fm |
01:34:02 | midknight2k3 | is it working?!?! |
01:34:06 | midknight2k3 | can i test it? |
01:34:06 | MT | see if it works on there |
01:34:08 | midknight2k3 | pleeeeease? |
01:34:13 | MT | what have you got? |
01:34:16 | midknight2k3 | FM |
01:34:23 | MT | blergh ok |
01:34:27 | midknight2k3 | yayayy |
01:34:31 | MT | its not finished mind |
01:34:47 | midknight2k3 | ok |
01:34:50 | MiChAeLoL | ill have an fm next fri so i hope its done by then :D |
01:34:52 | midknight2k3 | just to see WIP |
01:35:13 | * | MiChAeLoL leaves to eat |
01:35:18 | * | MiChAeLoL leaves to eat |
01:35:18 | DBUG | Sent KICK MiChAeLoL to server |
01:35:18 | * | MiChAeLoL leaves to eat |
01:35:18 | Kick | (#rockbox MiChAeLoL :Stop repeating yourself) by logbot!~bjst@labb.contactor.se |
01:35:20 | midknight2k3 | BYE MICHEAL-LOL |
01:35:23 | midknight2k3 | hahahah |
01:35:27 | Tib|Away | he eats too much |
01:35:31 | midknight2k3 | * MiChAeLoL was kicked by logbot (Stop repeating yourself) |
01:35:33 | Yeft | lol i have been kicked a multitude of times |
01:35:39 | | Join MiChAeLoL [0] (michael@12-249-226-112.client.attbi.com) |
01:35:40 | midknight2k3 | im not banned lol |
01:35:41 | midknight2k3 | * MiChAeLoL was kicked by logbot (Stop repeating yourself) |
01:35:48 | Yeft | every time my script does something stupid |
01:35:49 | MiChAeLoL | hehe |
01:35:53 | midknight2k3 | whhe |
01:35:55 | * | MiChAeLoL left |
01:35:56 | midknight2k3 | whee* |
01:36:15 | MiChAeLoL | wheeStatus: In Transit |
01:36:15 | MiChAeLoL | Scheduled Delivery: Jun 13, 2003 |
01:36:24 | * | MiChAeLoL left |
01:36:24 | midknight2k3 | lol |
01:36:25 | DBUG | Sent KICK Yeft to server |
01:36:25 | Yeft | ya know .. |
01:36:25 | Kick | (#rockbox Yeft :Colourcodes are *not* appreciated here!) by logbot!~bjst@labb.contactor.se |
01:36:25 | | Join Yeft [0] (Yeft@AC995D3B.ipt.aol.com) |
01:36:32 | midknight2k3 | haha |
01:36:34 | MiChAeLoL | lol |
01:36:35 | Yeft | i never relly got that |
01:36:36 | MiChAeLoL | hahaha |
01:36:49 | Yeft | why do i always get kicked for my color and creativity |
01:36:55 | MT | doesnt dancer have a +c ? |
01:36:59 | midknight2k3 | i want the... the wooooorrrmmlett paaaatchhh!! |
01:37:00 | MiChAeLoL | away for now |
01:37:06 | MT | shush, its building |
01:37:10 | midknight2k3 | whatever |
01:37:11 | midknight2k3 | cool |
01:37:18 | midknight2k3 | why must i shush |
01:37:22 | midknight2k3 | i said like three words |
01:37:33 | Yeft | because the more you talk the slower the build |
01:37:35 | MT | its not going to come faster .. |
01:37:41 | midknight2k3 | sorry lol |
01:37:45 | MT | ah shit |
01:37:47 | midknight2k3 | you all hate me now |
01:37:48 | Tib|Away | Irc, the multiplayer notepad. |
01:37:53 | midknight2k3 | yay! |
01:37:54 | Yeft | lol |
01:38:04 | midknight2k3 | oh no! whats wrong MT? |
01:38:20 | Tib|Away | MT, are you compiling the divx decoder/encoder as well? |
01:38:35 | MT | forgot to take out some printf's :) |
01:38:46 | Yeft | muahahaa |
01:38:48 | midknight2k3 | i hope this thing don't kill my archos! |
01:38:55 | Yeft | kill it? |
01:38:57 | Tib|Away | How/why would it kill it? |
01:39:02 | Yeft | more like melt it from the inside |
01:39:05 | midknight2k3 | yes |
01:39:10 | midknight2k3 | what... what he said |
01:39:13 | Tib|Away | The worst it can do is set on fire. |
01:39:23 | midknight2k3 | oh man! |
01:39:24 | MT | muauhaha |
01:39:32 | MT | fear the slowness of scp on a 56k |
01:39:41 | Tib|Away | scp? |
01:39:59 | MT | secure copy? |
01:40:05 | MT | part of openssh |
01:40:10 | Tib|Away | oh. |
01:41:22 | midknight2k3 | i hope it is almost builted |
01:41:32 | | Quit dw|gone (Remote closed the connection) |
01:41:33 | MT | http://mt.staff.impulsed.net/rockbox/ |
01:41:40 | midknight2k3 | yayyayya |
01:41:52 | Tib|Away | I'll try it. |
01:41:58 | Tib|Away | I have no idea how to play wormlet though. |
01:42:18 | midknight2k3 | LOL |
01:42:25 | midknight2k3 | you won't understand the significance then |
01:42:49 | Tib|Away | Is that built from the latest cvs? |
01:42:57 | midknight2k3 | i doubt it |
01:43:06 | midknight2k3 | from 2.0 prolly |
01:43:16 | midknight2k3 | yes |
01:43:20 | midknight2k3 | it's latest |
01:43:44 | Tib|Away | okay |
01:43:55 | midknight2k3 | how high does SCORE PER FOOD go? |
01:44:00 | midknight2k3 | 50 i see |
01:44:49 | | Join dw|gone [20] (dwihno@h193180246067.kommunicera.umea.se) |
01:44:52 | midknight2k3 | I LOVE IT! |
01:45:02 | midknight2k3 | im keeping this as standard, definitely |
01:45:07 | MT | er |
01:45:11 | MT | built from yesterdays cvs |
01:45:17 | Tib|Away | Good enough. |
01:45:22 | MT | i couldnt check out todays, sourceforge was being a dick |
01:45:26 | Tib|Away | Eh,my recorder isn't booting now. |
01:45:37 | Tib|Away | Must be the battery. |
01:45:46 | | Quit dw|gone (Remote closed the connection) |
01:45:49 | midknight2k3 | it must be FM recorder |
01:45:50 | MT | its an fm build note!!! |
01:46:01 | Tib|Away | ah |
01:46:03 | Tib|Away | no wonder |
01:46:19 | MT | its not finished yet either, im just using it to get midknight2k off my back while i finish it :) |
01:46:27 | midknight2k3 | yay |
01:46:30 | midknight2k3 | im happy now |
01:46:32 | midknight2k3 | thanks a lot |
01:46:46 | MT | (it could do all sorts of nasty things when you quit out) |
01:46:46 | Tib|Away | Yeah,I was just doing this for...uhh.solely debugging purposes. |
01:46:54 | midknight2k3 | BTW, when you finish up, tidy up the menu by making each word begin with capital :) |
01:47:05 | MT | no, thats gay |
01:47:11 | MT | oh |
01:47:17 | MT | its how everything else is done :) |
01:47:19 | MT | okays |
01:47:23 | midknight2k3 | what? |
01:47:25 | * | MT edits english.lang |
01:47:35 | midknight2k3 | you mean it's not a good idea or what? |
01:48:02 | midknight2k3 | i mean everything else is like that ("Show Icons" "FM Radio" etc) |
01:48:20 | MT | yeah |
01:48:29 | MT | i Dont Normally Like That |
01:48:37 | MT | but seeing how its standard .. |
01:48:38 | midknight2k3 | I Do |
01:48:40 | midknight2k3 | yea |
01:48:45 | midknight2k3 | it fits better |
01:48:47 | | Join BoD[] [0] (~BoD@m198.net195-132-85.noos.fr) |
01:48:49 | BoD[] | hi! |
01:48:55 | Tib|Away | Hello. |
01:49:03 | midknight2k3 | hey |
01:49:47 | BoD[] | sava? |
01:50:02 | midknight2k3 | hahahah |
01:50:24 | BoD[] | ? |
01:50:25 | midknight2k3 | i like putting the size of arghs on ten and number of arghs per food on 15 |
01:50:51 | BoD[] | args? |
01:51:01 | Stevie[FP] | does anyone know if ITU0 is edge or level triggered? |
01:51:10 | midknight2k3 | on wromlet |
01:51:17 | midknight2k3 | he made a cooooooool new patch |
01:51:33 | BoD[] | stevie : no idea |
01:51:34 | midknight2k3 | you can set worm speed, archs per food, size of archos, points per food, etc |
01:51:45 | BoD[] | midnight : ah ok |
01:51:56 | Tib|Away | What's a disadvantage to turning on the anti skip buffer? |
01:52:03 | midknight2k3 | oh yeah |
01:52:06 | midknight2k3 | what does it do? |
01:52:10 | midknight2k3 | anti skip buffer |
01:52:17 | midknight2k3 | i mean, it's got a 2MB buffer |
01:52:27 | midknight2k3 | what's 7 seconds to do with anything? |
01:52:35 | Tib|Away | You have it on 7? |
01:52:54 | midknight2k3 | no |
01:52:58 | midknight2k3 | just wonder what that would do? |
01:53:17 | midknight2k3 | MY ARCHOS IS BUSTED |
01:53:18 | midknight2k3 | lol |
01:53:27 | midknight2k3 | it's an "argh overflow" |
01:53:40 | BoD[] | my anti skip buffer is my hand |
01:53:52 | midknight2k3 | I put "size" on ten and "number per food" on 30 |
01:53:58 | midknight2k3 | it froze when i ate a food |
01:54:15 | BoD[] | maybe it's a bug |
01:54:19 | midknight2k3 | it is |
01:54:19 | midknight2k3 | lol |
01:54:23 | midknight2k3 | it got stuck |
01:54:29 | midknight2k3 | only way to get out was to reboot |
01:55:00 | midknight2k3 | im gotta go for a bit |
01:55:02 | midknight2k3 | see you |
01:55:03 | thu | I tried walking really fast with the archos in my pocket |
01:55:08 | midknight2k3 | and? |
01:55:09 | thu | and it started behaving like a mp3 cd player |
01:55:13 | midknight2k3 | yes |
01:55:15 | midknight2k3 | be careful |
01:55:19 | thu | it would pause, start crunching |
01:55:21 | thu | and eventually resume |
01:55:33 | midknight2k3 | the hard drive in the recorder /fm recorder is delicate |
01:55:37 | thu | sometimes it made some really creaky noises |
01:55:44 | midknight2k3 | the one in player, is, well, CRAP |
01:55:47 | midknight2k3 | yes |
01:55:51 | midknight2k3 | Be Careful |
01:55:55 | midknight2k3 | it's not good for it |
01:55:56 | thu | mine is an fm rec |
01:56:00 | midknight2k3 | it goes squeek |
01:56:09 | thu | yeah I usually drive or bus my ass around |
01:56:12 | thu | so it's safe |
01:56:15 | midknight2k3 | lol |
01:56:16 | midknight2k3 | bye |
01:56:22 | midknight2k3 | My Work Here Is Done |
01:56:22 | thu | bye |
01:56:22 | midknight2k3 | My Work Here Is Done |
01:56:23 | DBUG | Sent KICK midknight2k3 to server |
01:56:23 | midknight2k3 | My Work Here Is Done |
01:56:23 | Kick | (#rockbox midknight2k3 :Stop repeating yourself) by logbot!~bjst@labb.contactor.se |
01:56:25 | Tib|Away | wormlet is somewhat fun, except there really isn't a point. |
01:56:32 | MT | okay |
01:56:37 | thu | there are lots of points |
01:56:40 | MT | arghs per food should not go as high as 50 :D |
01:56:41 | Tib|Away | heh |
01:56:46 | Tib|Away | he left |
01:56:56 | Tib|Away | Sadly I have yet to record anything with my recorder. |
01:57:06 | thu | I recorded some lectures |
01:57:16 | thu | until the prof started encoding them in real audio and posting them online |
01:57:27 | Tib|Away | real audio, what a wonderful format. ;) |
01:57:32 | thu | yeah |
01:57:40 | Tib|Away | better than nothing I suppose. |
01:57:42 | thu | hmm.. I really have to get around writing a fun game for the archos |
01:57:48 | thu | sokoban is no good |
01:57:49 | *** | Saving seen data "./dancer.seen" |
01:57:55 | PsycoXul | thu: port angband or nethack |
01:57:56 | Tib|Away | I was about to port nibbles, then I realized I had no idea how! |
01:57:57 | thu | wormlet is impossible to play in a moving bus |
01:58:00 | Tib|Away | now that would be cool |
01:58:07 | thu | mmm nethack |
01:58:10 | Tib|Away | rogue would be easier though |
01:58:16 | thu | well I guess you have all the storage space in the world |
01:58:22 | thu | for text/gfx files |
01:58:30 | PsycoXul | yeah |
01:58:30 | thu | the game must be small and smart though |
01:58:45 | Tib|Away | Sure,I've got 15 gigs. I have a strange feeling that isn't the part that counts though. |
01:58:46 | MT | i was thinking of space invaders |
01:58:50 | thu | hmm I wonder if it's possible to have game music |
01:59:03 | PsycoXul | thu: sure, it's called a playlist |
01:59:06 | PsycoXul | heh |
01:59:07 | thu | and sounds |
01:59:19 | MT | sure, but you couldnt have music at the same time |
01:59:23 | MT | if that makes sense |
01:59:28 | thu | or short mp3s? |
01:59:33 | thu | for sound effects? |
01:59:41 | PsycoXul | heh |
02:00 |
02:00:01 | thu | oh I know |
02:00:14 | * | MiChAeLoL would love space invaders |
02:00:19 | thu | pass all the text in a nethack-like game through a text-to-speech |
02:00:27 | thu | then you can play it w/out looking at the screen |
02:00:29 | PsycoXul | heh |
02:00:33 | MiChAeLoL | cause its like the only thing left thats really good, tetris worms and space invaders |
02:00:36 | thu | wouldn't that be cool? |
02:00:50 | | Join Financial [0] (Lohkay@modemcable037.48-130-66.mtl.mc.videotron.ca) |
02:00:51 | PsycoXul | yeah |
02:00:53 | PsycoXul | how about zork |
02:01:02 | * | thu doesn't know zork |
02:01:10 | * | MiChAeLoL doesnt know him either |
02:01:10 | thu | you could just keep your hand on the buttons |
02:01:13 | thu | and listen to the text |
02:01:17 | Tib|Away | You might be eaten by a wild grue! |
02:01:24 | MiChAeLoL | hehe or mario |
02:01:33 | PsycoXul | heh |
02:01:34 | MiChAeLoL | a nintendo emulator would kick ass |
02:01:37 | MiChAeLoL | duck hunt :D |
02:01:46 | thu | I was actually thinking about z80 games |
02:01:54 | MiChAeLoL | z80 is good too |
02:01:59 | thu | that computer had 48k of memory and really slow cpu |
02:01:59 | MiChAeLoL | or calculator games |
02:02:07 | thu | and really COOL games |
02:02:19 | * | MiChAeLoL looks up z80 games |
02:02:34 | Financial | any more games out there ? |
02:02:51 | MiChAeLoL | space invaders :D |
02:02:53 | MT | tetris is no good |
02:02:59 | MT | the screen is in the wrong place |
02:02:59 | Financial | or are the three the only ones ? |
02:03:16 | MiChAeLoL | shit z80 has a ton of games |
02:03:18 | MiChAeLoL | http://www.computergames.ro/emuromania.php?optiune=er_arhiva_z80 |
02:03:25 | MiChAeLoL | 1033 games online |
02:03:41 | thu | http://www.spectrum.lovely.net/ |
02:03:43 | MT | sure, go port one, me love you long time |
02:03:43 | thu | some more here |
02:03:46 | Tib|Away | isn't z80 a processor? |
02:03:49 | thu | yes |
02:03:49 | Yeft | ok im back |
02:03:55 | Yeft | so whats with z80s ont he recorder!? |
02:03:57 | thu | found in spectrum sinclair computers |
02:04:02 | Tib|Away | oh |
02:04:07 | thu | they had cool games on low resources |
02:04:20 | MT | z80 wasnt in the spectrum |
02:04:21 | thu | hehe no wonder there are z80 games on computergames.ro |
02:04:25 | thu | sure it was |
02:04:29 | MT | z80 came _before_ the spectrum |
02:04:35 | thu | it was in the spectrum |
02:04:47 | thu | I had a few spectrum clones based on the z80 |
02:04:47 | MiChAeLoL | http://www.computergames.ro/emuromania/z80-legend/a/gif/actforc1.gif |
02:04:51 | thu | HCs |
02:04:52 | Tib|Away | well,while we are at it can you guys port baldurs gate for me? |
02:04:55 | thu | "home computers" |
02:05:15 | Yeft | MT, can you give the recorder the power to read minds? |
02:05:24 | Tib|Away | That would be nice |
02:05:26 | Yeft | and record it, and play it back while recording? |
02:05:43 | Tib|Away | Actually, why not time travel? |
02:05:58 | Yeft | oh and definitly teleporting |
02:06:00 | PsycoXul | Tib|Away: what for? |
02:06:13 | thu | hehe .. porting manic miner would be cool |
02:06:13 | Tib|Away | What else? Chaning the past, present and future. |
02:06:24 | PsycoXul | you can't change the past |
02:06:26 | Yeft | go to 1988 and buy lots of microsoft |
02:06:33 | Tib|Away | Good idea |
02:06:56 | PsycoXul | there's no time within time, so there's no "before you went into the past" and "after you went into the past" |
02:07:07 | MT | oh ho hum |
02:07:13 | PsycoXul | which means whatever you do in the past, is still in the past and you just won't know it till your future |
02:07:17 | Yeft | psyco, too much stephen hawking for you |
02:07:32 | MT | i was getting confused by sinclair model numbers |
02:07:33 | PsycoXul | Yeft: huh? |
02:07:44 | Yeft | stephen hawking, the genius? |
02:07:45 | MT | zx80 and zx81 were _not_ spectrums |
02:07:49 | PsycoXul | i know who he is |
02:07:52 | PsycoXul | i dunno what you mean though |
02:07:54 | Yeft | lol |
02:08:00 | MT | the first spectrum was the 48k zx spectrum |
02:08:07 | Yeft | oh he has a bunch of theorys on space-time |
02:08:11 | MT | but it was still powered by a Z80 |
02:08:15 | thu | MT: yeah that's the kind that I had |
02:08:15 | PsycoXul | oh |
02:08:22 | thu | and that was z80 |
02:08:23 | PsycoXul | well i'm not very familiar with him or his theories |
02:08:24 | MiChAeLoL | The first versions of the processor ran at 2.5 Megahertz (MHz). Its modern descendents run at speeds up to 50MHZ, and are still used today (ZiLOG, 2001). |
02:08:29 | PsycoXul | i've got my own theories on timespace |
02:08:31 | PsycoXul | :p |
02:08:41 | thu | heh.. 3MHz and 48k of ram |
02:08:43 | thu | and very playable games |
02:09:01 | PsycoXul | i call it time-space instead of space-time cause i think time is the more fundamental aspect and space is a natural result of time |
02:09:03 | thu | that was _real_ programming |
02:09:05 | MiChAeLoL | the Z80 implements three busses: an 8-bit data bus, a 16-bit memory bus, and a control bus. The 16-bit memory bus means that the Z80 can address 64K unique RAM locations, however all transfers are limited to 8-bits each. |
02:09:34 | MT | some games even used all 7 colours! |
02:09:40 | * | MiChAeLoL feels all technical for stating z80 facts |
02:09:45 | MT | gauntlet rocked on the spectrum |
02:09:56 | MT | 4 player gauntlet spectrum madness |
02:10:06 | * | MiChAeLoL didnt even know what a z80 was untill 5 min. ago, and now hes giving the whole history and specs of it |
02:10:09 | MiChAeLoL | lol |
02:10:10 | Tib|Away | Hmm,I was hoping the recorder would accept red/white audio input for recording. |
02:10:29 | MT | it does Tib? |
02:10:36 | Tib|Away | werid |
02:10:39 | Tib|Away | *weird |
02:10:45 | MT | combine those two red white signals into one 3.5mm jack |
02:10:52 | MiChAeLoL | they made a z80 emulator for the ti82 calculators |
02:10:59 | MT | and robert is somehow related to either your father or your mother |
02:11:21 | Tib|Away | oh,do I need to buy something for that mt? (obviously?) |
02:11:31 | MT | umm |
02:11:34 | MT | well |
02:11:45 | MT | my fm recorder came with a red/white splitter |
02:11:47 | MiChAeLoL | http://www.zophar.net/z80.html <- different z80 emulators, the source is available for one of em |
02:11:51 | MT | plug that into a source |
02:11:51 | Tib|Away | bleh |
02:11:55 | Tib|Away | no splitter |
02:11:56 | Tib|Away | well |
02:11:58 | Tib|Away | let me check |
02:11:58 | Tib|Away | brb |
02:12:09 | MT | o~MiChAeLoL: we couldnt port an emulator |
02:12:18 | MT | that would be MASSIVE HASSLE |
02:12:21 | MiChAeLoL | lol |
02:12:29 | Yeft | hmmmmm |
02:12:39 | MiChAeLoL | yea you would have to write it yourself, cause of the screwey envornment |
02:12:45 | MT | no |
02:12:47 | MT | look |
02:12:54 | MT | spectrum has almost 100 keys |
02:13:02 | MiChAeLoL | hmmm that could be a problem |
02:13:04 | MT | we have about 10 |
02:13:12 | thu | what's a splitter? |
02:13:24 | thu | oh splitter |
02:13:26 | thu | doh nm |
02:13:30 | * | MiChAeLoL wonders what the spectrum is, it sounds important |
02:13:53 | * | thu misses his old HC-86 |
02:14:04 | Yeft | im happy with the chip-8 emu |
02:14:12 | Financial | we need asteroid :) |
02:14:15 | MiChAeLoL | lol |
02:14:29 | * | MiChAeLoL thinks that time would be better spent on an id3 search feature |
02:14:40 | MiChAeLoL | because it IS an mp3 player at heart |
02:14:50 | MT | eek |
02:14:56 | MT | bool set_worm_num_worms(void) |
02:14:57 | thu | the archos is a good tool for interactive audio books |
02:15:00 | MT | scary bad function name |
02:15:22 | Financial | huhh "interactive" audio books ??? |
02:15:25 | MiChAeLoL | lol |
02:15:39 | MiChAeLoL | would be cool if it could read text to you |
02:15:51 | MiChAeLoL | so you could copy a book into it and it would read it to you |
02:15:54 | thu | Financial: you take a text based game, you run it through a text-to-speech converter, you encode everything in mp3 |
02:16:22 | thu | then you can browse around the game world w/out looking at the screen |
02:16:27 | Financial | hmm didn't know that was possible. |
02:16:32 | thu | why not? |
02:16:40 | MiChAeLoL | voice commanded searching would own |
02:16:48 | MiChAeLoL | you tell it to play a song and it plays it |
02:16:49 | Financial | that's interesting |
02:16:51 | MiChAeLoL | total control |
02:16:54 | thu | yeaah right |
02:16:56 | thu | text recognition |
02:17:07 | MiChAeLoL | could be done |
02:17:13 | thu | and that's full text recognition |
02:17:15 | MiChAeLoL | would just take a long time |
02:17:17 | thu | not even cell phones do that |
02:17:22 | MiChAeLoL | some do |
02:17:28 | thu | nope |
02:17:30 | MiChAeLoL | the older ones do |
02:17:35 | thu | there's one thing to recognize "play" |
02:17:37 | MiChAeLoL | you tell it to call someone and it calls them |
02:17:56 | thu | and another to recognize "My Artist - My Song" |
02:18:09 | thu | MiChAeLoL: you train the phone to recognize a very limited vocabulary |
02:18:19 | MiChAeLoL | yea, but you could have it recegnise bookmark 1-10 and say those and have it play the |
02:18:20 | MiChAeLoL | m |
02:18:27 | Financial | i doubt the jukebox can do that tough |
02:19:05 | * | MiChAeLoL is still waiting for his fm recorder in the mail |
02:19:08 | thu | does the archos have some sort of serial port? |
02:19:09 | MT | i doubt my k6 2 400 could do that |
02:19:17 | MiChAeLoL | got it cause it was cheap and because of rockbox |
02:19:21 | thu | the one used for debugging maybe? |
02:19:21 | MT | thu: only if you are quite inventive |
02:19:41 | thu | is it possible to connect it to a controller and send commands to rockbox? |
02:19:49 | | Quit PsycoXul (Read error: 104 (Connection reset by peer)) |
02:19:51 | MT | http://rockbox.haxx.se/mods/serialport.html |
02:20:10 | * | thu is playing with some universal controllers |
02:20:31 | | Join PsycoXul [20] (psyco@adsl-67-123-40-96.dsl.lsan03.pacbell.net) |
02:20:43 | thu | hmm I'm not sure I want to take my archos apart |
02:20:53 | thu | it might be unidirectional |
02:21:01 | MiChAeLoL | i will if i have a replacement hd or batteries |
02:21:01 | Tib|Away | back |
02:21:09 | MiChAeLoL | once i get it that is |
02:21:12 | Yeft | i wont |
02:21:13 | Tib|Away | It only came with a red/white output..No splitter. Sigh |
02:21:19 | Yeft | until my extra year warranty runs out |
02:21:25 | Tib|Away | Are these things easy to find, or is the connector specific? |
02:22:04 | MT | hmm |
02:22:12 | thu | are you talking about those Y-shaped splitters? |
02:22:20 | MT | whats the default mapping of keys in wormlet |
02:22:30 | MT | e |
02:22:32 | MT | Tib |
02:22:46 | MT | you have something that has red/white output yes? |
02:23:01 | MiChAeLoL | anyone want my winxp theme? |
02:23:07 | Yeft | yeh |
02:23:07 | MiChAeLoL | it kicks ass |
02:23:09 | Yeft | dcc it to me |
02:23:19 | MiChAeLoL | ya need stylexp tho to see it |
02:23:23 | Tib|Away | yes |
02:23:25 | Yeft | whats that? |
02:23:28 | MiChAeLoL | only kitejumping theme out their |
02:23:33 | Tib|Away | Ill explain |
02:23:35 | MiChAeLoL | www.stylexp.com i think |
02:23:46 | MiChAeLoL | nope not stylexp |
02:23:49 | Tib|Away | I have a male red/white connector to the archos |
02:23:52 | Tib|Away | but I need a female |
02:23:52 | Yeft | no |
02:23:59 | Tib|Away | so I can output..lets say my console to it |
02:24:00 | MiChAeLoL | http://www.tgtsoft.com/ |
02:24:50 | MT | your console doesnt have phono out sockets? |
02:25:15 | Tib|Away | gamecube has a cord that splits into a male yellow/red/white |
02:25:22 | Yeft | im nabbin the free trial |
02:25:22 | Stevie[FP] | god damnit |
02:25:25 | Yeft | so dcc it to me! |
02:25:26 | * | Stevie[FP] sighs |
02:25:26 | Tib|Away | I want a female cord that will have a red and white female to archos |
02:25:35 | MT | so you will need some female connectors |
02:25:44 | MT | any good audio store (tm) |
02:25:49 | MiChAeLoL | i have one |
02:25:54 | MiChAeLoL | made one of those a while ago |
02:26:00 | Yeft | michael |
02:26:03 | Yeft | gonna send it? |
02:26:06 | MiChAeLoL | oh yea |
02:26:21 | Tib|Away | I know,but where do I get that connector |
02:26:34 | Tib|Away | wow,the rockbox recording feature sucks |
02:26:52 | Tib|Away | Or I did something wrong, which is most likely the case. |
02:26:58 | PsycoXul | Tib|Away: why? |
02:27:05 | * | Yeft waits for the ask dcc |
02:27:48 | Yeft | it may be awhile |
02:27:55 | MiChAeLoL | do you have stylexp installed? |
02:28:04 | Yeft | not yet |
02:28:06 | Yeft | 56k |
02:28:10 | MiChAeLoL | ahhh |
02:28:23 | MiChAeLoL | ya might want to get the full version |
02:28:31 | MiChAeLoL | off of someones xdcc server |
02:28:38 | Yeft | or..... |
02:28:43 | Yeft | trinsic.org |
02:28:50 | * | MiChAeLoL looks at that site |
02:29:01 | Yeft | but shhh i didnt say anything |
02:29:09 | MiChAeLoL | yep |
02:29:29 | | Quit probonic () |
02:29:43 | MiChAeLoL | i usually use the altavista search engine for (/me looks at the crack in his wall) |
02:30:15 | MT | astalavista you mean |
02:30:20 | Yeft | just about to say |
02:30:22 | MiChAeLoL | it has advertizing for my site in the start menu |
02:30:22 | MT | altavista is purely legit |
02:30:26 | MiChAeLoL | lol |
02:30:35 | Yeft | astalavista est my fave security group |
02:31:11 | Yeft | no nudity on this is there? |
02:31:13 | Yeft | lol |
02:31:17 | MiChAeLoL | nope |
02:31:17 | Yeft | its not my computer |
02:31:33 | MiChAeLoL | their are pictures of me and a 21ft wingspan kite |
02:31:37 | MiChAeLoL | in the start menu |
02:31:41 | Tib|Away | the recorder worked this time,a tad bit staticky and not too loud though. |
02:32:02 | MiChAeLoL | and all the - 0 x in the corner are cartoony like |
02:32:07 | * | Stevie[FP] is back from [(Auto-Away after 1hr)] [gone 4hrs 29mins 22secs] [KS] |
02:33:57 | Yeft | welcome back |
02:34:17 | MiChAeLoL | my theme owns, in it right now |
02:34:24 | MiChAeLoL | cause anything i didnt like about it, i changed |
02:34:55 | Yeft | retro-record |
02:34:58 | Yeft | retro-record |
02:35:02 | DBUG | Sent KICK Yeft to server |
02:35:02 | Yeft | retro-record |
02:35:02 | Kick | (#rockbox Yeft :Stop repeating yourself) by logbot!~bjst@labb.contactor.se |
02:35:03 | MiChAeLoL | open it open it |
02:35:03 | | Join Yeft [0] (Yeft@AC995D3B.ipt.aol.com) |
02:35:08 | MiChAeLoL | open it open it |
02:35:53 | | Quit thu ("Client exiting") |
02:36:28 | Yeft | i cant |
02:36:33 | MiChAeLoL | install it install it |
02:36:39 | MiChAeLoL | then open it open it |
02:36:39 | Yeft | 36 min |
02:36:45 | MiChAeLoL | damn :( |
02:37:07 | MT | mm |
02:37:15 | MT | ill submit the patch tomorrow morning |
02:37:22 | MT | but it works decent :) |
02:37:33 | Yeft | make em wait |
02:38:16 | MT | which is better |
02:38:44 | MT | i only (really) need to read the persistent settings once |
02:38:52 | MT | per machine boot |
02:39:15 | MT | but to do so would require a global bool |
02:39:21 | * | MiChAeLoL left to finish beating enter the matrix as the girl |
02:39:34 | Yeft | i wish you could be neo |
02:39:45 | MT | so saving 1 byte |
02:39:52 | MT | or saving x hd accesses |
02:40:19 | Tib|Away | I wish I could program. :P |
02:40:29 | MT | its not rocket science :) |
02:40:44 | Tib|Away | Easier said than done. |
02:40:49 | Yeft | i'm done day 2 of learn visual c++ in 21 days! (lol finished it 2 days ago) |
02:41:06 | Tib|Away | Does archos use c or c++? |
02:41:12 | Yeft | c++ |
02:41:14 | Yeft | i believe |
02:41:15 | MT | c |
02:41:19 | Tib|Away | c due to printfs |
02:41:20 | Yeft | and i'm wrong |
02:41:23 | Tib|Away | heh |
02:41:27 | MT | mm |
02:41:46 | MT | rather more due to the fact that c++ wouldnt fit barely the menus into 200k |
02:41:55 | Tib|Away | lol |
02:42:11 | Tib|Away | I never have really found a good book on c or c++ |
02:42:20 | Tib|Away | all of them assume you have basic knowledge of it. |
02:42:32 | Yeft | i download SAMS learn visual c++ in 21 days from an fserve |
02:42:41 | Yeft | which assumes nothing |
02:42:47 | Tib|Away | Care to send it? |
02:42:58 | PsycoXul | most of the books i've found on c/c++ have assumed you don't want any more than basic knowledge |
02:43:09 | Tib|Away | heh |
02:43:20 | Tib|Away | I made a mistake of buying c++ primer. |
02:43:25 | Tib|Away | Now that thing is advanced. |
02:43:30 | PsycoXul | which doesn't really get you very far in practice heh |
02:43:39 | Yeft | hmmm didnt realize how big it was...... |
02:43:42 | Tib|Away | thanks yeft |
02:43:46 | Yeft | lol maybe sometime later |
02:43:48 | Yeft | i have to go soon |
02:43:48 | Tib|Away | oh well |
02:43:51 | Tib|Away | k |
02:43:55 | Tib|Away | I can fin dit |
02:43:56 | MT | c is as much like c++ as c++ is like java |
02:43:57 | Yeft | and i'll only be able to send it partially |
02:44:02 | Yeft | try kazaa lite |
02:44:03 | Tib|Away | thats fine,forget it |
02:44:04 | Tib|Away | yeah |
02:50:47 | * | Stevie[FP] is away [h0m3] [KS-MsgLog Off] |
02:56:36 | | Nick Tib|Away is now known as Tiber (~onon@12-216-244-18.client.mchsi.com) |
02:57:54 | Tiber | Wrong channel, but hey,what's a good place to purchase downloadable ebooks? |
02:57:54 | | Quit Yeft (Read error: 104 (Connection reset by peer)) |
02:57:56 | | Join Yeft [0] (Yeft@AC995D3B.ipt.aol.com) |
03:00 |
03:02:23 | | Quit Financial (">> http://making.money.tripod.com <<") |
03:20:14 | | Join Stevie-O [0] (~whatsit2u@user-2inilua.dialup.mindspring.com) |
03:35:25 | | Quit BoD[] ("z") |
03:57:52 | *** | Saving seen data "./dancer.seen" |
03:58:32 | Tiber | the bleeding edge version of the recorder firmware does not record |
03:58:36 | Tiber | gets a cpu error or something |
04:00 |
04:06:07 | | Join Yeft2 [0] (Yeft@AC995D3B.ipt.aol.com) |
04:06:08 | | Quit Yeft (Read error: 104 (Connection reset by peer)) |
04:06:08 | | Nick Yeft2 is now known as Yeft (Yeft@AC995D3B.ipt.aol.com) |
04:10:19 | | Join chineseguitardud [0] (~jirc@ool-44c257b4.dyn.optonline.net) |
04:10:24 | | Quit Yeft (Read error: 104 (Connection reset by peer)) |
04:10:38 | chineseguitardud | hi everyone |
04:10:52 | chineseguitardud | anyone here? |
04:11:31 | | Quit chineseguitardud (Client Quit) |
04:11:46 | MT | he didnt wait long |
04:13:13 | Tiber | heh |
04:21:43 | | Join Guest1 [0] (~jirc@ool-44c257b4.dyn.optonline.net) |
04:22:00 | Guest1 | hi everyone |
04:23:11 | Tiber | Hi guest |
04:23:42 | Guest1 | i just got my archos today |
04:23:54 | Guest1 | the recorder 20gb |
04:23:59 | Guest1 | i'm just curious,am i supposed to be able to use the jukebox while it's charging? |
04:25:13 | Guest1 | anyone there? |
04:28:43 | Tiber | yes,you can |
04:28:53 | Tiber | turn it on without the power/usb attachted first |
04:29:04 | Tiber | then once it's booted into rockbox, plug in the power. |
04:31:10 | Guest1 | oooh |
04:31:10 | Guest1 | nice |
04:31:15 | Guest1 | okay, what a relief |
04:31:18 | Guest1 | i thought something was wrong |
04:31:19 | Guest1 | lol |
04:31:59 | hardeep | if you start it with the charger in, you can hold on to ON to have it restart so you can play-while-charging |
04:33:30 | Guest1 | when i press on to restart it |
04:33:37 | Guest1 | it gets to right before the rockbox logo shows up |
04:33:49 | Guest1 | and then a lil scrambly and back to the batterying charging screen |
04:34:01 | hardeep | Guest1: hold on to ON just a bit longer |
04:34:08 | hardeep | until the rockbox logo shows up |
04:34:14 | Guest1 | ooooh |
04:34:15 | Guest1 | THNX! |
04:34:17 | Guest1 | haha |
04:34:29 | Guest1 | i always knew asking questions worked |
04:35:02 | Tiber | heh |
04:35:15 | Tiber | type ./nick (newnameherewithouttheparenthesis) to get a new name |
04:35:18 | Tiber | remove the period as well |
04:35:35 | Tiber | aka ./nick test123 will change my name to test123 |
04:35:36 | | Nick Guest1 is now known as chineseguitarguy (~jirc@ool-44c257b4.dyn.optonline.net) |
04:35:42 | chineseguitarguy | thankx |
04:35:46 | Tiber | np |
04:36:19 | chineseguitarguy | hey, when i'm playing music and charging, should i turn on deep charge and turn off trickle? |
04:37:07 | hardeep | chineseguitarguy: yeah, that's a good idea... especially if you're going to be playing for some time |
04:37:57 | hardeep | a lot of this explained in the battery faq at http://rockbox.haxx.se/docs/battery-faq.html |
04:38:34 | chineseguitarguy | thankx very much, i just got mine today and i'm excited as hell |
04:39:21 | chineseguitarguy | screw ipod |
04:39:23 | chineseguitarguy | lol |
04:40:34 | hardeep | :) |
04:46:43 | | Quit chineseguitarguy ("Leaving") |
04:47:17 | | Quit hardeep ("[BX] Automatically bored away") |
04:50:23 | | Join chineseguitarguy [0] (~jirc@ool-44c257b4.dyn.optonline.net) |
04:50:27 | chineseguitarguy | hey, one more quick question |
04:50:40 | chineseguitarguy | does it do anything when i unplug the charger and plug it back in again? |
04:51:43 | chineseguitarguy | liek does it mess w/ the algorithm? |
04:54:19 | | Join Yeft [0] (Yeft@AC86C471.ipt.aol.com) |
04:54:49 | Tiber | not that i know of |
04:57:14 | chineseguitarguy | alright |
04:57:16 | chineseguitarguy | thanx again |
04:57:18 | | Quit chineseguitarguy ("Leaving") |
05:00 |
05:04:02 | * | Stevie-O yawns |
05:08:35 | * | Tiber logs out |
05:08:37 | | Quit Tiber () |
05:36:57 | Stevie-O | is anyone even here? |
05:37:16 | | Join Jet8810 [0] (~Jet8810@adsl-35-1-50.bct.bellsouth.net) |
05:38:08 | | Join Yeft2 [0] (Yeft@AC86C471.ipt.aol.com) |
05:38:09 | | Quit Yeft (Read error: 104 (Connection reset by peer)) |
05:38:11 | | Nick Yeft2 is now known as Yeft (Yeft@AC86C471.ipt.aol.com) |
05:38:12 | Stevie-O | hey Jet |
05:38:17 | Stevie-O | sup Yeft |
05:43:07 | Stevie-O | dont everyone talk at once! |
05:46:43 | | Quit Yeft ("—I-n-v-i-s-i-o-n— 2.0 Build 2520") |
05:56:31 | | Join PsycoXul_ [20] (psyco@adsl-67-123-43-216.dsl.lsan03.pacbell.net) |
05:56:31 | | Quit PsycoXul (Read error: 54 (Connection reset by peer)) |
05:56:47 | | Nick PsycoXul_ is now known as PsycoXul (psyco@adsl-67-123-43-216.dsl.lsan03.pacbell.net) |
05:57:56 | *** | Saving seen data "./dancer.seen" |
06:00 |
06:03:31 | Stevie-O | sup PsycoXul |
06:06:48 | elinenbe | hello Stevie-O |
06:07:05 | elinenbe | what is the difference between you and Stevie[FP] |
06:08:01 | Stevie-O | Stevie-O is myself |
06:08:08 | Stevie-O | Stevie[FP] is myself when I am at work |
06:10:29 | elinenbe | ah... how is your emulator coming? |
06:10:46 | Stevie-O | lousy =/ |
06:10:47 | Stevie-O | im stuck |
06:11:01 | elinenbe | :( |
06:11:14 | Stevie-O | I fired off an email to Z |
06:11:16 | elinenbe | have you gotten anything working? |
06:11:21 | elinenbe | Z is the man for the job :) |
06:11:49 | Stevie-O | indeed |
06:13:35 | Stevie-O | because he has the ability to debug a Player directly |
07:00 |
07:23:23 | | Join hardeep [0] (1098@208.247.65.237) |
07:30:22 | | Join Zagor [242] (bjst@as9-5-6.k.s.bonet.se) |
07:30:44 | Stevie-O | sup Z |
07:33:08 | Zagor | uh, i'm up already? :) |
07:36:27 | hardeep | either that or you've been working on rockbox a little too much as you've started dreaming about it |
07:36:40 | Zagor | :) |
07:38:33 | Stevie-O | lol |
07:38:45 | Stevie-O | either that or *I*'m doing the dreaming |
07:38:52 | Stevie-O | which is conceivable |
07:39:09 | Stevie-O | last night I had a terrible nightmare about the IDENTIFY DEVICE command |
07:39:49 | Stevie-O | :-o |
07:40:23 | Zagor | sounds scary |
07:40:29 | Stevie-O | indeed |
07:40:48 | Stevie-O | I need to remember what it was I had for diner |
07:40:49 | Stevie-O | +n |
07:40:52 | Stevie-O | so I never do so again |
07:57:57 | *** | No seen item changed, no save performed. |
08:00 |
08:18:36 | | Quit MiChAeLoL (Read error: 104 (Connection reset by peer)) |
08:26:49 | | Join awy[baer] [0] (~erklaerba@pD9E4DFE0.dip.t-dialin.net) |
08:26:58 | | Quit awy[baer] (Remote closed the connection) |
08:37:08 | | Join awy[baer] [0] (~erklaerba@pD9E4DFE0.dip.t-dialin.net) |
08:38:05 | hardeep | in the "red led dead" bug, is there still hard drive activity along with the red led? |
08:39:39 | hardeep | 'cause if there is, I think I might have reproduced (3x so far) |
08:49:23 | | Join Bagder [241] (~dast@neptunus.contactor.se) |
08:49:39 | Bagder | morning |
08:49:53 | Schnueff | moin |
08:50:49 | Zagor | hardeep: i don't know. I never manage to produce the problem. |
08:51:24 | Bagder | hardeep: got any mail from Henrik? |
08:52:11 | hardeep | Zagor: i've got a 100% way to reproduce something that looks awfully similar to it... |
08:52:34 | hardeep | Bagder: yes, his changes are not quite complete but it's a good start |
08:52:41 | Zagor | hardeep: goodie. can you try using the usleep test version? |
08:52:51 | Bagder | nice, I haven't looked at them yet |
08:52:53 | Zagor | http://rockbox.haxx.se/test/usleep.ajz |
08:53:18 | hardeep | Zagor: can you send me a patch or file that needs to be changed... the problem is that I'm reproducing this on a patched version running dynamic playlists |
08:53:28 | hardeep | and it's the "insert" that reproduces it |
08:53:41 | hardeep | that's why i'm not entirely sure it's the same bug |
08:54:08 | Zagor | hardeep: ok |
08:54:38 | hardeep | Bagder: we still have the issue i mentioned earlier though |
08:55:01 | Zagor | http://rockbox.haxx.se/test/usleep.patch |
08:55:34 | Bagder | ok |
08:55:50 | Bagder | I also have some issues with the bookmark patch |
08:55:54 | Bagder | minor, but still |
08:56:25 | Zagor | Bagder: does the current bookmark code differentiate between a playlist bookmark and a file bookmark? |
08:56:55 | Bagder | it uses the commone resume function |
08:57:00 | Bagder | so it needs to |
08:57:40 | | Quit mbr (Read error: 104 (Connection reset by peer)) |
08:58:26 | Bagder | meeting |
09:00 |
09:01:13 | hardeep | Zagor: problem still reproduces... |
09:01:28 | hardeep | Zagor: let me investigate more to make sure it's not something funky in my patch |
09:01:30 | Zagor | ok |
09:04:11 | | Quit Jet8810 ("Client exiting") |
09:13:50 | | Join mbr [0] (~mb@stlx01.stz-softwaretechnik.de) |
09:21:33 | | Join matsl [0] (~matsl@dhcp87.contactor.se) |
09:30:56 | | Nick matsl is now known as matsl|meeting (~matsl@dhcp87.contactor.se) |
09:40:54 | | Quit Stevie-O (Read error: 110 (Connection timed out)) |
09:42:31 | | Quit hardeep ("[BX] Gary Coleman uses BitchX. Whatchoo talkin bout foo?") |
09:57:58 | *** | Saving seen data "./dancer.seen" |
10:00 |
10:07:02 | | Join quelsaruk [20] (~swordmast@faerun.ugr.es) |
10:07:08 | quelsaruk | morning |
10:09:55 | Bagder | hi |
10:14:47 | | Quit Guest (Read error: 104 (Connection reset by peer)) |
10:31:16 | ricII | hi |
10:33:01 | ricII | got a similar solomon lcd from an old nokia phone, only this one has 9 interface wires. |
10:34:32 | Zagor | bitmap or charcell? |
10:34:41 | ricII | bitmap |
10:35:13 | ricII | with the controlor on glas |
10:36:35 | | Join Guest [0] (~jirc@adsl-66-124-166-183.dsl.lsan03.pacbell.net) |
10:39:46 | | Nick matsl|meeting is now known as matsl (~matsl@dhcp87.contactor.se) |
10:40:15 | ricII | if I can find the datasheet on this one, it sould be possible to connect to my rockbox |
10:41:46 | webmind | hi ricII |
10:41:59 | ricII | hi webmind |
10:42:18 | webmind | ricII, i broke my amplifyer on my archos :) |
10:43:03 | ricII | ? how did you do that ? |
10:43:22 | webmind | drop it i think |
10:43:32 | webmind | or maybe because of the moist fromt he rain |
10:43:46 | webmind | but it no seems to be stuk on kareoke mode or sth |
10:43:50 | webmind | really sux |
10:44:42 | ricII | line out still ok? |
10:45:28 | webmind | uhuh |
10:45:40 | webmind | just phonen out seems to filter out some tones |
10:50:36 | ricII | don't see the amp in the player schematics.. |
10:50:49 | webmind | its one of the mas chips |
10:52:03 | webmind | dac3550a afaik |
10:52:15 | webmind | http://rockbox.haxx.se/internals/6k_back.jpg |
10:52:50 | webmind | why isnt there a link to my naked archos pics ? |
10:53:10 | ricII | Ic |
10:53:51 | ricII | sure it isn;t the equlizar programmed funny ? |
10:57:45 | | Nick quelsaruk is now known as quel|out (~swordmast@faerun.ugr.es) |
10:59:00 | | Join elinenbe_ [0] (elinenbe_@user-0cev103.cable.mindspring.com) |
10:59:01 | | Quit elinenbe (Read error: 104 (Connection reset by peer)) |
10:59:01 | | Quit |nsomniac (Read error: 104 (Connection reset by peer)) |
10:59:08 | | Nick elinenbe_ is now known as elinenbe (elinenbe_@user-0cev103.cable.mindspring.com) |
10:59:23 | | Nick ricII is now known as ricII|work (~ricv@debianalpha.xs4all.nl) |
10:59:23 | | Quit thedudee (Read error: 104 (Connection reset by peer)) |
10:59:31 | | Join thedudee [0] (cleveruser@156.46.57.134) |
10:59:35 | ricII|work | off to work.. |
11:00 |
11:04:33 | Zagor | webmind: which pics are that? |
11:04:59 | webmind | Zagor, uhm.. i posted them once |
11:05:01 | webmind | lemme see |
11:07:36 | webmind | Zagor, web.expr42.net/fotos/archos <- that one.. but i think i have more.. and will put m there when found :) |
11:11:35 | Zagor | ok |
11:58:01 | *** | Saving seen data "./dancer.seen" |
12:00 |
12:32:35 | | Part TotMacher |
12:32:41 | | Join tot|4ma|away [0] (tot@ip67.rsidus.riege.de) |
13:00 |
13:03:59 | | Quit Guest ("Leaving") |
13:18:36 | | Join tracktheripper [0] (jirc@ACBF382C.ipt.aol.com) |
13:21:28 | tracktheripper | hi |
13:58:04 | *** | Saving seen data "./dancer.seen" |
14:00 |
14:10:06 | | Quit tracktheripper ("Leaving") |
14:21:36 | | Nick tot|4ma|away is now known as TotMacherr (tot@ip67.rsidus.riege.de) |
14:21:36 | | Nick TotMacherr is now known as TotMacher (tot@ip67.rsidus.riege.de) |
14:53:14 | | Join Stevie-O [0] (~whatsit2u@user-2inilua.dialup.mindspring.com) |
14:55:14 | Stevie-O | mornin all |
14:55:33 | Bagder | hi |
15:00 |
15:24:59 | | Quit matsl ("Client Exiting") |
15:33:32 | | Quit Stevie-O (Read error: 60 (Operation timed out)) |
15:38:19 | * | Stevie[FP] is back from [h0m3] [gone 12hrs 47mins 32secs] [KS] |
15:38:31 | * | Stevie[FP] yawns |
15:38:36 | Stevie[FP] | hola |
15:39:08 | Bagder | g'day |
15:48:58 | Stevie[FP] | sup? |
15:50:25 | Stevie[FP] | what do you know about this A/D converter thing |
15:51:53 | Stevie[FP] | ? |
15:54:49 | Stevie[FP] | meh |
15:54:53 | Bagder | not very much |
15:54:53 | Stevie[FP] | that must not be it |
15:58:07 | *** | Saving seen data "./dancer.seen" |
16:00 |
16:11:06 | | Nick quel|out is now known as Quelsaruk (~swordmast@faerun.ugr.es) |
16:11:18 | Quelsaruk | afternoon :) |
16:12:58 | Stevie[FP] | oooh |
16:35:32 | Stevie[FP] | hmm |
16:35:36 | * | Stevie[FP] wonders what's connected to port A |
16:43:14 | | Nick Quelsaruk is now known as Quel|out (~swordmast@faerun.ugr.es) |
16:44:36 | | Join mecraw [0] (~mecraw@69.2.235.2) |
16:45:18 | | Join Jet8810 [0] (~Jet8810@adsl-35-1-50.bct.bellsouth.net) |
16:53:52 | Stevie[FP] | is the player STOP key active lo? |
16:53:54 | Stevie[FP] | +w |
16:54:03 | | Quit thedudee (Read error: 110 (Connection timed out)) |
16:54:56 | Stevie[FP] | indeed |
17:00 |
17:14:37 | | Quit Bagder ("Client Exiting") |
17:29:50 | MT | hmm i think i found a bug in the x11 simulator |
17:30:04 | MT | or rather, undesired operation |
17:30:19 | Stevie[FP] | i found a lot of undesired operations in the simulator |
17:30:20 | Stevie[FP] | :P |
17:31:08 | MT | with the rockbox open() call, there is no third variable (mode flags) as it doesnt make sense onto fat32 |
17:31:20 | Stevie[FP] | ? |
17:31:31 | MT | file open() call |
17:31:31 | Stevie[FP] | ok? |
17:31:37 | MT | yes, thats fine |
17:31:50 | MT | but in the emu, it passes off all file operations to glibc |
17:31:56 | Stevie[FP] | hmm |
17:32:01 | Stevie[FP] | and passes no 3rd parameter? |
17:32:04 | Zagor | OPEN(2) |
17:32:07 | Zagor | int open(const char *pathname, int flags); |
17:32:16 | Zagor | neener neener ;) |
17:32:21 | Stevie[FP] | lol |
17:32:23 | Stevie[FP] | sup Z |
17:32:49 | Zagor | i'm hacking on a website of mine |
17:33:06 | Stevie[FP] | ... with an axe? |
17:33:43 | Zagor | with a perl (groan) |
17:33:50 | Stevie[FP] | :P |
17:35:59 | Stevie[FP] | errr oops |
17:36:04 | Stevie[FP] | thats not sposta happen :-o |
17:36:43 | Stevie[FP] | ohhh |
17:36:46 | Stevie[FP] | there's the problem |
17:37:03 | * | Stevie[FP] LARTs himself |
17:39:51 | | Join hardeep [0] (1098@208.247.65.237) |
17:40:30 | Zagor | hi hardeep. did you find out anything more about your rld problem? |
17:41:19 | hardeep | Zagor: i only investigated a little before going to sleep.... i'm pretty sure it's not something in my patch that's causing this. |
17:42:02 | Zagor | ok |
17:42:26 | hardeep | i tried tracking down what's causing the blinking led but so far no luck |
17:42:38 | hardeep | it's not the "retry" logic in read_sectors |
17:45:14 | | Quit Jet8810 (Read error: 104 (Connection reset by peer)) |
17:49:06 | Stevie[FP] | Z: what's the A/D convertor on the Player connected to? |
17:49:23 | MT | Zagor: /home/tom/rockbox/rockbox-devel/uisimulator/x11/file.h:extern int open(char* pathname, int flags); |
17:49:47 | MT | only one visible to the x11 sim |
17:54:06 | * | Stevie[FP] threatens Zagor with a super soaker |
17:56:03 | hardeep | MT: the simulator maps open to x11_open which is what's called |
17:56:29 | hardeep | MT: you'll see that x11_open ignores the flags |
17:57:29 | hardeep | actually, i take that back, it passes it on to open, it's creat that ignores the flags |
17:58:09 | *** | Saving seen data "./dancer.seen" |
18:00 |
18:06:19 | Zagor | Stevie[FP]: to the mp3 decoder and the headphone socket |
18:06:41 | Zagor | it's also connected to the i2c bus |
18:17:03 | Stevie[FP] | the A/D convertor is connected to the i2c bus!? |
18:17:17 | Stevie[FP] | is PA15 connected to something? |
18:17:55 | Zagor | yes, usb detect |
18:18:09 | MT | hardeep: but if i cant call open with 3 arguments, how can i then pass these flags to it? (I do hope im not being obtuse) |
18:18:24 | Stevie[FP] | on the Player? |
18:19:01 | Zagor | Stevie[FP]: yes |
18:19:04 | * | Stevie[FP] thanks whomever for NOT PUTTING THAT ON THE DAMN SCHEMATIC |
18:19:15 | Zagor | there lots of info missing from the schematics |
18:19:23 | Stevie[FP] | just great :P |
18:19:26 | Stevie[FP] | okay |
18:19:35 | Stevie[FP] | which means USB |
18:19:37 | Stevie[FP] | 1 or 0? |
18:19:50 | Zagor | it differs... |
18:20:08 | Stevie[FP] | ok... |
18:20:55 | Stevie[FP] | well |
18:20:56 | Stevie[FP] | hmm |
18:21:06 | Stevie[FP] | usb.c indicates that 1=no usb |
18:22:06 | hardeep | MT: what flags do you want to pass? |
18:22:47 | Zagor | Stevie[FP]: no, that's controlled by a bit in the hwcompat mask. USB_ACTIVE_HIGH |
18:23:19 | Stevie[FP] | hmm |
18:23:21 | Stevie[FP] | no... |
18:23:24 | Zagor | if(PADR & 0x400) |
18:23:24 | Zagor | usb_polarity = 0; /* Negative */ |
18:23:24 | Zagor | else |
18:23:28 | Zagor | usb_polarity = 1; /* Positive */ |
18:23:28 | MT | hardeep: i want to open a file that possibly may not exist, and create it if it doesnt, truncate it if it does |
18:23:37 | Stevie[FP] | I asked about PA15 |
18:23:40 | Stevie[FP] | which is 0x8000 |
18:23:51 | Stevie[FP] | 0x400 is PA10 |
18:24:12 | MT | hardeep: calling open(" .. ", O_WRONLY | O_CREAT | O_TRUNC) works on the real rockbox, but fails on the x11 simulator |
18:24:29 | MT | (i may have O_TRUNC misspelled ;) |
18:24:35 | hardeep | MT: those flags are the second argument to open which is correctly sent, the 3rd argument is "mode" |
18:24:56 | hardeep | MT: what happens if you call creat() instead of open (it should do the same thing) |
18:24:59 | MT | i have no function prototype for a 3 argument open call |
18:25:15 | MT | ah, i read in the man page that creat was deprecated :/ |
18:26:18 | MT | also, none of the pseudo constants mentioned in the man page for mode flags seem to be defined for rockbox |
18:26:39 | MT | which would make sense, they arent used in fat, so why clutter |
18:28:48 | MT | ah i see zagor, open in the x11 sim is just a macro to x11_open |
18:28:49 | Stevie[FP] | Zagor: do you have any info that can tell me wtf is connected to AN4-AN7? |
18:28:50 | MT | ho humm |
18:29:18 | MT | i suppose i ought to actually do some work instead of debugging my poor rockbox patch |
18:29:21 | hardeep | MT: why do you care about the mode flag? that's only needed for setting file permissions for the _next_ time it's opened |
18:29:27 | Zagor | Stevie[FP]: ah, my bad. it's the USB ENABLE bit that has different polarity. USB DETECT is always the same. |
18:29:52 | Stevie[FP] | yeah, which I don't care about USB ENABLE yet (maybe in the future :P) |
18:29:56 | Zagor | usb enable is PA10, detect is PA15 |
18:30:22 | MT | hardeep: because calling open(" .. ", O_WRONLY | O_CREAT | O_TRUNC) in the simu returns -1 and sets errno to ENOENT (no such file) |
18:31:13 | | Quit adi|home ("Damn flying monkies") |
18:31:28 | hardeep | MT: that is probably not related to the mode flag... does the file you're trying to open already exist? |
18:32:07 | MT | no, but even if it did it should cope with that by truncating the file |
18:32:12 | hardeep | MT: another possibility is that the flags being passed are not correct |
18:32:14 | MT | in fact it does work if i touch the file first |
18:32:55 | hardeep | MT: rockbox defines O_WRONLY etc.... maybe that definition isn't compatible with the simulator |
18:32:57 | MT | all this to save the highscore of the wormlet ;) |
18:33:14 | MT | hmm perhaps |
18:35:14 | Stevie[FP] | Zagor: what's connected to AN4-AN7? |
18:35:20 | Zagor | MT: what if you set a hardcoded value in the x11 sim open() ? |
18:35:54 | Zagor | Stevie[FP]: i don't know. voltage detect on one of them, i presume |
18:37:25 | MT | heh |
18:38:02 | MT | okay, im no good at converting from octal/hex to something i can understand :) |
18:38:44 | MT | my linux has O_TRUNC as 01000, rockbox has 0x10 |
18:38:50 | MT | thats the same right |
18:39:00 | Stevie[FP] | no. |
18:39:05 | MT | oh |
18:39:05 | Stevie[FP] | wait |
18:39:23 | Stevie[FP] | no |
18:39:43 | Stevie[FP] | 01000 == 0x200 |
18:39:44 | Stevie[FP] | 0010 0000 0000 |
18:39:50 | Zagor | MT: the values are different in rockbox. but aren't you talking about the third parameter? TRUNC is the scond. |
18:40:09 | MT | well this is surely different : linux has O_CREAT as 0100, rockbox has O_CREAT as 4 |
18:40:12 | Stevie[FP] | no |
18:40:16 | Stevie[FP] | there is no 3rd parameter |
18:40:22 | Stevie[FP] | ... |
18:40:32 | MT | Zagor: im looking for _any_ reason why this open call would fail to create a file in the simulator |
18:40:36 | Stevie[FP] | the 3rd parameter to open(2) is 'mode' which sets file permissions |
18:40:41 | Zagor | Stevie[FP]: exactly |
18:40:49 | Stevie[FP] | plus |
18:40:56 | Stevie[FP] | so far we've seen that his parameter values don't match |
18:41:31 | Stevie[FP] | he has 0100 (64/0x40) for O_CREAT, but rockbox uses 4 |
18:41:44 | Stevie[FP] | he has 01000 for O_TRUNC (0x200), but rockbox uses 0x10 |
18:42:05 | MT | obviously it wont do if i call it with flags that glibc doesnt recognise |
18:42:12 | Stevie[FP] | indeed |
18:42:57 | Zagor | he doesn't. note the #ifndef O_RDONLY |
18:43:07 | | Quit elinenbe (Read error: 113 (No route to host)) |
18:43:12 | | Join elinenbe [0] (elinenbe_@user-0cev103.cable.mindspring.com) |
18:43:16 | Zagor | the simulator includes sys/types.h before file.h, so will use the local flag values |
18:43:54 | Zagor | at least that's the idea |
18:44:53 | MT | thats great, but those values arent defined in sys/types.h :) |
18:45:07 | MT | or |
18:45:08 | MT | sec |
18:45:46 | Zagor | stdio then, or some of the gazillion files it includes in turn |
18:46:46 | Zagor | try this: does "create .cfg file" work? |
18:46:54 | Zagor | it works for me |
18:47:06 | Stevie[FP] | file.h |
18:47:12 | Stevie[FP] | err sys/file.h |
18:48:17 | hardeep | create .cfg file uses creat() instead of open (O_CREAT|etc..) |
18:48:25 | Zagor | ah |
18:50:51 | MT | the file that O_CREAT and friends are defined on my system is <bits/fcntl.h> , which is only included by <fcntl.h> |
18:50:59 | MT | > $ find ~/rockbox/rockbox-devel/ -iname '*.h' |xargs grep 'fcntl.h' |
18:51:00 | MT | /home/tom/rockbox/rockbox-devel/uisimulator/win32/file.h:#include <fcntl.h> |
18:52:16 | hardeep | MT: add fcntl.h to x11/file.h and see what happens... |
18:53:38 | Zagor | MT: just curious, what system are you running on? |
18:53:53 | MT | gentoo |
18:54:32 | MT | now it works ;) |
18:54:54 | MT | adding fcntl.h to x11/file.h did the trick |
18:55:21 | Zagor | excellent |
18:58:27 | hardeep | Zagor: what could cause the red led to go dim but not turn off? |
18:58:53 | Zagor | well, frequent on/off changes |
18:59:21 | hardeep | hmmm |
18:59:46 | Stevie[FP] | ok |
19:00 |
19:01:06 | hardeep | i'm just trying to narrow down what exactly is occurring when i get into this state: i'm not in the ata_read_sectors retry loop, i'm not trying to read/write a lot of data, it doesn't look like i'm stuck in the find_free_cluster loop |
19:01:33 | Stevie[FP] | ok, I need nourishment |
19:01:37 | Stevie[FP] | btw, Z −− did you get my email? |
19:01:57 | * | Stevie[FP] is away [f00d] [KS-MsgLog Off] |
19:03:14 | Zagor | yeah i did |
19:03:46 | | Nick Quel|out is now known as Quelsaruk (~swordmast@faerun.ugr.es) |
19:03:51 | Quelsaruk | hi agail |
19:03:52 | Quelsaruk | :) |
19:04:36 | Quelsaruk | *again |
19:05:09 | MT | Quelsaruk: [off topic] whereabouts in spain are you from? |
19:08:07 | Quelsaruk | Granada |
19:08:09 | Quelsaruk | ;) |
19:08:36 | MT | bah :/ |
19:08:43 | Quelsaruk | why? |
19:09:00 | MT | dont suppose you have any friends in barca who have some cheap accomodation in july? :S |
19:11:01 | | Join edx` [0] (edx@pD9EA93C4.dip.t-dialin.net) |
19:20:50 | Quelsaruk | barca?? |
19:20:54 | Quelsaruk | barcelona? |
19:28:06 | MT | yep |
19:28:15 | MT | my holiday destination this year |
19:28:17 | | Quit edx (Read error: 110 (Connection timed out)) |
19:28:28 | Quelsaruk | ahh |
19:28:35 | Quelsaruk | we call it Barna ;) |
19:29:01 | MT | but were going in ~1 month and we havent got accomodation yet, and all the pensions i can find are _really_ pricey, like 30 euros a night |
19:29:06 | | Nick edx` is now known as edx (edx@pD9EA93C4.dip.t-dialin.net) |
19:29:12 | | Quit mecraw ("Trillian (http://www.ceruleanstudios.com)") |
19:29:30 | Quelsaruk | i knew a good pension in Gracia (in the center of Barna) |
19:29:36 | Quelsaruk | but i can't remember the name |
19:29:38 | Quelsaruk | ;) |
19:29:40 | MT | doh! |
19:29:41 | MT | :) |
19:30:09 | MT | we're flying to girona, and we'll find somewhere to stay the night there and probably spend all the next day looking for somewhere in barcelona |
19:30:50 | MT | but 30 euros a night for 14 days is a lot fo money, and thats before ive even had one beer! |
19:30:50 | Quelsaruk | Zagor: Recorder FM and Recorder use the same firmware file? |
19:31:31 | Zagor | Quelsaruk: no |
19:32:15 | Quelsaruk | i've read your post about red led dead |
19:33:02 | Quelsaruk | that firmware is for the recorder or the recorder FM?? |
19:35:11 | Zagor | no, regular recorder |
19:35:51 | Quelsaruk | Zagor: someone has asked you for a built version for the FM and you've rewritten the same url ;) |
19:36:27 | Quelsaruk | upps |
19:36:27 | Quelsaruk | sorry |
19:36:36 | Quelsaruk | you wrote the patch url |
19:36:38 | Quelsaruk | :) |
19:37:20 | Quelsaruk | MT the place i knew was 18 Euros the night... more or less.. |
19:38:42 | Quelsaruk | MT: http://www.bcn.es/ |
19:40:57 | MT | ah cool :) |
19:43:12 | Quelsaruk | Hostal Residència Sílvia |
19:43:19 | Quelsaruk | that was the one ;) |
19:50:06 | | Join Guest [0] (~jirc@adsl-211-216-117.mia.bellsouth.net) |
19:50:40 | | Join Guest1 [0] (~jirc@adsl-211-216-117.mia.bellsouth.net) |
19:50:50 | Guest1 | hello? |
19:51:22 | Quelsaruk | hi |
19:51:23 | | Quit Guest1 (Client Quit) |
19:51:37 | Guest | hmmm |
19:51:55 | Guest | can anyone help me with a hd access error? |
19:52:07 | | Quit Guest (Client Quit) |
19:54:01 | | Join saxman100 [0] (~jirc@adsl-211-216-117.mia.bellsouth.net) |
19:56:31 | saxman100 | hello all..can someone possibly help me with an error message? |
19:56:53 | saxman100 | my recorder 20 cannot "access the hd" on bootup |
19:57:07 | saxman100 | ideas? |
19:58:13 | *** | Saving seen data "./dancer.seen" |
19:58:40 | Quelsaruk | ummm |
19:58:55 | Quelsaruk | do you have a fat32 partition on it? |
19:59:19 | saxman100 | yes, thru win98. i was copying mp3's last night, |
19:59:31 | saxman100 | and the pc froze (hourglass) |
19:59:41 | Quelsaruk | ourch |
19:59:43 | saxman100 | i had to turn it off, and then the archos |
19:59:48 | saxman100 | would no longer boot. |
19:59:59 | saxman100 | possibly I messed up the formatting |
20:00 |
20:00:09 | saxman100 | but now, |
20:00:27 | Quelsaruk | can you access the hd when plugged to the pc? |
20:00:30 | saxman100 | the usb connection shows the ttray icon with an x in it, and the drive |
20:00:35 | saxman100 | letter is not recognized. |
20:00:44 | saxman100 | no, I can't. |
20:00:52 | saxman100 | if i could, i would fdisk and reformat |
20:01:56 | saxman100 | it boots the initial rom, but then cannot access the hd. |
20:02:14 | saxman100 | i completely charged the batteries too |
20:02:44 | Quelsaruk | i had nearly the same problem... |
20:02:49 | Quelsaruk | and the hd is broken ;) |
20:02:54 | saxman100 | oh really?? |
20:02:59 | Quelsaruk | but i could access via archos firmware |
20:02:59 | saxman100 | aaahhhhhhhh...:( |
20:03:07 | saxman100 | well, I just got it 3 days ago |
20:03:22 | saxman100 | so, I need a new hd huh? |
20:03:28 | saxman100 | or a new unit? |
20:03:30 | Quelsaruk | but i'm not saying your problem is the same |
20:03:35 | saxman100 | ok, I see |
20:03:38 | Quelsaruk | is your jukebox new? |
20:03:44 | Quelsaruk | or just the hd? |
20:03:49 | saxman100 | just hard to do anything if I can't access the drive from anywhere |
20:04:43 | Quelsaruk | try to listen the hd when plugged to the pc... |
20:04:51 | Quelsaruk | to hear if it spins up or not |
20:05:01 | saxman100 | whole thing is new........yes, I think si spinning |
20:05:47 | saxman100 | it is similar to a bad fat or something |
20:06:10 | saxman100 | if i could access it, I'd be happy tp start over |
20:07:48 | Quelsaruk | then you should be able to access it |
20:07:58 | Quelsaruk | dunno how, but still possible |
20:07:59 | Quelsaruk | ;) |
20:08:05 | Quelsaruk | mine couldn't spin up |
20:08:13 | saxman100 | hmmmmm.........ok....... |
20:08:20 | saxman100 | I'll keep trying! |
20:08:22 | * | Stevie[FP] is back from [f00d] [gone 1hr 6mins 25secs] [KS] |
20:08:57 | saxman100 | hi stevie........any thoughts on hwo to get around a non accessible hd? |
20:09:06 | Stevie[FP] | no idea |
20:09:24 | saxman100 | oh well...lol.................i am the same! |
20:09:36 | saxman100 | thanks you guys...off i go to try again |
20:09:41 | Quelsaruk | saxman100: a hammer? |
20:09:50 | saxman100 | possibly! |
20:10:17 | saxman100 | bye for now |
20:10:21 | | Quit saxman100 ("Leaving") |
20:20:29 | Quelsaruk | btw, it's just me or everyone's getting duplicated mails? |
20:21:33 | | Quit hardeep ("BitchX Official WWW Site -- http://www.bitchx.com") |
20:35:32 | | Join mecraw [0] (~mecraw@69.2.235.2) |
20:35:32 | | Quit Zagor (Read error: 54 (Connection reset by peer)) |
20:38:46 | | Join Zagor [242] (bjst@as9-5-6.k.s.bonet.se) |
20:46:21 | Zagor | Quelsaruk: i get them too. i'll track the perp down. |
20:47:52 | Zagor | found and killed |
20:48:04 | Quelsaruk | thx |
20:48:04 | Quelsaruk | :) |
20:51:17 | | Join Tib|Away [0] (~onon@12-216-244-18.client.mchsi.com) |
20:53:21 | Zagor | yay, this is the right way: "Supports Linux - Windows CE to follow" |
20:53:32 | Zagor | you don't see that on hardware very often |
20:53:55 | Quelsaruk | not really |
20:53:57 | Quelsaruk | that's cool |
20:53:58 | Quelsaruk | :) |
20:54:06 | Quelsaruk | umm |
20:54:12 | Quelsaruk | that could be added to the FAQ |
20:54:53 | Quelsaruk | question 33 |
20:55:07 | Quelsaruk | 33. Can I use the Archos as an USB hard disk to store data from my PDA/ digital camera/phone etc. |
20:55:21 | Quelsaruk | the answer is NO (nodo list) |
20:55:35 | Quelsaruk | but now we could attach those links |
20:55:36 | Quelsaruk | :) |
21:00 |
21:01:29 | Zagor | yup |
21:01:49 | Quelsaruk | sometimes i say intelligent things ;) |
21:02:23 | Tib|Away | What if the pda had some sort of the master usb instead of slave? Assuming this is what I read about in the faq. |
21:03:06 | Zagor | Tib|Away: yes, that is what is required |
21:03:21 | Zagor | very few, if any, pdas have usb host capability though |
21:03:31 | Tib|Away | oh |
21:03:42 | Quelsaruk | if you have usb host capability.. it's just like a pc |
21:03:59 | Tib|Away | Is host hardware or software? |
21:04:07 | Zagor | Tib|Away: both |
21:04:32 | Tib|Away | okay |
21:04:48 | | Nick Tib|Away is now known as Nilisco (~onon@12-216-244-18.client.mchsi.com) |
21:07:17 | Nilisco | Actually,the casio e200 has a usb host device built in. |
21:07:35 | Nilisco | And I assume this could be modified to work. |
21:07:35 | Nilisco | http://www.deje.gmxhome.de/software.html |
21:07:44 | Nilisco | Still useless considering I don't have one though. :) |
21:09:07 | * | Stevie[FP] is away [(Auto-Away after 1hr)] [KS-MsgLog Off] |
21:28:53 | | Join Yeft [0] (Yeft@ACCB824B.ipt.aol.com) |
21:32:09 | | Quit Nilisco () |
21:34:35 | Yeft | sss |
21:37:36 | Quelsaruk | time to go home |
21:41:27 | | Quit Quelsaruk ("KVIrc 3.0.0-beta1 "Eve's Avatar"") |
21:50:57 | | Join Melker^ [0] (asds@h224n2fls34o841.telia.com) |
21:50:57 | | Quit Yeft (Read error: 104 (Connection reset by peer)) |
21:51:15 | Melker^ | Hello?! |
21:51:23 | Zagor | hi |
21:51:52 | Melker^ | Svensk, kanske? |
21:53:15 | Zagor | japp, men ta det på engelska så kan andra ta del av ev tips |
21:53:24 | Melker^ | Okej =) |
21:54:33 | Melker^ | Eller, tänkte bara fråga... Sökte lite efter Mp3-spelare på internet (har planer på att bygga en egen), och eran site poppade upp |
21:55:16 | Melker^ | Har inte riktigt förstått vad det är ni byggt på eran sida? |
21:56:49 | Melker^ | Är det en mp3-spelare, den där Archos? |
21:57:08 | Zagor | jupp |
21:57:25 | Melker^ | Ni som byggt den också? |
21:57:34 | Zagor | nope. www.archos.com |
21:58:14 | *** | Saving seen data "./dancer.seen" |
22:00 |
22:02:30 | | Join Yeft [0] (Yeft@ACCB071C.ipt.aol.com) |
22:02:50 | | Nick Yeft is now known as Yeft[A] (Yeft@ACCB071C.ipt.aol.com) |
22:26:01 | | Quit Yeft[A] ("—I-n-v-i-s-i-o-n— 2.0 Build 2520") |
22:40:54 | * | Stevie[FP] is back from [(Auto-Away after 1hr)] [gone 1hr 31mins 47secs] [KS] |
22:40:59 | Stevie[FP] | whee. |
22:45:33 | Stevie[FP] | meh. |
22:48:07 | Stevie[FP] | ok so wwtf is this 0x800 |
22:48:19 | | Join mecraw_ [0] (~mecraw@69.2.235.2) |
23:00 |
23:06:27 | | Quit mecraw (Read error: 110 (Connection timed out)) |
23:06:34 | | Nick mecraw_ is now known as mecrw (~mecraw@69.2.235.2) |
23:06:39 | | Nick mecrw is now known as mecraw (~mecraw@69.2.235.2) |
23:14:16 | Stevie[FP] | wtf |
23:20:23 | Zagor | which 0x800? |
23:20:34 | | Join Bagder [241] (~daniel@as3-3-2.ras.s.bonet.se) |
23:20:50 | Zagor | yo bro |
23:20:56 | Stevie[FP] | i dunno |
23:21:00 | Stevie[FP] | PADR &= ~0x800 |
23:21:02 | Stevie[FP] | PADR |= 0x800 |
23:21:03 | Bagder | hi |
23:21:10 | Stevie[FP] | good, well-commented lines like that |
23:21:13 | Zagor | Stevie[FP]: where? |
23:21:45 | Stevie[FP] | mpeg.c ~700 |
23:22:05 | Stevie[FP] | looks like drain_dma_buffer |
23:23:00 | Zagor | heh, i agree a comment would be good there... |
23:23:09 | Stevie[FP] | and perhaps some things like |
23:23:30 | Stevie[FP] | #define MAGIC_VALUE 0x800/* used to enable the flibbergak in the lorax */ |
23:23:53 | Zagor | well the magic value isn't so strange, it's simply PA11 |
23:23:59 | Stevie[FP] | yeah |
23:24:12 | Stevie[FP] | which the meaning of is not so obvious |
23:24:24 | Stevie[FP] | since my schematics here indicate that that is the STOP key (?) |
23:24:31 | Zagor | but sure, "PA11" would be more obvious |
23:25:00 | Zagor | note the HAVE_MAS3587F. this is recorder, which doesn't have the stop key. |
23:25:47 | | Join hardeep [0] (1098@208.247.65.237) |
23:25:52 | Stevie[FP] | ah |
23:26:32 | Stevie[FP] | okay |
23:26:32 | elinenbe | hello, hello! |
23:27:03 | Stevie[FP] | the 6k_schematic.pdf indicates taht AN0, AN1, AN2, AN3 are '-', 'MENU', '+', and 'PLAY' |
23:27:06 | Stevie[FP] | is that correct? |
23:27:51 | Zagor | yup |
23:27:58 | Stevie[FP] | what's on AN4-AN7? |
23:28:12 | Zagor | you've already asked that once :-) |
23:28:19 | Stevie[FP] | yeah well |
23:28:55 | Stevie[FP] | while Rockbox seems to use the A/D to detect the pinuts (button.c, at the end) |
23:29:00 | Stevie[FP] | s/pinuts/inputs/ |
23:29:28 | Stevie[FP] | (i.e. on AN0-AN3) |
23:29:30 | Zagor | I *think* AN6 is battery voltage and AN7 is DC voltage, but I'm not sure which models it applies to |
23:29:42 | Stevie[FP] | the Archos firmware looks to be telling the A/D controller to scan AN4-AN7 |
23:30:00 | Stevie[FP] | and it's reading PCDR |
23:30:16 | Stevie[FP] | which is the same pins as ANx |
23:30:48 | Stevie[FP] | is it possible to press both '-' and '+' at the same time on the Player? |
23:31:00 | Stevie[FP] | because I'm getting this: |
23:31:25 | Zagor | no it isn't |
23:31:43 | Stevie[FP] | then something very strange is going on |
23:32:06 | Stevie[FP] | 0x0900A4B6: 0x6011 (read OCP reg PCDR) mov.w @r1, r0; (0x05FFFFD0) = 0x00ff |
23:32:06 | Stevie[FP] | 0x0900A4B8: 0xec00 mov #0x00, r12 |
23:32:06 | Stevie[FP] | 0x0900A4BA: 0xc805 tst #0x05, r0; T=0 |
23:32:06 | DBUG | Sent KICK Stevie[FP] to server |
23:32:06 | Stevie[FP] | 0x0900A4BC: 0x8b02 bf 0x4; 0x0900A4C4 (will branch) |
23:32:06 | Kick | (#rockbox Stevie[FP] :No flooding!) by logbot!~bjst@labb.contactor.se |
23:32:06 | | Join Stevie[FP] [0] (~whatsit2u@65.114.136.196) |
23:32:11 | Stevie[FP] | heh |
23:32:26 | Stevie[FP] | the buttons are active low, i.e. 0==pressed |
23:32:35 | Stevie[FP] | (if I understand everything correctly) |
23:33:01 | Stevie[FP] | that 'bf' will never branch unless PC0 ('-') and PC2 ('+') are both pressed |
23:33:03 | Stevie[FP] | err |
23:33:06 | Stevie[FP] | that 'bf' will always branch unless PC0 ('-') and PC2 ('+') are both pressed |
23:34:29 | | Quit awy[baer] (Read error: 110 (Connection timed out)) |
23:35:27 | Zagor | no that's something else. it looks like they're using the digital inputs, not the ADC |
23:35:42 | Stevie[FP] | according to this schematic |
23:35:47 | Stevie[FP] | PC0 and AN0 are the same pin, #93 |
23:36:19 | Zagor | yeah, but reading PCDR does not give you the ADC value |
23:36:27 | Stevie[FP] | indeed |
23:36:29 | Stevie[FP] | it would give a 1 or a 0 |
23:36:53 | Stevie[FP] | If the buttons are active low |
23:37:00 | Stevie[FP] | i.e. pulled high, pressing the button shorts to ground |
23:37:21 | Stevie[FP] | then reading that value would return a 1 normally, and 0 when pressed |
23:37:39 | | Join sirp [0] (sirpanos@patr530-a061.otenet.gr) |
23:38:08 | Zagor | right. why tf are we reading it analog anyway? :) |
23:38:26 | Stevie[FP] | No idea. |
23:38:41 | Stevie[FP] | maybe it simplifies the code in some way |
23:38:49 | Stevie[FP] | maybe they had a really old version |
23:38:53 | Zagor | no, quite the opposite actually... |
23:39:27 | Stevie[FP] | what's on PA1? |
23:39:48 | | Join tracktheripper [0] (jirc@ACBF3528.ipt.aol.com) |
23:39:53 | Stevie[FP] | wait |
23:39:53 | Stevie[FP] | wtf |
23:39:54 | tracktheripper | hello |
23:40:00 | Zagor | /RAS for DRAM, according to my very old notes |
23:40:05 | * | tracktheripper is feeling very depressed |
23:40:43 | Stevie[FP] | yeah |
23:40:46 | Stevie[FP] | okay |
23:40:47 | Zagor | doesn't seem very likely, since we're reading it in the power code... |
23:40:58 | Stevie[FP] | good |
23:41:06 | Stevie[FP] | so I'm not alone in being thoroughly confused |
23:41:10 | Stevie[FP] | when I see the equivalent of |
23:41:12 | Zagor | it's charger detect |
23:41:15 | Stevie[FP] | 'if (PADR & 1)' |
23:41:20 | Zagor | on players |
23:41:25 | tracktheripper | :| |
23:41:36 | Zagor | tracktheripper: what's up? |
23:41:41 | Stevie[FP] | heh |
23:41:59 | Stevie[FP] | these schematics show it connected to a chip 'IS41C16105' |
23:42:02 | tracktheripper | don't worry Zagor its nothing to do with Rockbox |
23:42:12 | Stevie[FP] | to a pin 'RAS-' so it's probably the DRAM :P |
23:42:19 | Zagor | hehe |
23:42:51 | tracktheripper | i can't get Sokoban to work |
23:44:51 | * | Stevie[FP] watches hisscreen |
23:44:56 | Stevie[FP] | Jukebox 6GB |
23:44:58 | Stevie[FP] | aaaaaaaaaand ATA interrupt |
23:45:35 | Zagor | yay |
23:45:46 | Zagor | or was that bad? ;) |
23:45:53 | Stevie[FP] | that's normal |
23:45:59 | Stevie[FP] | at least I assume it is |
23:46:10 | Stevie[FP] | having no real reference point I can never be 100% certain :P |
23:47:00 | | Nick ricII|work is now known as ricII (~ricv@debianalpha.xs4all.nl) |
23:48:07 | * | Stevie[FP] adds a breakpoint |
23:48:32 | Stevie[FP] | and let us see what it is that may happen, should '-' and '+' both somehow be depressed |
23:48:46 | Stevie[FP] | if (!(PADR & 0x05)) { goto psychoanalyst; } |
23:51:17 | | Quit edx () |
23:53:31 | * | Zagor added a big disclaimer to the Research Notes page... |
23:53:49 | ricII | Stevie[FP]: so qhat are you up |
23:54:50 | Stevie[FP] | heh |
23:54:59 | * | Stevie[FP] has figured that out by now ;) |
23:55:06 | ricII | :) |
23:55:55 | ricII | wasn't u the one asking for rom-images ? |
23:56:12 | Stevie[FP] | yeah, but I got plenty of those now :P thx anyway |
23:56:33 | ricII | just picturing you . |
23:57:15 | Stevie[FP] | holy fsck |
23:57:18 | Stevie[FP] | wtf |
23:57:38 | ricII | ? |
23:57:47 | Stevie[FP] | something wrote to 0x0900f020 |
23:57:51 | Stevie[FP] | the magic global_X |
23:58:15 | *** | Saving seen data "./dancer.seen" |
23:58:19 | ricII | probely have to read back... |