From 2fb4d25a4f789370b88063cfcf20a2cfe93cf6ff Mon Sep 17 00:00:00 2001 From: Brendan <2bndy5@gmail.com> Date: Thu, 20 Jun 2024 05:20:04 -0700 Subject: [PATCH] fix spelling of MESH_NOMASTER in py wrapper --- pyRF24Mesh/pyRF24Mesh.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyRF24Mesh/pyRF24Mesh.cpp b/pyRF24Mesh/pyRF24Mesh.cpp index 834ee2f..7e009cf 100644 --- a/pyRF24Mesh/pyRF24Mesh.cpp +++ b/pyRF24Mesh/pyRF24Mesh.cpp @@ -101,7 +101,7 @@ BOOST_PYTHON_MODULE(RF24Mesh) .def("renewAddress", &RF24Mesh::renewAddress, renewAddress_overload()) //bool releaseAddress(); .def("releaseAddress", (bool(RF24Mesh::*)()) & RF24Mesh::releaseAddress) -#ifndef MESH_NO_MASTER +#ifndef MESH_NOMASTER //bool releaseAddress(uint16_t address); .def("releaseAddress", (bool(RF24Mesh::*)(uint16_t)) & RF24Mesh::releaseAddress, (bp::args("address"))) #endif