sb0 changed the topic of #m-labs to: ARTIQ, Migen, MiSoC, Mixxeo & other M-Labs projects :: fka #milkymist :: Logs http://irclog.whitequark.org/m-labs
<GitHub96>
[artiq] cr1901 commented on issue #615: @jordens Simply adding an extra register bit is not sufficient to fix the bug. If an extra register bit is added, the SPI core needs 32 shifts before the data is fully transferred. The SPIMachine `done` signal asserts immediately after the 32nd _sample_, which precedes the 32nd shift. ... https://git.io/v1rkl
<GitHub189>
[artiq] cr1901 commented on issue #615: @jordens Simply adding an extra register bit is not sufficient to fix the bug. If an extra register bit is added, the SPI core needs 32 shifts before the data is fully transferred. The SPIMachine `done` signal asserts immediately after the 32nd _sample_, which precedes the 32nd shift. ... https://git.io/v1rkl
<cr1901>
I really wish updating a comment didn't post a second notification
<cr1901>
Especially since I just omitted some info I decided was irrelevant.
bentley` has joined #m-labs
sb0 has quit [Quit: Leaving]
ohama has quit [Disconnected by services]
attie_ has joined #m-labs
ohama has joined #m-labs
MiW has quit [Quit: changing servers]
attie has quit [Remote host closed the connection]
MiW has joined #m-labs
kuldeep has joined #m-labs
sb0 has joined #m-labs
rohitksingh has joined #m-labs
rjo has quit [Read error: Connection reset by peer]
rjo has joined #m-labs
sb0 has quit [Remote host closed the connection]
attie_ is now known as attie
cr1901 has quit [Ping timeout: 268 seconds]
rjo_ has joined #m-labs
rjo has quit [Read error: Connection reset by peer]
cr1901 has joined #m-labs
rjo_ has quit [Ping timeout: 260 seconds]
rjo has joined #m-labs
rjo has quit [Ping timeout: 260 seconds]
rjo has joined #m-labs
fengling has quit [*.net *.split]
rohitksingh has quit [*.net *.split]
fengling has joined #m-labs
rohitksingh has joined #m-labs
rohitksingh has quit [*.net *.split]
rohitksingh has joined #m-labs
fengling has quit [*.net *.split]
fengling has joined #m-labs
rohitksingh has quit [Ping timeout: 260 seconds]
rohitksingh has joined #m-labs
kuldeep has quit [Ping timeout: 240 seconds]
kuldeep has joined #m-labs
kuldeep has quit [Read error: Connection reset by peer]
sb0 has joined #m-labs
kuldeep has joined #m-labs
<sb0>
whitequark, can you create repositories under github.com/m-labs?
<whitequark>
I don't think so?
<sb0>
I think it works... try it
<sb0>
can you put all packages developed for artiq in there? like this smoltcp
<whitequark>
oh, looks like I can
<whitequark>
ok...
<whitequark>
sb0: now I can't configure IRC notifications for it
<whitequark>
that's stupid
<whitequark>
can you do that?
kkk has joined #m-labs
kkk has quit [Client Quit]
sb0 has quit [*.net *.split]
sb0 has joined #m-labs
<sb0>
whitequark, done
<whitequark>
thanks
<GitHub176>
[smoltcp] whitequark pushed 2 new commits to master: https://git.io/v1rXH
<GitHub176>
smoltcp/master 10d538c whitequark: Implement raw socket interface and tcpdump.
<GitHub176>
smoltcp/master 34d5e1b whitequark: Move protocol-related data structures to smoltcp::wire.
rohitksingh has quit [Quit: Leaving.]
<whitequark>
sb0: good news, maybe someone will finally rewrite the glacially slow llvmlite bindings properly
<whitequark>
just talked with some person on #llvm
<whitequark>
sb0: is it OK to make a simplifying assumption that both send and receive frames are allocated from a pool, which consists of fixed MTU-sized blocks?
<whitequark>
or will that waste too much RAM?
<whitequark>
actually, on second though I don't need that assumption
<whitequark>
ok I see how liteeth does it
<GitHub112>
[smoltcp] whitequark pushed 2 new commits to master: https://git.io/v1rQB
<GitHub112>
smoltcp/master 6a89893 whitequark: Implement a trait for sending and receiving frames.