I've got some operations that are quite fragile to timing [multi-threading is not possible] and using network.write in between causes these operations to fail. I only want to write for sending agnostic data back to my master node, so it receiving this data is non-critical. Can I somehow write asynchronously? - I've noticed that the RF24 has a startWrite method, could I somehow use this without having to sacrifice the additional benefits [reliable data transfers] that RF24Network gives me?