Previous day | Jump to hour: 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | Next day

Seconds: Show Hide | Joins: Show Hide | View raw
Font: Serif Sans-Serif Monospace | Size: Small Medium Large

Click in the nick column to highlight everything a person has said.
The Logo icon identifies that the person is a core developer (has commit access).

#rockbox log for 2012-03-05

00:04:35pamaurysaratoga: yes, the sensor reports position and delta
00:05:30saratogaso its basically giving you a bitmap of where someone pushed?
00:06:20 Quit Elfish (Ping timeout: 260 seconds)
00:07:20pamaurysaratoga: not a bitmap because it's single touch
00:07:27saratogaah ok
00:07:28pamaurybut you can get a kind of pressure
00:07:38saratogaso it basically figures out the centroid of whereever you pressed and gives you that?
00:08:07pamauryyes
00:12:01hillshumDoes HID work on all targets with USB support?
00:12:02pamaurybut you get an average of the width of the finger
00:12:10 Join Elfish [0] (amba@fuplz.co.cc)
00:13:34saratogapamaury: does it do anything about trying to extract a motion path or is that up to software to figure out?
00:13:59pamaurythat's up to the software
00:15:26pamauryyou can google it if you want, the interface is called "Synaptics RMI (version 3)"
00:17:24saratogathanks
00:17:24saratogahow frequently does it read out?
00:17:24pamauryyou can choose
00:18:00pamaurymax is 80 times per second I think
00:26:55 Join [Saint] [0] (~Saint]@unaffiliated/saint/x-8516940)
00:30:06 Quit enthdegree (Ping timeout: 272 seconds)
00:30:42 Join Llorean1 [0] (~DarkkOne@99-32-78-58.lightspeed.hstntx.sbcglobal.net)
00:30:42 Quit Llorean1 (Client Quit)
00:31:43 Join enthdegree [0] (~BitchX@unaffiliated/enthdegree)
00:32:01 Join Llorean1 [0] (~DarkkOne@99-32-78-58.lightspeed.hstntx.sbcglobal.net)
00:32:12 Quit Llorean (Ping timeout: 255 seconds)
00:37:07 Quit enthdegree (Ping timeout: 252 seconds)
00:39:09 Join enthdegree [0] (~BitchX@unaffiliated/enthdegree)
00:39:47saratogaipod classic PMU polling thread on the mailing list
00:40:47 Quit pamaury (Remote host closed the connection)
00:41:40 Quit domonoky (Read error: Connection reset by peer)
00:43:39 Quit ender` (Quit: Puritanism - the haunting fear that someone, somewhere, may be happy. -- Henry Mencken)
00:51:41 Quit Rob2223 (Quit: Rob2223)
01:00
01:02:18 Quit bertrik (Ping timeout: 260 seconds)
01:02:24 Quit [Saint] (Ping timeout: 272 seconds)
01:05:48 Quit enthdegree (Ping timeout: 252 seconds)
01:08:15 Join enthdegree [0] (~BitchX@unaffiliated/enthdegree)
01:12:48 Quit prof_wolfff (Ping timeout: 260 seconds)
01:13:56 Quit rarog (Quit: ChatZilla 0.9.88 [SeaMonkey 2.4.1/20111011102430])
01:16:48 Quit enthdegree (Ping timeout: 252 seconds)
01:19:57 Quit lebellium (Quit: ChatZilla 0.9.88 [Firefox 11.0/20120228210006])
01:22:01 Join enthdegree [0] (~BitchX@unaffiliated/enthdegree)
01:35:17***Saving seen data "./dancer.seen"
01:42:56 Join [Saint] [0] (~Saint]@unaffiliated/saint/x-8516940)
01:45:30 Quit thegeek (Read error: Connection reset by peer)
01:45:39 Join thegeek [0] (~thegeek@222.43.202.84.customer.cdi.no)
01:45:57 Join fr3e [0] (~asddf@adsl-74-160-35-146.asm.bellsouth.net)
01:46:59 Join Rob2222 [0] (~Miranda@p4FFD3DF1.dip.t-dialin.net)
01:47:29fr3ehow do i include dmalloc.h in my .c program? after i do 'make zip' it says dmalloc.h cant be found. pretty sure i downloaded dmalloc from its website and made it correctly according the the instructions. http://dmalloc.com/docs/latest/online/dmalloc_3.html#SEC3
01:48:05fr3eand its located in usr/include/dmalloc.h and usr/local/include/dmalloc.h
01:50:28 Join saratoga_ [0] (980329e4@gateway/web/freenode/ip.152.3.41.228)
01:50:44saratoga_fr3e: what are you trying to do with that lib?
01:53:26 Quit dfkt (Quit: -= SysReset 2.55=- Sic gorgiamus allos subjectatos nunc.)
01:55:57 Quit Rob2222 (Ping timeout: 245 seconds)
01:56:08 Nick Llorean1 is now known as Llorean (~DarkkOne@99-32-78-58.lightspeed.hstntx.sbcglobal.net)
01:56:47 Quit Llorean (Changing host)
01:56:47 Join Llorean [0] (~DarkkOne@rockbox/user/Llorean)
02:00
02:00:18fr3esaratoga trying to use malloc and free
02:00:34saratoga_fr3e: yeah of course but how and for what purpose :)
02:03:31fr3esaratoga I keep running out of memory with my multi dimensional array. someone told me mallod would solve my problem. http://pastebin.com/jFnRTVnf
02:04:02saratoga_fr3e: porting that library to rockbox is probably a lot of work for an experienced programmer, as I recall you were the guy who didn't really know much about c programming right?
02:05:08fr3esaratoga_ ye
02:05:10fr3esaratoga_ yes
02:05:47 Quit Thra11_ (Quit: kthxbai)
02:06:00 Join up-milo [0] (~ostrichjo@c-98-192-5-113.hsd1.ga.comcast.net)
02:11:43[Saint]Iirc didn't some also tell you the massive array was a *really* silly way to achieve this? :)
02:11:53[Saint]someone
02:12:34fr3eSaint i can use bitmaps too, either way i need to figure out how to use memory better otherwise its 20 frames vs 40 frames when i want to display 2000
02:13:08JdGordonmallocd isnt going to help you if you havnt figured out that you just cant read the whoel data file into memory at once
02:13:21*[Saint] nods
02:18:11fr3eJdGordon if ive got 100*100 pixels, and ive got 2000 frames, can i have 2000 data files which are each a string of 100x100 characters ?
02:18:17fr3eSaint ^
02:18:39fr3eand then nested loops with drawpixel in my .c file
02:19:09fr3esaratoga ^
02:19:46saratoga_fr3e: i'm not sure if you're the same user, but someone asked something similar recently and got a good explanation of how to do this: http://www.rockbox.org/irc/log-20120222#12:09:12
02:19:53 Quit evilnick (Read error: Connection reset by peer)
02:20:14[Saint]If the explainee is Torne, tis the same.
02:20:39saratoga_fr3e: but yes, what you probably want to do is read pixel's from the disk storage and then display them
02:23:10fr3esaratoga so that would work? and that would not require malloc?
02:23:25saratoga_yes, see the link i posted above
02:24:40 Join passstab [0] (~v@c-68-80-37-73.hsd1.pa.comcast.net)
02:25:36*JdGordon is willing to be that fr3e and superlinuxpro in the link are one and the same
02:25:37fr3esaratoga_ thanks for respoding. so would you recommend having 2000 data files with a string of 100*100 pixels if i wanted to make a "video" with 200 frames with 100*100 pixels ?
02:25:57fr3ewith a string of 100*100 ones or zeroes
02:26:03[Saint]I really don't see the fascination in wanting to do this with individual pixels.
02:26:09saratoga_fr3e: yes, although I'd probably just make one file that has all the pixel values listed sequentially rather then 1000 individual files
02:27:02saratoga_before you do that I'd look into how c arrays work though
02:28:00saratoga_for instance, the code you posted above stores two copies of every pixel, each of which is 8 times larger then it needs to be
02:28:17up-milofr3e, make a 2D array
02:28:19saratoga_ if you're running out of memory it would make sense to only keep one copy of each pixel, and then store that pixel efficiently
02:28:19JdGordonfr3e: you do understand that what you're saying needs 2000*100*100 bytes on disk to do?
02:29:37up-milofr3e, make a 2D array. The first dimension stores the frame number. For the second dimension, each element will be a pair of x and y coordinates where you want to turn a pixel on.
02:30:08fr3esaratoga i think the program was messing up just by declaring a large array ( char array[2000][100][100] ) it made my program not work (screen turned black). do you think that would cause the problem?
02:30:25fr3eJdGordon yes i understand, i just need to know how fix the memory problems
02:31:54saratoga_fr3e: no, because theres no way to compile such code
02:32:51 Join Rob2222 [0] (~Miranda@p4FFD0F79.dip.t-dialin.net)
02:37:24 Quit passstab (Remote host closed the connection)
02:38:32fr3esaratoga_ 8 times cause i could be using bits instead of bytes? what do mean by two copies of every pixel?
02:38:49saratoga_fr3e: is this also you? http://www.rockbox.org/irc/log-20120302#17:21:02
02:39:25saratoga_see the explanation there about why you're double storing things
02:40:13saratoga_heh, you're just asking me the same things that were already explained to you there
02:41:09saratoga_i guess its not so useful to explain things if you're not really familiar with programming
02:41:56saratoga_maybe you should put this aside and do some more basic c exercises until you understand a little more clearly whats going on, rockbox is about the worst possible way to learn c since everything is about as complicated as it can be
02:43:37fr3esaratoga twice as much b/c im not intilializing the array? does that mean char array[1][1];array[0][0]='i'; uses twice as much memory as char array[1][1]='i'; ?
02:51:18saratoga_fr3e: yes, because you're storing two copies of 'i'
02:55:26 Join passstab [0] (~v@c-68-80-37-73.hsd1.pa.comcast.net)
03:00
03:00:12 Quit advcomp2019 (Ping timeout: 252 seconds)
03:00:28 Quit up-milo ()
03:04:41 Quit passstab (Remote host closed the connection)
03:07:18 Join advcomp2019 [0] (~advcomp20@71-213-216-245.sxcy.qwest.net)
03:07:18 Quit advcomp2019 (Changing host)
03:07:18 Join advcomp2019 [0] (~advcomp20@unaffiliated/advcomp2019)
03:08:30 Join woodbeatr [0] (~ostrichjo@c-98-192-5-113.hsd1.ga.comcast.net)
03:08:37 Join passstab [0] (~v@c-68-80-37-73.hsd1.pa.comcast.net)
03:24:54 Quit LambdaCalculus37 (Quit: Fwump)
03:35:21***Saving seen data "./dancer.seen"
03:39:24 Quit saratoga_ (Quit: Page closed)
03:57:37 Join Llorean1 [0] (~DarkkOne@99-32-78-58.lightspeed.hstntx.sbcglobal.net)
03:58:27 Quit Llorean (Ping timeout: 248 seconds)
04:00
04:02:11 Quit perrikwp (Ping timeout: 252 seconds)
04:02:18 Join enth [0] (~BitchX@unaffiliated/enthdegree)
04:02:30 Quit enthdegree (Ping timeout: 246 seconds)
04:10:40 Quit anewuser ()
04:10:54 Nick Llorean1 is now known as Llorean (~DarkkOne@99-32-78-58.lightspeed.hstntx.sbcglobal.net)
04:10:58 Quit Llorean (Changing host)
04:10:58 Join Llorean [0] (~DarkkOne@rockbox/user/Llorean)
04:11:32hillshumWhat's the status of HID these days?
04:12:44 Join [Saint_] [0] (~Saint]@unaffiliated/saint/x-8516940)
04:15:02 Quit [Saint] (Ping timeout: 245 seconds)
04:15:03 Quit amiconn (Disconnected by services)
04:15:04 Join amiconn_ [0] (amiconn@rockbox/developer/amiconn)
04:15:26 Nick amiconn_ is now known as amiconn (amiconn@rockbox/developer/amiconn)
04:15:42 Quit pixelma (Disconnected by services)
04:15:44 Join pixelma_ [0] (pixelma@rockbox/staff/pixelma)
04:15:46 Nick pixelma_ is now known as pixelma (pixelma@rockbox/staff/pixelma)
04:20:33funmannobody's been working on it afaik
04:21:21[Saint_]Does it need it?
04:21:23hillshumEnabled in git?
04:21:30[Saint_]Seems perfectly functional to me.
04:21:38funmanhillshum: manual should say so
04:21:41[Saint_]hillshum: yes.
04:21:53hillshumI didn't see it in the Clip+ manual
04:22:12[Saint_]It should "just work" on any USB enabled target iiuc.
04:23:22 Quit dartmouth (Quit: Leaving)
04:23:39[Saint_]Perhaps its not enabled for this target due to USB not being known stable?
04:23:57[Saint_]Easy enough to check the defines.
04:24:02 Join dys`` [0] (~andreas@krlh-5f71e4c0.pool.mediaWays.net)
04:25:49 Quit dys` (Ping timeout: 265 seconds)
04:27:10fr3eThe lseek() function sets the file pointer associated with the open file
04:27:10fr3e descriptor specified by fildes as follows:
04:27:24fr3eis the "file pointer" the same thing as the "file descriptor" ?
04:29:29 Quit MethoS- (Quit: Konversation terminated!)
04:32:10 Join [Saint] [0] (~Saint]@unaffiliated/saint/x-8516940)
04:34:35*hillshum searched the manual for for "USB" and "HID" and found nothing of revelance
04:36:17 Quit [Saint_] (Ping timeout: 245 seconds)
04:39:22[Saint]It doesn't appear to be enabled, no.
04:40:57 Join dhrasmus [0] (~dhrasmus@174-25-149-87.ptld.qwest.net)
04:41:11 Join [Saint_] [0] (~Saint]@101.98.158.103)
04:41:11 Quit [Saint_] (Changing host)
04:41:11 Join [Saint_] [0] (~Saint]@unaffiliated/saint/x-8516940)
04:42:29[Saint_]hillshum: You could try simply adding #define HAVE_USB_HID_MOUSE to /rockbox/firmware/export/config/sansaclipplus.h
04:43:11[Saint_]not *100%* if that's sufficient, but it seems to be the only HID related define (unless I'm in the *whole* wrong area.).
04:43:29[Saint_]I suspect if I am, I'll be suitably chastised soon enough.
04:44:55 Quit dhrasmus (Client Quit)
04:47:20 Quit passstab (Quit: Leaving)
04:48:45[Saint_]Hmmm....no, it needs USB_HAS_INTERRUPT defined for HID to be enabled.
04:51:42 Join The_prospector [0] (baconmaste@unaffiliated/cornman)
04:55:05[Saint_]You could attempt tp blindly enable it by adding CONFIG_USBOTG USBOTG_S3C6400X to the #elif section for #if defined(HAVE_USBSTACK) in /rockbox/firmware/export/config.h
04:55:16 Join perrikwp [0] (~quassel@cpe-024-163-024-033.triad.res.rr.com)
04:55:28 Quit TheSeven (Disconnected by services)
04:55:43 Join [7] [0] (~TheSeven@rockbox/developer/TheSeven)
04:55:52 Quit enth (Ping timeout: 245 seconds)
04:55:56 Join enthdegree [0] (~BitchX@unaffiliated/enthdegree)
04:56:14[Saint_]and adding HAVE_USB_MOUSE as explained above. Not sure if just blindly enabling it would be such a good idea...but it /probably/ won't do any harm other than "not function as intended".
04:56:25[Saint_]hillshum: ^
04:58:10[Saint_]Oh, wait. there's a slightly more sane way to add it to that define madness.
04:58:18*[Saint_] isn't thinking today.
04:58:21 Join enth [0] (~BitchX@unaffiliated/enthdegree)
04:59:22 Quit randumbum (Quit: ChatZilla 0.9.88 [Firefox 10.0.2/20120216101208])
04:59:43 Quit [Saint] (Ping timeout: 245 seconds)
05:00
05:00:54 Quit enthdegree (Ping timeout: 260 seconds)
05:02:05 Join [Saint] [0] (~Saint]@unaffiliated/saint/x-8516940)
05:05:51 Quit fr3e ()
05:09:37 Quit [Saint] (Ping timeout: 245 seconds)
05:16:37 Join Rob2223 [0] (~Miranda@p4FFD1F98.dip.t-dialin.net)
05:19:47 Quit woodbeatr (Quit: Leaving)
05:20:10 Quit Rob2222 (Ping timeout: 244 seconds)
05:22:58 Quit adnap (Read error: Operation timed out)
05:26:21 Join adnap [0] (~adnap@rrcs-71-42-140-57.sw.biz.rr.com)
05:35:25***Saving seen data "./dancer.seen"
05:42:21 Join saratoga_ [0] (980329e4@gateway/web/freenode/ip.152.3.41.228)
06:00
06:08:29 Quit Rower85 (Quit: Hmmm...)
06:09:17hillshum[Saint_]: It looks like I need to define the Clip+ as having USB interrupts so that config.h will define it as having HID
06:10:36[Saint_]That's correct as far as I can see.
06:11:14[Saint_]Then you'd also need to add HAVE_USB_HID_MOUSE to the target specific config
06:15:52hillshumWould that be #define HAVE_USB_HID_MOUSE ?
06:16:20 Join kadoban [0] (~kadoban@ip98-165-177-158.ph.ph.cox.net)
06:16:33[Saint_]that's correct
06:19:28 Quit tmzt (Ping timeout: 244 seconds)
06:25:13[Saint_]So, basically, uncomment line 1068 in /rockbox/firmware/export/config.h and then insert #define HAVE_USB_HID_MOUSE somewhere in /*/*/*/config/sansaclipplus.h
06:26:33[Saint_]You can append it to the bottom, add it with the other USB related defines, or insert it randomly pretty much anywhere...it doesn't really matter.
06:28:04 Join hillshum_ [0] (~hillshum@71-219-57-106.slkc.qwest.net)
06:28:33 Quit hillshum (Disconnected by services)
06:28:59 Nick hillshum_ is now known as hillshum (~hillshum@71-219-57-106.slkc.qwest.net)
06:35:01hillshum[Saint_]: It built properly
06:35:34[Saint_]I wouldn't have expected otherwise.
06:35:45[Saint_]It may not *work*, though ;)
06:38:20hillshumNope. The MSC is buggy, and HID doesn't work at all
06:38:56hillshumgit clean to erase all my changes?
06:38:58[Saint_]does the HID screen appear at all?
06:39:10[Saint_]git reset −−hard
06:39:19hillshumIt says Keyboard Mode: Multimedia or something to that effect
06:39:39[Saint_]Right, so at least its enabled correctly, its just broken.
06:40:23hillshumpretty much. Should I post any of this to FlySpray, or is this basically already there?
06:40:57[Saint_]I'm not sure enabling something that's deliberately disabled counts as a bug.
06:41:35hillshumTrue.
06:41:58[Saint_]I was kinda hoping it just wasn't enabled due to the fact that USB isn't 100% on these targets, but it seems to be just...broken.
06:44:00hillshumYup. Are the irc logs enough, or should I post/report this elsewhere?
06:44:52[Saint_]From the comment in the config, it seems known that USB_INTERRUPT is broken, so I wouldn't worry.
06:45:20saratoga_i would ask pamaury about it in the morning
06:46:06[Saint_]It was a (reasonably) fun experiment that could have been awesome if it worked, but I'm now pretty positive its intentionally disabled as opposed to being disabled out of neglect.
06:47:20saratoga_given that USB on amsv2 is still a work in progress it may be that no one has bothered to finish HID yet
06:53:18 Nick [Saint_] is now known as [Saint] (~Saint]@unaffiliated/saint/x-8516940)
06:53:27*hillshum should probably test HID on Linux as well
06:55:24saratoga_http://www.rockbox.org/tracker/task/11664#comment39597
06:55:29saratoga_looks like HID was working at some point
06:57:46*hillshum will investigate further tomorrow (or sometime after he quits his job and finishes spring break)
07:00
07:02:01 Join kevku [0] (~kevku@2001:470:28:773::)
07:09:06 Quit ukleinek (Ping timeout: 272 seconds)
07:10:15funmanhillshum: clip+ doesnt work with hid
07:10:37 Join enthdegree [0] (~BitchX@unaffiliated/enthdegree)
07:10:45funmanand yes it apparently worked with pamaury's pio driver
07:12:21hillshumfunman: Yup, just figured that out
07:12:33 Quit enth (Ping timeout: 265 seconds)
07:12:53hillshumthe part about not working, that is
07:13:37 Quit curtism (Quit: Live Long and Prosper)
07:15:18funmanhttp://www.amazon.com/gp/feature.html?ie=UTF8&docId=1000024231 :(
07:16:36 Quit enthdegree (Ping timeout: 260 seconds)
07:20:19funmanhttp://www.amazon.com/gp/offer-listing/B000EP4TWQ/ref=dp_olp_used?ie=UTF8&m=AJ10PXD92SGJY&condition=used
07:20:19saratoga_funman: were you still trying to find a nano2g?
07:20:22funmanyeah
07:20:35saratoga_let me see if I can find mine
07:20:44saratoga_you're in canada right?
07:20:50funmanyep
07:20:57 Quit OzzieJacks (Ping timeout: 246 seconds)
07:21:17saratoga_email me your new address, if i find it i'll ship it this week
07:22:12saratoga_also if you could remind me in a day or two that would be great, i'm really busy this week
07:23:38funmanmgiacomelli@gmail ?
07:25:26saratoga_yeah that works
07:25:38saratoga_and thanks for the spam :)
07:26:02funman^_^
07:31:27 Join tmzt [0] (~tmzt@adsl-76-244-159-183.dsl.akrnoh.sbcglobal.net)
07:35:29***Saving seen data "./dancer.seen"
07:37:02 Join pamaury [0] (~quassel@vit94-1-82-67-248-70.fbx.proxad.net)
07:37:03 Quit pamaury (Changing host)
07:37:03 Join pamaury [0] (~quassel@rockbox/developer/pamaury)
07:48:47 Quit mshathlonxp (Ping timeout: 252 seconds)
07:56:03 Quit saratoga_ (Quit: Page closed)
07:59:43 Quit KiwiCam (Ping timeout: 245 seconds)
08:00
08:05:01 Quit CaptainKewl (Ping timeout: 245 seconds)
08:08:13 Join Zagor [0] (~bjst@46.35.227.87.static.tab.siw.siwnet.net)
08:08:14 Quit Zagor (Changing host)
08:08:14 Join Zagor [242] (~bjst@rockbox/developer/Zagor)
08:12:04[Saint]can a committer please do me a favour and close FS #12254
08:12:06fs-bluebothttp://www.rockbox.org/tracker/task/12254 RaaA cabbiev2 [Full Touch Application Port] (patches, new)
08:12:18[Saint]reason for closing: depricated
08:14:24 Join einhirn [0] (~Miranda@bsod.rz.tu-clausthal.de)
08:19:15 Join stoffel [0] (~quassel@pD9E41EE4.dip.t-dialin.net)
08:21:14pixelmafor some reason I thought you were given flyspray powers but I'd do it if not
08:21:33[Saint]Nope.
08:21:41[Saint]If you could close it, I would appreciate it.
08:21:43[Saint]Thanks.
08:21:46funmanOut of Date?
08:21:55[Saint]depricated.
08:21:59[Saint]moved to github.
08:22:02pixelmaa link to where it's at now?
08:22:07funmanthat's not an option
08:22:37[Saint]Oh, I thought you could specify an arbitrary reason for closing.
08:23:32funmanthere's a drop down with a list + a text comment, not sure who cares about which option i choose :)
08:23:36 Quit pamaury (Ping timeout: 265 seconds)
08:24:03[Saint]It doesn't really matter I guess. If anyone's watching it they'll still get the notification from my last comment and be able to follow it to the post explaining what happened.
08:25:04funmanpixelma: [Saint]: done
08:25:12[Saint]Thankyou.
08:25:19pixelma[Saint]: it would be nice if we could point people where to find it now
08:25:50pixelma"it", your cabbiev2 work
08:25:57[Saint]pixelma: If anyone was following it (several were), my last comment in the thread details where it is now and how to find it and lodge issues against it.
08:26:25pixelmaah, ok
08:26:26[Saint]they'll get the notification from my post, and the closing notification.
08:26:32[Saint]Not ideal, but, it'll work.
08:26:56pixelmahadn't seen it as it's alllll the way down
08:27:57 Join GodEater_ [0] (93722cc9@rockbox/staff/GodEater)
08:30:36 Quit Scromple (Read error: Connection reset by peer)
08:44:08 Join ender` [0] (~ender@foo.eternallybored.org)
08:58:30pixelmaso if no-one else +2s my change on gerrit I have to do it myself to be able to submit it, or is this not necessary?
08:59:15funmanyou can push directly
09:00
09:00:47pixelmado you mean through the gerrit interface (because I don't see a button to do so) or just through git?
09:01:04funmanfrom git. assuming you're on branch master: git push
09:01:28funmanif you had checked out a branch to work on: git push mybranch origin:master
09:02:08pixelmaand that'll just push the one change I assume if it's the only commit I made
09:02:14funmanorigin = remote (you could have several other remotes pointing to github repos for example), :master = push into remote branch master
09:02:18funmanyeah
09:02:37funmanalso, git push −−dry-run (to see what would happen but not complete the push)
09:02:54funmanand git log + git show to check if it's correct before going to the point of no return
09:03:17pixelmathanks, I'll try :)
09:03:20 Join bertrik [0] (~bertrik@ip117-49-211-87.adsl2.static.versatel.nl)
09:03:21 Quit bertrik (Changing host)
09:03:21 Join bertrik [0] (~bertrik@rockbox/developer/bertrik)
09:05:05funmanTorne: are merges allowed in our repo?
09:16:04 Quit stoffel (Remote host closed the connection)
09:21:47 Nick [Saint] is now known as Shojo (~Saint]@unaffiliated/saint/x-8516940)
09:21:57 Nick Shojo is now known as [Saint] (~Saint]@unaffiliated/saint/x-8516940)
09:23:01 Join stripwax [0] (~Miranda@rockbox/developer/stripwax)
09:35:26 Quit bertrik (Ping timeout: 245 seconds)
09:35:32***Saving seen data "./dancer.seen"
10:00
10:00:44 Nick [Saint] is now known as [Saint_] (~Saint]@unaffiliated/saint/x-8516940)
10:00:58 Nick [Saint_] is now known as [Saint__] (~Saint]@unaffiliated/saint/x-8516940)
10:01:07 Nick [Saint__] is now known as [Saint___] (~Saint]@unaffiliated/saint/x-8516940)
10:01:19 Nick [Saint___] is now known as [Saint] (~Saint]@unaffiliated/saint/x-8516940)
10:02:21 Part Zagor
10:08:47 Join wodz [0] (~wodz@iwl138.internetdsl.tpnet.pl)
10:10:59 Join LinusN [0] (~linus@giant.haxx.se)
10:11:33 Join Llorean1 [0] (~DarkkOne@99-32-78-58.lightspeed.hstntx.sbcglobal.net)
10:11:37 Quit Llorean (Ping timeout: 240 seconds)
10:12:47wodzI'd like to move int2le* functions to some common location. This are used in mi4 firmware file handling and in test_codec.c. Is there a common place where such general functions should land?
10:16:46 Quit jordan` (Read error: No route to host)
10:18:46 Join jordan` [0] (~gromit@2001:660:3302:2826:225:90ff:fe20:d9a8)
10:19:47[Saint]wodz: /firmware/common/<foo>?
10:21:43wodzthis was my first guess.
10:21:53 Join DerPapst [0] (~Adium@91-64-115-27-dynip.superkabel.de)
10:22:32wodzThe thing is a bit more complicated as this functions are used as static inline now. I am not sure this makes much difference considering where they are used
10:25:44[Saint]Hummmm...
10:26:03[Saint]I'm not sure what the convention is here (or if there even is one).
10:27:01wodzthats why I'am asking
10:27:43[Saint]Oh, yes. I realize that. I just wish I could be more helpful.
10:28:09funmangeneral.h ?
10:28:28funmanlooks like "throw everything that didn't fit somewhere else" header
10:28:44[Saint]colonel.c? ;)
10:30:17wodzfunman: the first question is if this really matter to inline this explicitely
10:31:03funmanfor code size perhaps
10:32:14funmani think i would keep the duplication if it's only used in 2 unrelated parts
10:33:23 Join TomColler [0] (~thomas@net-93-144-130-56.cust.dsl.teletu.it)
10:41:30 Quit kevku (Quit: KVIrc 4.0.4 Insomnia http://www.kvirc.net/)
10:46:10 Quit stripwax (Read error: Connection reset by peer)
10:52:36 Join randumbum [0] (~IRCclient@173-8-222-138-Oregon.hfc.comcastbusiness.net)
11:00
11:06:10 Join MethoS- [0] (~clemens@134.102.106.250)
11:13:51wodzWhat is misc event handler Cástor Muñoz is talkina about on ML?
11:15:46 Quit kadoban (Ping timeout: 260 seconds)
11:30:37 Join perrikwp_ [0] (~quassel@cpe-024-163-024-033.triad.res.rr.com)
11:32:20 Nick dys`` is now known as dys (~andreas@krlh-5f71e4c0.pool.mediaWays.net)
11:33:18 Quit perrikwp (Ping timeout: 246 seconds)
11:35:34***Saving seen data "./dancer.seen"
11:37:37 Quit hillshum (Ping timeout: 240 seconds)
11:40:31 Quit factor (Read error: Connection reset by peer)
11:45:02 Join evilnick [0] (~evilnick@rockbox/staff/evilnick)
11:50:33Tornefunman: merges cannot be pushed by default; you can opt into allowing it. see the commit policy page on the wiki for a discussion of whether this is a good idea in a particular case and how tod o it
11:51:13 Join Zagor [242] (~bjst@rockbox/developer/Zagor)
11:53:50*[Saint] wonders where JdGordon is.
11:54:01[Saint]whoops, wrong channel.
11:56:06 Join factor [0] (~factor@r74-195-184-248.msk1cmtc01.mskgok.ok.dh.suddenlink.net)
12:00
12:04:50 Join Thra11 [0] (~thrall@188.65.125.91.dyn.plus.net)
12:21:06 Join [Saint_] [0] (~Saint]@unaffiliated/saint/x-8516940)
12:24:43 Quit [Saint_] (Client Quit)
12:26:02 Join Rower85 [0] (husvagn@v-413-alfarv-90.bitnet.nu)
12:27:55 Part Zagor
12:32:25 Join [Saint_] [0] (~Saint]@unaffiliated/saint/x-8516940)
12:47:44 Quit jhMikeS (Ping timeout: 276 seconds)
12:56:51 Join anewuser [0] (~anewuser@190.207.129.184)
12:56:51 Quit anewuser (Changing host)
12:56:51 Join anewuser [0] (~anewuser@unaffiliated/anewuser)
12:59:57 Join [Saint__] [0] (~Saint]@unaffiliated/saint/x-8516940)
13:00
13:01:11 Join pamaury [0] (~quassel@roam-nat-sw-prg-gm-194-254-61-1.net.univ-paris-diderot.fr)
13:01:11 Quit pamaury (Changing host)
13:01:11 Join pamaury [0] (~quassel@rockbox/developer/pamaury)
13:02:40 Join nosa [0] (~m00k@adsl-74-235-42-241.clt.bellsouth.net)
13:04:07 Quit nosa-j (Ping timeout: 240 seconds)
13:04:07 Nick nosa is now known as nosa-j (~m00k@adsl-74-235-42-241.clt.bellsouth.net)
13:04:24 Quit [Saint_] (Ping timeout: 272 seconds)
13:28:04 Quit pamaury (Ping timeout: 248 seconds)
13:31:17 Quit [Saint__] (Remote host closed the connection)
13:35:36***Saving seen data "./dancer.seen"
13:36:35 Quit factor (Ping timeout: 260 seconds)
14:00
14:05:20 Join [Saint_] [0] (~Saint]@unaffiliated/saint/x-8516940)
14:19:18 Join dfkt [0] (dfkt@unaffiliated/dfkt)
14:54:38 Quit nosa-j (Read error: Connection reset by peer)
14:55:41 Join nosa-j [0] (~m00k@adsl-74-235-42-241.clt.bellsouth.net)
15:00
15:11:51 Quit wodz (Quit: Leaving)
15:22:21 Quit randumbum (Quit: ChatZilla 0.9.88 [Firefox 10.0.2/20120216101208])
15:35:39***Saving seen data "./dancer.seen"
15:45:02 Nick Llorean1 is now known as Llorean (~DarkkOne@99-32-78-58.lightspeed.hstntx.sbcglobal.net)
15:45:09 Quit Llorean (Changing host)
15:45:09 Join Llorean [0] (~DarkkOne@rockbox/user/Llorean)
16:00
16:03:16 Join WalkGood [0] (~4@unaffiliated/walkgood)
16:09:41 Join factor [0] (~factor@r74-195-184-248.msk1cmtc01.mskgok.ok.dh.suddenlink.net)
16:12:07 Join jhMikeS [0] (~jethead71@c-68-61-166-99.hsd1.mi.comcast.net)
16:12:07 Quit jhMikeS (Changing host)
16:12:07 Join jhMikeS [0] (~jethead71@rockbox/developer/jhMikeS)
16:18:20 Quit GodEater_ (Ping timeout: 245 seconds)
16:20:38 Join GodEater_ [0] (93722cc9@rockbox/staff/GodEater)
16:25:58 Join petur [0] (~petur@rockbox/developer/petur)
16:46:17 Quit anewuser (Ping timeout: 244 seconds)
16:51:52 Join passstab [0] (~v@c-68-80-37-73.hsd1.pa.comcast.net)
16:56:13 Join nosa [0] (~m00k@adsl-74-235-79-131.clt.bellsouth.net)
16:57:40 Quit nosa-j (Ping timeout: 248 seconds)
16:57:40 Nick nosa is now known as nosa-j (~m00k@adsl-74-235-79-131.clt.bellsouth.net)
17:00
17:08:40 Join mortalis [0] (~mortalis@77.108.98.176)
17:09:22 Join benedikt93 [0] (~benedikt9@unaffiliated/benedikt93)
17:11:49 Join pamaury [0] (~quassel@vit94-1-82-67-248-70.fbx.proxad.net)
17:11:49 Quit pamaury (Changing host)
17:11:49 Join pamaury [0] (~quassel@rockbox/developer/pamaury)
17:12:19 Join kadoban [0] (~kadoban@ip98-165-177-158.ph.ph.cox.net)
17:22:59 Quit petur (Quit: here today, gone tomorrow)
17:34:42 Join mshathlonxp [0] (~ventil@84.237.141.70)
17:35:41***Saving seen data "./dancer.seen"
17:52:35 Quit passstab (Ping timeout: 276 seconds)
17:53:13 Part LinusN
17:54:49 Join passstab [0] (~v@c-68-80-37-73.hsd1.pa.comcast.net)
17:57:10 Join randumbum [0] (~IRCclient@c-71-193-176-198.hsd1.wa.comcast.net)
17:57:41 Join y4n [0] (y4n@unaffiliated/y4ndexx)
17:58:53 Part mc2739
18:00
18:01:14 Quit einhirn (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org)
18:04:39 Join liar [0] (~liar@clnet-p09-185.ikbnet.co.at)
18:06:00 Join mc2739 [0] (~mc2739@rockbox/developer/mc2739)
18:19:54 Quit WalkGood (Quit: ♪ ♫ ♪ ♫ ♪ ♫ ♪)
18:22:27 Join dhrasmus [0] (~dhrasmus@c-98-246-192-57.hsd1.or.comcast.net)
18:31:07 Join Topy44 [0] (~Topy44@f048108088.adsl.alicedsl.de)
18:31:59 Join domonoky [0] (~Domonoky@rockbox/developer/domonoky)
18:34:11 Quit Topy (Ping timeout: 276 seconds)
18:54:44 Join bertrik [0] (~bertrik@ip117-49-211-87.adsl2.static.versatel.nl)
18:54:45 Quit bertrik (Changing host)
18:54:45 Join bertrik [0] (~bertrik@rockbox/developer/bertrik)
18:55:27pamauryHum, I highly suspects that there are two versions of the zen x-fi2, one with internal nand and one with internal sd
18:55:39 Join kevku [0] (~kevku@2001:470:28:773::)
18:59:52dfktpamaury, theoretical question - if rockbox someday might work on the x-fi3, would it support the x-fi's apt-x bluetooth profile? (afaik, still the only player on the market that supports the only good sounding BT audio transfer)
19:00
19:00:54pamaurydfkt: I would like to implement bluetooth support, as for apt-x I have no idea if it's a pure hardware thing or there is some hardware involved but yeah there would be some interest in implementing it
19:01:17dfkti see, great :)
19:01:38pamaurybut first, make the x-fi3 work :) Then implement a bluetooth stack :D
19:01:42dfktheh
19:01:56 Join saratoga_ [0] (980329e4@gateway/web/freenode/ip.152.3.41.228)
19:02:17dfkti have a loaner x-fi3 from a friend... apt-x is great, but the rest is truly appalling
19:02:31pamauryyeah, the OF is not great
19:02:50dfktyeah, you have to enable BT after each start, for example
19:02:57dfktUI is very slow
19:03:17 Join prof_wolfff [0] (~prof_wolf@82.159.9.243.dyn.user.ono.com)
19:03:23pamauryI haven't tested BT but the UI is damn slow for no good reason you're right
19:05:22saratoga_dfkt: i think apt-x can be done in software or via an ASIC on a board
19:06:39pamaurydfkt: that's not that simple, the BT hardware probably has a special interface to send audio data
19:06:43pamaury*saratoga_
19:07:17pamauryso you don't necessarly have control over the compression format
19:08:58saratoga_yeah, but what i mean is that the apt-x people sell both a software encoder for their codec, and dedicated ASICs for it
19:09:15saratoga_so in theory creative could have used either approach in their BT implementation
19:10:04 Join curtism [0] (~curtis@unaffiliated/programble)
19:24:57 Quit benedikt93 (Quit: Bye ;))
19:25:35 Join bitcraft [0] (~bitcraft@66.254.199.148)
19:28:15 Quit bitcraft (Read error: Connection reset by peer)
19:28:27 Join bitcraft [0] (~bitcraft@66.254.199.148)
19:29:19 Quit DerPapst (Quit: Leaving.)
19:35:44***Saving seen data "./dancer.seen"
19:37:46 Join lebellium [0] (~chatzilla@f052243040.adsl.alicedsl.de)
19:41:42 Quit mortalis (Quit: KVIrc 4.1.1 Equilibrium http://www.kvirc.net/)
19:43:32 Quit dhrasmus (Quit: Leaving)
19:47:05 Join n1s [0] (~n1s@nl118-175-223.student.uu.se)
19:47:06 Quit n1s (Changing host)
19:47:06 Join n1s [0] (~n1s@rockbox/developer/n1s)
19:54:46 Join TheLemonMan [0] (~LemonBoy@adsl-ull-155-201.50-151.net24.it)
20:00
20:06:47 Quit liar (Read error: Connection reset by peer)
20:07:17 Join liar [0] (~liar@clnet-p09-185.ikbnet.co.at)
20:10:16CIA-44Commit 4601a8b in rockbox by pixelma: Manual: Fix misaligment in the 'Images' theme tags table.
20:11:47 Quit liar (Ping timeout: 245 seconds)
20:12:02*pixelma hopes that went correctly
20:13:36CIA-444601a8b build result: All green
20:13:50pixelmaif I look at the diff link from the homepage, there are magenta marks - what do those mean?
20:14:22pixelmameh, others don't have that
20:14:37 Join liar [0] (~liar@clnet-p09-185.ikbnet.co.at)
20:14:57gevaertspixelma: the 68/168/2?
20:15:03pixelmayes
20:15:11gevaertsThat's the gerrit id
20:15:26pixelmathat's fine then?
20:15:29gevaertsyes
20:15:35pixelmaok, thanks
20:17:27 Quit TomColler (Read error: Operation timed out)
20:17:32pixelmaaha, gerrit noticed the push too and closed the task I guess
20:17:42gevaertsyes
20:17:57gevaertsThat's the advantage of an integrated system :)
20:18:45pixelmasuch a tiny change but I still am relieved that it went ok it seems :)
20:22:50 Quit bitcraft (Ping timeout: 246 seconds)
20:29:30 Join Thra11_ [0] (~thrall@161.46.125.91.dyn.plus.net)
20:29:50 Quit Thra11 (Ping timeout: 246 seconds)
20:30:44 Quit [Saint_] (Ping timeout: 260 seconds)
20:32:32funmansaratoga_: ping, did you put the hand on your nano?
20:32:49saratoga_crap no i forgot to check in my car this morning
20:34:37 Join bitcraft [0] (~bitcraft@66.254.199.148)
20:35:08 Join [Saint_] [0] (~Saint]@unaffiliated/saint/x-8516940)
20:39:30 Join fml [0] (~chatzilla@manz-590efcf0.pool.mediaWays.net)
20:40:19fmlBagder: Torne: Hello. Could you please add me to the gerrit committers group?
20:43:46fmlWhat should I do if I have created a git branch off the master branch, made a commit, uploaded it to gerrit, and now want to improve the change? Just make further changes and then git commit −−amend?
20:52:23 Join [Saint__] [0] (~Saint]@unaffiliated/saint/x-8516940)
20:56:38 Quit [Saint_] (Ping timeout: 265 seconds)
20:56:58 Quit [Saint__] (Ping timeout: 260 seconds)
20:59:34 Quit GodEater_ (Ping timeout: 245 seconds)
20:59:59 Quit saratoga_ (Ping timeout: 245 seconds)
20:59:59 Quit saratoga (Ping timeout: 245 seconds)
21:00
21:03:14 Join [Saint_] [0] (~Saint]@unaffiliated/saint/x-8516940)
21:03:18bluebrother^pixelma: your realname isn't set up correctly with git :)
21:03:50bluebrother^AlexP: I was thinking about releasing Rockbox Utility regardless of the mkamsboot issue.
21:04:26bluebrother^pushing a release now doesn't make the situation worse, and it does fix two rather ugly issues for several people (SAPI and Fuze+ bootloader, both Windows only)
21:08:03 Quit [Saint_] (Ping timeout: 260 seconds)
21:18:33 Quit y4n (Quit: AMIGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAHAHAHAAAAAAAAAAAAHAHAAA)
21:19:24 Quit pamaury (Remote host closed the connection)
21:33:16 Quit passstab (Remote host closed the connection)
21:35:46***Saving seen data "./dancer.seen"
21:37:28bluebrother^AlexP: any comments?
21:37:45AlexPbluebrother^: Sorry, missed that
21:38:01bluebrother^no problem :)
21:38:09AlexPHas there been any discussion on whether workgroups will have AMS USB?
21:38:33bluebrother^none that I'm aware of, but I haven't been following IRC closely
21:38:59bluebrother^but regardless IMO a new release of Rockbox Utility won't make the situation worse.
21:39:12bluebrother^I still think that dependency should be removed in some way.
21:39:22AlexPYes, in the longer term
21:39:51AlexPBut I'm just thinking that if 3.11 doesn't have USB, then we will need yet another release of rbutil before the release of 3.1 to reverse the bootloader won't we?
21:39:56AlexP*3.11
21:40:11bluebrother^if we want to change the behaviour, yes.
21:40:30bluebrother^OTOH we could simply announce it in the release notes.
21:41:12bluebrother^I was thinking about a way to show the release notes to the users during installation. Might be a good thing if we had some "fixed" version of the release notes in plain text on the webserver.
21:41:20bluebrother^along the builds
21:41:28AlexPyes, that could be nice
21:41:50AlexPHow annoying is the behaviour at the moment?
21:42:09bluebrother^then Rockbox Utility could download that and simply display it. Maybe do some simple formatting. Some simplified markup / down / rst / ...
21:42:18bluebrother^no idea, I don't have an affected player :)
21:42:38bluebrother^from my understanding the problem is simply that people aren't aware that they need to boot the OF manually first.
21:42:55AlexPDoesn't sound too bad
21:42:56bluebrother^and Rockbox doesn't reboot into the OF for USB (as we did with Ipods)
21:43:15AlexPI'd have to defer to people who are affected by it
21:43:31LloreanI think that the bootloader used to default to booting to the OF if it detected USB after poweroff, and now it doesn't.
21:43:40LloreanSo it was a change of behavior for some people when they updated the bootloader
21:43:45bluebrother^yes, that's the change.
21:44:16bluebrother^the problem isn't that it changed when updating the bootloader but when installing the bootloader with a newer version of Rockbox Utility.
21:44:38bluebrother^so if someone want the old behaviour back (s)he could install the bootloader using an older version of Rockbox Utility
21:44:51bluebrother^(which is the dependency that shouldn't be there IMO)
21:45:22bluebrother^but since we don't support older versions of Rockbox Utility one can say it's when updating the bootloader
21:45:57AlexPYeah
21:45:57 Quit bitcraft (Ping timeout: 245 seconds)
21:46:17AlexPWell in that case probably go ahead and then get working on removing the dependency :P
21:46:21AlexPgevaerts: opinions?
21:46:32bluebrother^that was my though :)
21:47:01*gevaerts agrees
21:47:27bluebrother^how long until 3.11 is planned? 3 weeks?
21:48:04gevaertstwo
21:48:15gevaertsUnless blockers appear
21:48:19bluebrother^hmm.
21:48:49bluebrother^I was thinking about adding some changelog / release notes display after installation.
21:49:10bluebrother^though I might not get that done by then. Too much other stuff these days ...
21:49:25bluebrother^and we need to define where to download those information to display :)
21:49:28 Join bitcraft [0] (~bitcraft@66.254.199.148)
21:51:30*bluebrother^ wonders if we can come up with a text format and a script to convert that to wiki markup
21:51:39bluebrother^a simple text format that is
22:00
22:01:31 Quit kevku (Ping timeout: 260 seconds)
22:02:28pixelmabluebrother^: sorry, I can't remember reading something about this on UsingGit and first committed it to gerrit which had the real name correctly
22:03:47pixelmaalthough I then pushed directly
22:14:58 Join bluebrother [0] (~dom@g231121090.adsl.alicedsl.de)
22:14:58 Quit bluebrother (Changing host)
22:14:58 Join bluebrother [0] (~dom@rockbox/developer/bluebrother)
22:15:24bluebrotherspeaking about dates: has there been any talk about DevCon for this year? Especially about when it's supposed to happen?
22:16:19 Quit bluebrother^ (Read error: Operation timed out)
22:16:21bluebrotherwould be good to be able doing some time-planning
22:17:54 Quit TheLemonMan (Quit: WeeChat 0.3.7)
22:19:05 Quit fs-bluebot (Ping timeout: 276 seconds)
22:20:27 Join fs-bluebot [0] (~fs-bluebo@g231121090.adsl.alicedsl.de)
22:22:57 Quit n1s (Quit: Ex-Chat)
22:28:22 Join WalkGood [0] (~4@unaffiliated/walkgood)
22:30:16 Quit bitcraft (Remote host closed the connection)
22:35:41 Join DerPapst [0] (~Adium@91-64-115-27-dynip.superkabel.de)
22:39:00 Join skx` [0] (~skx@78-20-20-27.access.telenet.be)
22:40:31skx`www.rockbox.org/tracker/task/11917
22:40:59skx`does anyone have a workaround for this problem?
22:41:59skx`usb mode is enabled by default each time i launch my ipod nano 2g with car adapter attached when i'm to slow to push and hold the play button
22:42:24skx`is there no way to disable usb mode by default?
22:42:50[Saint]hold any key while inserting USB.
22:43:05[Saint]Then it will go into "Charge Only" mode.
22:44:01skx`yes but my car charger is always attached and this would mean i always have to take my ipod in my hands to press and hold a key when launching my car
22:44:26skx`this feels weird to be honest
22:44:35[Saint]launching your car? 0.o
22:44:43skx`starting ;)
22:44:53[Saint]And, yes...this is the only option.
22:45:11skx`a software solution would be great :(
22:45:19skx`i think many are experiencing the same
22:45:44skx`something defined in settings maybe? disable/enable usb mode?
22:46:06[Saint]Patches are welcome.
22:46:32skx`heh :)... i'm more an experience beta patches tester ;)
22:46:33[Saint]Unfortunately, this is the only option other than compiling your own build with USB disabled completely in Rockbox.
22:47:01 Join enthdegree [0] (~BitchX@unaffiliated/enthdegree)
22:47:43 Join wtachi [0] (~wtachi@cpe-069-134-168-033.nc.res.rr.com)
22:47:45skx`is it something straightforward? like commenting something out in the source? i doubt it :(
22:48:45[Saint]Actually, it is.
22:48:51skx`O___o
22:50:47 Join passstab [0] (~v@c-68-80-37-73.hsd1.pa.comcast.net)
22:51:42[Saint]All you would need to do is comment out the set of USB related defines in /rockbox/firmware/export/config/ipodnano2g.h
22:52:59skx`the problem is I will have to reflash with a default rockbox eacht time i want to put some fresh music on the player, right?
22:53:14[Saint]We have dual-boot.
22:53:26fmlBagder: Hello. Have you seen my request re. adding to the gerrit committer group?
22:53:33bluebrotherreflash?
22:53:36skx`care to explain dual boot?
22:53:56[Saint]skx`: You could simply boot into the Apple firmware to transfer files.
22:54:16bluebrotherdual boot on the Ipod is the same as dualbooting your PC :)
22:54:31[Saint]Rockbox leaves the original firmware intact.
22:54:41[Saint]So you could still use Apple's Disk Mode.
22:55:10 Quit fml (Quit: ChatZilla 0.9.88 [Firefox 10.0.2/20120215223356])
22:55:23skx`okay i see... but do i see the whole folder structure while being connected through apple usb mode?
22:55:42[Saint]Yes.
22:55:49skx`perfect
22:55:55skx`thanks [Saint]
22:56:01[Saint]Not a problem.
22:56:02skx`will look into this :)
22:56:10bluebrotherremember that you need to reset the Ipod to leave Apples firmware
22:56:41[Saint]Our fine wiki will assist you in creating a development environment, checking out the sources, and compiling a build.
22:57:00[Saint]And you can always ask for help here, too.
22:57:50skx`thanks :)
22:57:57[Saint]Not a problem.
23:00
23:02:58 Join pamaury [0] (~quassel@vit94-1-82-67-248-70.fbx.proxad.net)
23:02:59 Quit pamaury (Changing host)
23:02:59 Join pamaury [0] (~quassel@rockbox/developer/pamaury)
23:05:39 Quit WalkGood ()
23:17:40skx`http://www.rockbox.org/tracker/task/10198
23:17:50skx`there seems to be already patches available
23:18:27skx`probably already outdated
23:18:56skx`just wondering why this was not included in the main rockbox port already
23:23:17 Join [Saint_] [0] (~Saint]@unaffiliated/saint/x-8516940)
23:25:30 Quit [Saint_] (Client Quit)
23:28:30 Quit liar (Quit: hallowed are the ori!)
23:29:36 Quit enthdegree (Ping timeout: 240 seconds)
23:31:38 Join Scromple [0] (~Simon@119.225.209.134)
23:35:49***Saving seen data "./dancer.seen"
23:41:25[Saint]JdGordon: I was going to ask...is it possible that we could attempt to center align builds for a smaller resolution on larger resolution targets as opposed to aligning at 0,0?
23:41:36*[Saint] thinks this would make for a much nicer effect.
23:42:05[Saint]And, assuming it is possible, where do I look to start poking at this?
23:44:26kugeltalking about RaaAoa?
23:48:14*[Saint] nods
23:48:47[Saint]kugel: Are you aware of where I should start poking at this?
23:49:29kugelyes :)
23:51:00[Saint]Do you wanna share? :)
23:53:47[Saint]kugel: ^
23:54:01bluebrother[Saint]: doesn't look like :P
23:54:22kugelRockboxFramebuffer.java
23:54:34[Saint]bah!
23:54:50[Saint]grumble grumble...stoopid Java...grumble grumble
23:55:10[Saint]Also, thanks.
23:55:32kugelget the resolution from the metrics and calculate the offset for x and y for java_lcd_update/_rect
23:55:40 Quit factor (Read error: Connection reset by peer)
23:56:07PoodlemastahJust kidding with you my cat is a really nice watchdog.
23:56:22[Saint]0.o
23:56:27PoodlemastahUhm, sorry, wrong channel.
23:56:32[Saint]heh.

Previous day | Next day