Added timeout interrupt bit, fixed several bugs with Socket code, added getters for the TX read/write pointers

This commit is contained in:
Jonah Dahlquist 2020-11-07 23:31:14 -08:00
commit 8aa5656873
2 changed files with 48 additions and 6 deletions

View file

@ -60,6 +60,7 @@ pub mod socketn {
pub enum Interrupt {
All = 0b11111111u8,
SendOk = 0b010000u8,
Timeout = 0b01000u8,
Receive = 0b00100u8,
}