Dario Nieuwenhuis
Dario Nieuwenhuis
+1 @jfeinstein10 Any updates? This is a great library!
I've had success upgrading launching another postgres instance with the new version, and then using dumpall and psql to move all the data piping: ``` docker exec postgres-old pg_dumpall -U...
We probably want to merge the AFIT ones #77 now that TCP uses AFIT.
LGTM overall! Just 2 things. 1. The difference between `bind_single` and `bind_multiple` seems very subtle to me. The only difference is what they do when the addr is unspecified, right?...
Also, I think the associated types should have ``. for consistency with the TCP trait.
To add to this: - What happens when close() is called? Is it just the send half which is closed, so it's still possible to receive? or the entire socket...
*Very strong* :-1: against using `nb` from me. It is *impossible* to implement traits using `nb` with DMA. Consider an API like this: ```rust fn read(&mut self, address: u32, bytes:...
IMO yes
Yeah, the current docs are missing specifying that `offset` and `bytes.len()` are multiples of `READ_SIZE`. However it's true that the majority of chips (all?) have READ_SIZE=1. Maybe we can remove...
> However, I’m wondering if there’s still a case for dropping write size for the write buf len… for convenience. The idea for the NorFlash is to be a low-level...