mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-08-20 22:49:02 +00:00
espradio: implement support for wifi/BLE on the ESP32-C3
This is a work in progress. It does not yet work.
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
//go:build !esp32c3
|
||||
|
||||
package espradio
|
||||
|
||||
import "errors"
|
||||
|
||||
var errUnsupportedChip = errors.New("espradio: unsupported chip")
|
||||
|
||||
func initHardware() error {
|
||||
return errUnsupportedChip
|
||||
}
|
||||
Reference in New Issue
Block a user