Added WiFi kernel drivers and refactored Wifi service (#557)

+ other improvements
This commit is contained in:
Ken Van Hoeylandt
2026-07-09 21:03:38 +02:00
committed by GitHub
parent dbb96a891c
commit 1c2806bddf
104 changed files with 2347 additions and 1428 deletions
+6 -2
View File
@@ -1,15 +1,19 @@
// SPDX-License-Identifier: Apache-2.0
#include <tactility/check.h>
#include <tactility/driver.h>
#include <tactility/module.h>
extern "C" {
extern Driver posix_wifi_driver;
static error_t start() {
/* NO-OP for now */
check(driver_construct_add(&posix_wifi_driver) == ERROR_NONE);
return ERROR_NONE;
}
static error_t stop() {
/* NO-OP for now */
check(driver_remove_destruct(&posix_wifi_driver) == ERROR_NONE);
return ERROR_NONE;
}