/** * The MySensors Arduino library handles the wireless radio link and protocol * between your home built sensors/actuators and HA controller of choice. * The sensors forms a self healing radio network with optional repeaters. Each * repeater and gateway builds a routing tables in EEPROM which keeps track of the * network topology allowing messages to be routed to nodes. * * Created by Henrik Ekblad * Copyright (C) 2013-2019 Sensnology AB * Full contributor list: https://github.com/mysensors/MySensors/graphs/contributors * * Documentation: http://www.mysensors.org * Support Forum: http://forum.mysensors.org * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * version 2 as published by the Free Software Foundation. * * Radio wiring Teensy3.x: RF24, RFM69, RFM95: * MISO 12 * MOSI 11 * SCK 13 * CSN 10 * CE 9 (RF24) * IRQ 8 (opt. RF24, RFM69, RFM95) */ #ifndef MyHwTeensy3_h #define MyHwTeensy3_h #include #include "util/atomic.h" #ifdef __cplusplus #include #endif #define CRYPTO_LITTLE_ENDIAN #ifndef MY_SERIALDEVICE #define MY_SERIALDEVICE Serial #endif #ifndef MY_DEBUGDEVICE #define MY_DEBUGDEVICE MY_SERIALDEVICE #endif #if defined(__MK64FX512__) || defined(__MK66FX1M0__) #define RNG_CR_GO_MASK 0x1u #define RNG_CR_HA_MASK 0x2u #define RNG_CR_INTM_MASK 0x4u #define RNG_CR_CLRI_MASK 0x8u #define RNG_CR_SLP_MASK 0x10u #define RNG_SR_OREG_LVL_MASK 0xFF00u #define RNG_SR_OREG_LVL_SHIFT 8 #define RNG_SR_OREG_LVL(x) (((uint32_t)(((uint32_t)(x))<