### Configure VintageNet for Direct Connection Source: https://github.com/nerves-networking/vintage_net_direct/blob/main/README.md Configure VintageNet to use VintageNetDirect for the 'usb0' interface. This enables the direct network connection over USB. ```elixir config :vintage_net, [ config: [ {"usb0", %{type: VintageNetDirect}}, ] ] ``` -------------------------------- ### Add VintageNetDirect to Mix Dependencies Source: https://github.com/nerves-networking/vintage_net_direct/blob/main/README.md Add the VintageNetDirect package to your project's mix dependencies. This is the first step to enable direct network connections. ```elixir def deps do [ {:vintage_net_direct, "~> 0.7.0", targets: @all_targets} ] end ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.