Added ESP32 side of the transceiver

This commit is contained in:
Denakosg945
2026-06-04 17:01:14 +03:00
parent bcf7bede0f
commit fa830b2c37
2303 changed files with 497306 additions and 0 deletions
@@ -0,0 +1,10 @@
def __getattr__(attr_name):
from numpy._core import einsumfunc
from ._utils import _raise_warning
ret = getattr(einsumfunc, attr_name, None)
if ret is None:
raise AttributeError(
f"module 'numpy.core.einsumfunc' has no attribute {attr_name}")
_raise_warning(attr_name, "einsumfunc")
return ret