*** tpb has joined #timvideos | 00:00 | |
*** cr1901_modern has quit IRC | 01:04 | |
*** cr1901_modern has joined #timvideos | 01:16 | |
mithro | John_K: any luck? | 02:00 |
---|---|---|
Ishan_Bansal | mithro : ping | 03:03 |
mithro | Ishan_Bansal: Pong | 03:09 |
*** rohitksingh_work has joined #timvideos | 03:09 | |
Ishan_Bansal | mithro : Anything further on the final GSOC report and about the pull request ? | 03:10 |
mithro | Ishan_Bansal: I'll look now, if I haven't said anything in ~15 minutes poke me again | 03:10 |
*** CarlFK has joined #timvideos | 03:11 | |
*** ChanServ sets mode: +v CarlFK | 03:11 | |
mithro | Ishan_Bansal: There are quite a few comments on https://github.com/timvideos/litejpeg/pull/2/files which you have not replied too... | 03:18 |
tpb | Title: Adding RLE-core module for JPEG encoder by ishan98 · Pull Request #2 · timvideos/litejpeg · GitHub (at github.com) | 03:18 |
mithro | Ishan_Bansal: Where is the project documentation btw? | 03:32 |
Ishan_Bansal | mithro : What am I supposed to write in the project documentation ? | 03:34 |
Ishan_Bansal | As I though the top level design of the JPEG is sufficient for that. | 03:35 |
mithro | Ishan_Bansal: I assume you took those diagrams in your GSoC final report from the project documentation? | 03:35 |
Ishan_Bansal | mithro : are you talking about the GSOC report in the wordpress ? | 03:36 |
Ishan_Bansal | the one on my blog. | 03:38 |
mithro | Ishan_Bansal: Remember I mentioned that you needed a "Final GSoC Report" and "High level project documentation" ? | 03:38 |
*** ChanServ sets mode: +v thaytan_ | 03:41 | |
*** thaytan_ is now known as thaytan | 03:41 | |
Ishan_Bansal | mithro : OK. What is been expected in the "High level project documentation", may be previously I misinterpret this one. | 03:41 |
mithro | Ishan_Bansal: This style of thing -> https://m-labs.hk/migen/manual/ | 03:42 |
mithro | Ishan_Bansal: Another example -> https://docs.google.com/document/d/1sEhcLmseSLfqr2kH5UtSyMhg5yaNTnCkdNkSvA_ayq4/edit | 03:44 |
tpb | <http://ln-s.net/-HFV> (at docs.google.com) | 03:44 |
mithro | Ishan_Bansal: Have you tried generating the API documentation from the strings inside the code using sphinx? | 03:45 |
Ishan_Bansal | mithro : till nw, No. | 03:46 |
Ishan_Bansal | may be I work on it today | 03:47 |
mithro | Ishan_Bansal: Okay, sorry that was my bad - I assumed you understand why we were requiring the documentation to be in a certain format | 03:47 |
mithro | Ishan_Bansal: http://www.sphinx-doc.org/en/stable/ | 03:47 |
tpb | Title: Overview Sphinx 1.6.4+ documentation (at www.sphinx-doc.org) | 03:47 |
mithro | Ishan_Bansal: You can see how migen creates the docs I linked above at https://github.com/m-labs/migen/tree/master/doc | 03:48 |
tpb | Title: migen/doc at master · m-labs/migen · GitHub (at github.com) | 03:48 |
mithro | Ishan_Bansal: You can reuse a whole bunch of stuff from your GSoC report - IE the diagrams, and "How to Replicate Results" results sections | 03:49 |
mithro | Ishan_Bansal: Hopefully it isn't too much work! | 03:54 |
mithro | Ishan_Bansal: Once you have fixed all my comments on your code, make sure you have replied "fixed" on each one and then ping me here on IRC and I'll merge it | 03:54 |
Ishan_Bansal | mithro : sure, I have a class now in about 15 min, I will come back in 2-3 hours . | 03:56 |
mithro | Okay | 03:56 |
paddatrapper | mithro: Not as such. Seems the condition I'm waiting for while(!(EP8CS & EPEMPTY)) is wrong | 04:25 |
*** paradisaeidae_ has joined #timvideos | 04:43 | |
*** paradisaeidae_ has quit IRC | 05:18 | |
*** paradisaeidae_ has joined #timvideos | 05:22 | |
mithro | paddatrapper / Ishan_Bansal: I have an hour before I have to leave for the night | 06:30 |
mithro | So ask your questions now! :-P | 06:30 |
paddatrapper | mithro:do you have any suggestions for what to use instead to check if the FIFO buffer is empty? (essentially I need to read from it until then) | 06:31 |
mithro | paddatrapper: What do you mean by "empty"? | 06:31 |
paddatrapper | mithro: I write each buffer byte-by-byte, so I need to continue until I've read the entire buffer | 06:32 |
mithro | paddatrapper: You want to check the endpoint data size | 06:33 |
mithro | paddatrapper: I get really confused about in verse out in USB | 06:34 |
mithro | I was thinking it was | 06:34 |
mithro | __xdata __at 0xE626 volatile BYTE EP8AUTOINLENH; ///< Endpoint 8 Packet Length H (IN only) | 06:34 |
paddatrapper | mithro:I do to :) yeah that won't work with OUT (which is what the master is) | 06:35 |
mithro | OUT means PC->USB Device | 06:35 |
paddatrapper | yup | 06:35 |
mithro | So - for EP1 you have "8.6.1.6 EP1OUTBC Firmware may read this 7-bit register to determine the number of bytes (0-64) in EP1OUTBUF." | 06:38 |
mithro | 0xE69C EP8BCH byte count (H) | 06:38 |
mithro | 0xE69D EP8BCL byte count (L) | 06:38 |
mithro | EMPTY=1 -- means that the buffers are empty; all received packets (2, 3, or 4, depending on the buffering depth) have been serviced. | 06:39 |
mithro | paddatrapper: I think you want something like this -> https://github.com/timvideos/HDMI2USB-fx2-firmware/pull/43/files#r135451151 | 06:44 |
tpb | Title: WIP: Loopback Device by paddatrapper · Pull Request #43 · timvideos/HDMI2USB-fx2-firmware · GitHub (at github.com) | 06:44 |
paddatrapper | mithro: ah thanks, I'll try that | 06:45 |
mithro | paddatrapper: Reload that comment - I updated it | 06:47 |
paddatrapper | mithro: hehe, you can also use SYNCDELAY16 instead of four SYNCDELAY | 06:48 |
mithro | paddatrapper: Sure :-P | 06:48 |
*** paradisaeidae_ has quit IRC | 07:22 | |
John_K | Mithro: wrote my own intelhex parser and matched the writes to how fxload was doing them, everything seems the same now insofar as logging can tell anyway - it seems it's time to bust out the USB analyzer to see what's happening differently | 07:28 |
John_K | Will check back in after about 24h or so | 07:29 |
*** rohitksingh_work has quit IRC | 07:56 | |
*** rohitksingh_work has joined #timvideos | 08:01 | |
Ishan_Bansal | mithro: I got really stuck at some other work, try to finish the doc by tonight | 08:22 |
John_K | Looks like my logic was inverted for stopping/running the 8051 core | 08:55 |
*** twoolie has joined #timvideos | 11:49 | |
cr1901_modern | mithro: I'm just gonna copy my xmodem tx impl from libmodem _without_ depending on the library itself to flterm; one weakness of the library is that isn't a good fit for an application that manipulates a file handle/open device manually. | 11:58 |
cr1901_modern | (though this is something for me to think about) | 11:58 |
*** twoolie has quit IRC | 11:59 | |
*** tsglove2 has quit IRC | 12:09 | |
*** twoolie has joined #timvideos | 12:14 | |
*** twoolie has quit IRC | 12:24 | |
*** rohitksingh_work has quit IRC | 12:32 | |
*** tsglove has joined #timvideos | 12:37 | |
*** rohitksingh has joined #timvideos | 13:14 | |
*** twoolie has joined #timvideos | 13:25 | |
*** twoolie has quit IRC | 14:14 | |
*** sb0 has joined #timvideos | 14:30 | |
*** thaytan has quit IRC | 15:06 | |
*** thaytan has joined #timvideos | 15:16 | |
*** ChanServ sets mode: +v thaytan | 15:16 | |
Ishan_Bansal | mithro : I have fix all the issues on the pull request and kindly review it once. | 17:50 |
*** rohitksingh has quit IRC | 18:07 | |
mithro | Ishan_Bansal: I'll look at it shortly | 23:13 |
mithro | cr1901_modern: I don't really want flterm to depend on things - so that sounds like a reasonable plan | 23:13 |
cr1901_modern | mithro: That being said, I added to the "todo list" to "support already open fds into xmodem/sfl/etc" | 23:18 |
cr1901_modern | Btw, did you take a look at my SFL concerns? | 23:18 |
*** Choco31415 has joined #timvideos | 23:33 | |
Choco31415 | Hi @CarlFK! | 23:33 |
CarlFK | Choco31415: hi! | 23:33 |
CarlFK[m] | um.. who are you? | 23:34 |
Choco31415 | I was the person who talked to you about streaming OHIO LinuxFest? | 23:34 |
Choco31415 | I was asking about your setup, and you mentioned video capture devices, specifically the Numato opsis. | 23:35 |
Choco31415 | Anyway, as an update on how things are going, I haven't gotten a reply back from LinuxFest, in any form. I don't know why. | 23:39 |
*** Choco31415 has quit IRC | 23:55 |
Generated by irclog2html.py 2.13.1 by Marius Gedminas - find it at mg.pov.lt!