mauz555 has quit [Remote host closed the connection]
mauz555 has joined #m-labs
mauz555 has quit [Ping timeout: 272 seconds]
balrog has quit [Quit: Bye]
balrog has joined #m-labs
Stormwind_mobile has quit [Remote host closed the connection]
mumptai_ has joined #m-labs
mumptai has quit [Ping timeout: 258 seconds]
Stormwind_mobile has joined #m-labs
rohitksingh has quit [Quit: No Ping reply in 180 seconds.]
rohitksingh has joined #m-labs
mauz555 has joined #m-labs
mauz555 has quit [Ping timeout: 265 seconds]
_whitelogger has joined #m-labs
<mtrbot-ml_>
[mattermost] <sb10q> thanks
proteus-guy has quit [Ping timeout: 240 seconds]
proteus-guy has joined #m-labs
alexhw has joined #m-labs
mauz555 has joined #m-labs
mauz555 has quit [Ping timeout: 240 seconds]
sb0 has quit [Ping timeout: 258 seconds]
sb0 has joined #m-labs
proteus-guy has quit [Ping timeout: 260 seconds]
<mtrbot-ml_>
[mattermost] <sb10q> @astro what is the purpose of OCM3 in link.x?
<mtrbot-ml_>
[mattermost] <sb10q> mh ok sometimes zynq splits the upper 64KB of memory and puts it a different address, because it's zynq
<mtrbot-ml_>
[mattermost] <sb10q> mh ok sometimes zynq splits the upper 64KB of memory and puts it at a different address, because it's zynq
mumptai_ has quit [Quit: Verlassend]
mumptai has joined #m-labs
proteus-guy has joined #m-labs
mauz555 has joined #m-labs
mauz555 has quit [Remote host closed the connection]
mauz555 has joined #m-labs
mumptai has quit [Remote host closed the connection]
mumptai has joined #m-labs
lkcl_ has joined #m-labs
lkcl has quit [Ping timeout: 265 seconds]
<mtrbot-ml_>
[mattermost] <sb10q> @astro have you considered splitting the async TcpStream into tx and rx halves? that would be consistent with sync_channel, and also make the moninj implementation simpler and cleaner
<mtrbot-ml_>
[mattermost] <sb10q> @astro but that's just brainstorming; if that's difficult or creating any mess, don't do it
noopwafel has quit [*.net *.split]
noopwafel has joined #m-labs
ohama has quit [Ping timeout: 256 seconds]
ohama has joined #m-labs
ohsix has quit [Ping timeout: 265 seconds]
ohsix has joined #m-labs
<mtrbot-ml_>
[mattermost] <astro> @sb10q the OCM splits are configurable but only once our code is loaded and running
<mtrbot-ml_>
[mattermost] <astro> @sb10q I could give the split a try, there's already ref counting for sockets in smoltcp. yet in my (tokio) experience passing tx/rx off into separate program parts turned out to be cumbersome because you have to share data between them over another sync_channel. alternating between send() and recv() in an async fn that owns the socket is much more convenient.
cr1901_modern has quit [Read error: Connection reset by peer]
cr1901_modern1 has joined #m-labs
cr1901_modern1 has quit [Client Quit]
cr1901_modern1 has joined #m-labs
cr1901_modern1 has quit [Client Quit]
cr1901_modern has joined #m-labs
Stormwind_mobile has quit [Ping timeout: 240 seconds]
Stormwind_mobile has joined #m-labs
<mtrbot-ml_>
[mattermost] <astro> libdyld loads elf on arm \o/
<mtrbot-ml_>
[mattermost] <astro> now to the refactoring!
X-Scale` has joined #m-labs
X-Scale has quit [Ping timeout: 258 seconds]
X-Scale` is now known as X-Scale
strobokopp has joined #m-labs
rohitksingh has quit [Ping timeout: 240 seconds]
rohitksingh has joined #m-labs
<mtrbot-ml_>
[mattermost] <sb10q> I tried reconfiguring them with openocd, I systematically get "data abort" errors afterwards
<mtrbot-ml_>
[mattermost] <sb10q> Bah. It's probably faster that I write a sdram loader than mess around with those OCM settings
<mtrbot-ml_>
[mattermost] <sb10q> Cool!
<mtrbot-ml_>
[mattermost] <sb10q> What I wanted to do was use send and recv on the same socket in separate tasks. Including sending while another task is blocked on recv
mauz555 has quit [Remote host closed the connection]
mauz555 has joined #m-labs
mauz555 has quit [Remote host closed the connection]
mauz555 has joined #m-labs
<mtrbot-ml_>
[mattermost] <astro> do you prefer a tx/rx split, or would a `impl Clone for TcpStream` with ref counting work even better for us?
<mtrbot-ml_>
[mattermost] <astro> smoltcp tcp sockets already have ref counter we can use