--- Log opened Thu Mar 15 01:04:07 2012 01:04 -!- Keripo [~Keripo@eng197.wireless-resnet.upenn.edu] has quit [Quit: Leaving.] 03:28 -!- [7] [~TheSeven@rockbox/developer/TheSeven] has quit [Disconnected by services] 03:28 -!- TheSeven [~TheSeven@rockbox/developer/TheSeven] has joined #freemyipod 04:20 -!- Keripo [~Keripo@eng197.wireless-resnet.upenn.edu] has joined #freemyipod 05:05 -!- clustur [~logger@c-98-249-104-118.hsd1.tn.comcast.net] has joined #freemyipod 05:05 -!- clustur [~logger@c-98-249-104-118.hsd1.tn.comcast.net] has quit [Remote host closed the connection] 07:06 -!- Wolfie293 [~Lance@c-98-208-104-165.hsd1.ca.comcast.net] has joined #freemyipod 07:12 -!- Wolfie293 [~Lance@c-98-208-104-165.hsd1.ca.comcast.net] has quit [Quit: Leaving] 07:15 -!- ShapeShifter499 [~Lance@95.211.165.246] has joined #freemyipod 07:15 -!- ShapeShifter499 [~Lance@95.211.165.246] has quit [Excess Flood] 07:16 -!- ShapeShifter499 [~Lance@95.211.165.246] has joined #freemyipod 08:34 -!- ShapeShifter499 [~Lance@95.211.165.246] has quit [Excess Flood] 08:39 -!- ShapeShifter499 [~Lance@95.211.165.246] has joined #freemyipod 08:46 -!- ShapeShifter499 [~Lance@95.211.165.246] has quit [Excess Flood] 08:47 -!- ShapeShifter499 [~Lance@95.211.165.246] has joined #freemyipod 09:07 -!- ShapeShifter499 [~Lance@95.211.165.246] has quit [Excess Flood] 09:09 -!- ShapeShifter499 [~Lance@95.211.165.246] has joined #freemyipod 10:35 -!- Keripo [~Keripo@eng197.wireless-resnet.upenn.edu] has quit [Quit: Leaving.] 11:05 -!- clustur [~logger@c-98-249-104-118.hsd1.tn.comcast.net] has joined #freemyipod 11:05 -!- clustur [~logger@c-98-249-104-118.hsd1.tn.comcast.net] has quit [Remote host closed the connection] 11:48 -!- [Saint] [~Saint]@unaffiliated/saint/x-8516940] has joined #freemyipod 11:48 -!- [Saint_] [~Saint]@unaffiliated/saint/x-8516940] has quit [Quit: Quit] 11:50 -!- [Saint_] [~Saint]@unaffiliated/saint/x-8516940] has joined #freemyipod 11:51 -!- [Saint__] [~Saint]@unaffiliated/saint/x-8516940] has joined #freemyipod 11:51 -!- [Saint] [~Saint]@unaffiliated/saint/x-8516940] has quit [Read error: Connection reset by peer] 11:55 -!- [Saint_] [~Saint]@unaffiliated/saint/x-8516940] has quit [Ping timeout: 252 seconds] 13:21 -!- benedikt93 [~benedikt9@unaffiliated/benedikt93] has joined #freemyipod 13:24 -!- [Saint__] [~Saint]@unaffiliated/saint/x-8516940] has quit [Read error: Connection reset by peer] 13:42 -!- ShapeShifter499 [~Lance@95.211.165.246] has quit [Excess Flood] 14:08 -!- [Saint] [~Saint]@unaffiliated/saint/x-8516940] has joined #freemyipod 14:46 -!- [Saint] [~Saint]@unaffiliated/saint/x-8516940] has quit [Remote host closed the connection] 14:48 -!- [Saint] [~Saint]@unaffiliated/saint/x-8516940] has joined #freemyipod 16:12 -!- n1s [~n1s@nl118-175-223.student.uu.se] has joined #freemyipod 16:12 -!- n1s [~n1s@nl118-175-223.student.uu.se] has quit [Changing host] 16:12 -!- n1s [~n1s@rockbox/developer/n1s] has joined #freemyipod 16:19 -!- n1s [~n1s@rockbox/developer/n1s] has quit [Read error: Operation timed out] 16:49 -!- n1s [~n1s@rockbox/developer/n1s] has joined #freemyipod 17:05 -!- clustur [~logger@c-98-249-104-118.hsd1.tn.comcast.net] has joined #freemyipod 17:05 -!- clustur [~logger@c-98-249-104-118.hsd1.tn.comcast.net] has quit [Read error: Connection reset by peer] 17:13 -!- [Saint] [~Saint]@unaffiliated/saint/x-8516940] has quit [Remote host closed the connection] 20:03 -!- benedikt93 [~benedikt9@unaffiliated/benedikt93] has quit [Quit: Bye ;)] 21:03 -!- bossbruv3082 [50bdc2e5@gateway/web/freenode/ip.80.189.194.229] has joined #freemyipod 21:07 < bossbruv3082> Hey, I'm relatively new to development for emCORE and i was wondering why my script (http://practicedhandproductions.com/main.c) causes a data abort on my ipod classic 120gb. Could somebody provide some guidance? Thank you. 21:09 < TheSeven> bossbruv3082: did you compile that with 4K stack size? 21:09 < TheSeven> you're allocating 64K from the stack, so that won't be good :) 21:10 < TheSeven> you might be better off to allocate this from .bss, or to get rid of that huge buffer completely 21:11 < TheSeven> doing that kind of thing generally should be avoided on memory constrained embedded devices :) 21:12 < TheSeven> 64K is not all that much on an ipod, but this still looks a bit wasteful to me, like typical bloaty PC programming... 21:12 < TheSeven> I'm used to devices where I only have like 128K RAM total, so I usually thing about that kind of thing at least twice :) 21:13 < bossbruv3082> Haha true. Could you explain how I should go about allocating memory in the .bss? I'm relatively new to C coding as well. :/ 21:14 < TheSeven> not declare that buffer inside a function, but instead as a global variable 21:15 < TheSeven> basically everything that's allocated inside a function is allocated on the stack, which is 4K total by default, and thus shouldn't be used for huge buffers 21:15 < bossbruv3082> Oh ok thanks. 21:18 < bossbruv3082> I moved the declaration outside of the function and it works now. Thanks a lot! 21:35 -!- n1s [~n1s@rockbox/developer/n1s] has quit [Quit: Ex-Chat] 23:05 -!- clustur [~logger@c-98-249-104-118.hsd1.tn.comcast.net] has joined #freemyipod 23:05 -!- clustur [~logger@c-98-249-104-118.hsd1.tn.comcast.net] has quit [Read error: Connection reset by peer] 23:12 -!- bossbruv3082 [50bdc2e5@gateway/web/freenode/ip.80.189.194.229] has quit [Ping timeout: 245 seconds] 23:34 -!- [Saint] [~Saint]@unaffiliated/saint/x-8516940] has joined #freemyipod 23:44 -!- [Saint_] [~Saint]@101.98.158.103] has joined #freemyipod 23:44 -!- [Saint_] [~Saint]@101.98.158.103] has quit [Changing host] 23:44 -!- [Saint_] [~Saint]@unaffiliated/saint/x-8516940] has joined #freemyipod 23:45 -!- [Saint] [~Saint]@unaffiliated/saint/x-8516940] has quit [Remote host closed the connection] 23:45 -!- [Saint_] is now known as [Saint] --- Log closed Fri Mar 16 00:07:26 2012