**** BEGIN LOGGING AT Sat Jun 14 02:59:58 2014 Jun 14 09:37:58 * karki returns from the hospital :) Jun 14 12:04:53 welcome back karki :) Jun 14 12:19:45 * karki is back, not up and running :/ Jun 14 15:52:37 karki: get well Jun 14 17:06:39 vvu: I suppose our next updates are due for Wednesday? or do we have to give an update on Monday as well? Jun 14 17:07:44 mranostay: How many miles this week? Jun 14 17:10:24 Abhishek_: http://www.strava.com/athletes/2543513 Jun 14 17:10:42 was evil and drove two days of that Jun 14 17:16:53 you mean off that? Jun 14 17:18:05 alexanderhiam: where should the spi.py be? inside platform/beaglebone/ or inside platform/beaglebone/3.8 Jun 14 17:18:33 and can I name it spi.py or do you want it to be named something else? Jun 14 17:19:32 Abhishek_: think wed the same Jun 14 17:19:47 monday is just meeting to check the sutff if you have any questions Jun 14 17:54:31 rseethamraju: spi.py is a fine name, and let's stick it in 3.8 for now since it includes loading overlays Jun 14 17:56:42 alexanderhiam: I put the C extension file in util and I’m updating the setup.py like I did for kernelfileio. Is that ok? Jun 14 17:57:29 sounds good Jun 14 17:57:31 and inside lib/firmware there are 2 spi overlays Jun 14 17:57:46 adafruits and BB-SPIDEV something Jun 14 17:57:59 I have to use the BB-SPIDEV? Jun 14 17:58:12 right, let's use the BB-SPIDEV ones for now Jun 14 17:58:22 we may want custom overlays eventually though Jun 14 17:58:36 did you know that adafruit’s SPI library uses the same spimodule you gave me Jun 14 17:58:53 yeah, it's kinda the go to one for Python SPI Jun 14 17:59:03 oh ok Jun 14 18:06:36 anyone here did any hacking on the Pebble smartwatch? Jun 14 18:13:07 anyone here experienced HTML large file persistent storage? Jun 14 18:13:35 s/experienced/experimented with Jun 14 18:16:26 Abhishek_: what questions do u have ? Jun 14 18:16:36 i have some html hackers in my cs club maybe i can fwd em Jun 14 18:18:20 I wanted to store data streamed from my BBB onto my PC, maybe a large file like > 100 MB. Jun 14 18:19:39 essentially: a backend in node.js pushing data via sockets from a char device and the web page receiving the data and offering a file for download [something like when you download using MEGA] Jun 14 18:20:02 so mainly store data until ready for download ? Jun 14 18:20:32 yep, something like receive streamed data and store it on the PC side, until ready for download Jun 14 18:20:55 so do you have working code or just started working on this ? Jun 14 18:21:33 I'm about to start, just read up a bit on HTML5 persistent storage and stuff Jun 14 18:21:54 ok so if you have questions post em here i can ask some peeps Jun 14 18:22:13 this is the next stage of work once the kernel module and PRU firmware goes into beta Jun 14 18:23:07 * Abhishek_ has to push sigrok in between the logic device and the network stream as well. Jun 14 18:23:21 *libsigrok Jun 14 18:25:57 Abhishek_: is the web page always served by the same machine running that node.js backend? Jun 14 18:27:12 alexanderhiam: yes, the BBB always Jun 14 18:28:17 why not just stream to a file and have the server serve that file when requested by the user? Jun 14 18:29:58 oh nvm, you're streaming the data to the browser for display anyway aren't you Jun 14 18:30:15 you could do both though Jun 14 18:30:51 yeah can, I was just thinking of a way that would keep the flash storage happy. Jun 14 18:31:36 so all the generated data is just streamed out and wears out the PC storage :) Jun 14 18:31:53 you might make the browser unhappy if you're storing all that on its stack Jun 14 18:32:20 might have to develop some kind of a plugin if that's the case Jun 14 18:32:28 * Abhishek_ wonders how MEGA does it Jun 14 18:33:17 MEGA? Jun 14 18:33:33 yeah mega.co.nz, that file sharing website Jun 14 18:36:00 server side storage + clever buffering I'd guess Jun 14 18:36:24 oh, do they not display files? Jun 14 18:36:39 * vvu wonders who uses ADK in the real world Jun 14 18:36:45 I don't think they do Jun 14 18:37:31 the phone dockmakers I'd guess Jun 14 18:39:11 if i would only see some accessories for android being built Jun 14 18:44:14 turns out IndexedDB/FileSystem[Chrome only] are the best bets for local storage Jun 14 18:45:27 Abhishek_: I would recommend settling for less than the best if it can support all/most browsers Jun 14 18:47:56 yep, I found this: https://github.com/tantaman/LargeLocalStorage , looks like could fit my needs Jun 14 18:50:56 neat Jun 14 19:04:57 puurfect Abhishek_ Jun 14 19:05:01 let the hacking begin Jun 14 19:08:14 :) Jun 14 19:08:22 * Abhishek_ is now back on the kernel module Jun 14 21:15:39 Latest commit: https://github.com/abhishek-kakkar/BeagleLogic/commit/2b3b4a30cf098d0dafc9fd0534c0c5e7cbfa1868 Jun 14 21:39:45 vvu: The adk mode setup worked. Jun 14 21:40:24 The device on connecting, disconnected by itself and re-attached in adkmode. Jun 14 21:40:42 I'm pushing the code. Jun 14 21:41:00 Will do the cleanup in the later pushes. Jun 14 21:47:46 praveendath92: perfect Jun 14 21:48:09 do a cleanup as fast as possible so the code u write from now to be well structured and nicely formatted Jun 14 21:48:17 also do check_patch.pl on the src file Jun 14 21:48:38 Doing it. Jun 14 21:50:36 i don't even know what to do in the probe function for the devices that are not in ADK mode Jun 14 21:50:49 cuz you need to have just the control ep which is always ep0 Jun 14 21:51:01 we need to adapt this driver to work with devices after they switch to adk mode Jun 14 21:51:16 and to handle all pid possible Jun 14 21:51:48 All Pids? Jun 14 21:52:05 Just the audio+adb mode is fine right? Jun 14 21:52:09 for adk Jun 14 21:52:38 0x2D05 /* accessory + audio + adb */ Jun 14 21:53:03 I'm planning to work with that mode. Jun 14 21:53:49 mhmh we should support all adk ones Jun 14 21:53:52 not so much hassel Jun 14 21:54:00 maybe we can pass them as module parameters Jun 14 21:55:01 anyway my internet is going to close at 00:00 so talk 2morrow :) Jun 14 21:55:06 good night Jun 14 21:55:14 Yeah. Jun 14 21:55:32 I will do this cleanup and sleep. Jun 14 21:55:38 Good night :) Jun 14 21:55:39 oki Jun 14 21:55:43 gn **** ENDING LOGGING AT Sun Jun 15 02:59:58 2014