net: remove atomic-polyfill.
This commit is contained in:
@ -105,8 +105,8 @@ async fn main(spawner: Spawner) -> ! {
|
||||
|
||||
info!("Network task initialized");
|
||||
|
||||
static STATE: TcpClientState<1, 1024, 1024> = TcpClientState::new();
|
||||
let client = TcpClient::new(&stack, &STATE);
|
||||
let state: TcpClientState<1, 1024, 1024> = TcpClientState::new();
|
||||
let client = TcpClient::new(&stack, &state);
|
||||
|
||||
loop {
|
||||
let addr = SocketAddr::V4(SocketAddrV4::new(Ipv4Addr::new(10, 42, 0, 1), 8000));
|
||||
|
Reference in New Issue
Block a user