From 1888bc20144559265b0719e5a0f83a5150a867c6 Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Mon, 29 Nov 2021 16:39:37 -0700 Subject: Add ability to connect to wifi. This adds a small subsystem to connect to a basic WPA accesspoint. --- include/station.h | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 include/station.h (limited to 'include') diff --git a/include/station.h b/include/station.h new file mode 100644 index 0000000..70d1b14 --- /dev/null +++ b/include/station.h @@ -0,0 +1,7 @@ +#pragma once +#ifndef STATION_H_ +#define STATION_H_ + +void wifi_init_station(); + +#endif /* STATION_H_ */ -- cgit