diff --git a/examples/CC1101/CC1101_Transmit_Interrupt/CC1101_Transmit_Interrupt.ino b/examples/CC1101/CC1101_Transmit_Interrupt/CC1101_Transmit_Interrupt.ino index 9a909d72..14bf31eb 100644 --- a/examples/CC1101/CC1101_Transmit_Interrupt/CC1101_Transmit_Interrupt.ino +++ b/examples/CC1101/CC1101_Transmit_Interrupt/CC1101_Transmit_Interrupt.ino @@ -25,6 +25,9 @@ CC1101 cc = new Module(10, 2, 3); // https://github.com/jgromes/RadioShield //CC1101 cc = RadioShield.ModuleA; +// save transmission state between loops +int transmissionState = ERR_NONE; + void setup() { Serial.begin(9600); @@ -53,7 +56,7 @@ void setup() { // you can transmit C-string or Arduino string up to // 64 characters long - state = cc.startTransmit("Hello World!"); + transmissionState = cc.startTransmit("Hello World!"); // you can also transmit byte array up to 64 bytes long /* @@ -61,36 +64,61 @@ void setup() { 0x78, 0xAB, 0xCD, 0xEF}; state = cc.transmit(byteArr, 8); */ - - if (state != ERR_NONE) { - Serial.print(F("failed, code ")); - Serial.println(state); - while (true); - } } -// flag to indicate that a packet was received +// flag to indicate that a packet was sent volatile bool transmittedFlag = false; +// disable interrupt when it's not needed +volatile bool enableInterrupt = true; + +// this function is called when a complete packet +// is transmitted by the module +// IMPORTANT: this function MUST be 'void' type +// and MUST NOT have any arguments! void setFlag(void) { - // packet transmission is finished, set the flag + // check if the interrupt is enabled + if(!enableInterrupt) { + return; + } + + // we sent a packet, set the flag transmittedFlag = true; } void loop() { // check if the previous transmission finished if(transmittedFlag) { - Serial.println(F("packet transmission finished!")); + // disable the interrupt service routine while + // processing the data + enableInterrupt = false; - // wait one second before next transmission + // reset flag + transmittedFlag = false; + + if (transmissionState == ERR_NONE) { + // packet was successfully sent + Serial.println(F("transmission finished!")); + + // NOTE: when using interrupt-driven transmit method, + // it is not possible to automatically measure + // transmission data rate using getDataRate() + + } else { + Serial.print(F("failed, code ")); + Serial.println(transmissionState); + + } + + // wait a second before transmitting again delay(1000); - // send another packet + // send another one Serial.print(F("[CC1101] Sending another packet ... ")); // you can transmit C-string or Arduino string up to - // 64 characters long - int state = cc.startTransmit("Hello World!"); + // 256 characters long + transmissionState = cc.startTransmit("Hello World!"); // you can also transmit byte array up to 256 bytes long /* @@ -99,10 +127,8 @@ void loop() { int state = cc.transmit(byteArr, 8); */ - if (state != ERR_NONE) { - Serial.print(F("failed, code ")); - Serial.println(state); - } + // we're ready to send more packets, + // enable interrupt service routine + enableInterrupt = true; } - }