fsdfds
Dependencies: BLE_API mbed-dev-bin nRF51822
Fork of microbit-dal by
Diff: source/drivers/MicroBitRadioEvent.cpp
- Revision:
- 1:8aa5cdb4ab67
diff -r fb15f7887843 -r 8aa5cdb4ab67 source/drivers/MicroBitRadioEvent.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/source/drivers/MicroBitRadioEvent.cpp Thu Apr 07 01:33:22 2016 +0100 @@ -0,0 +1,175 @@ +/* +The MIT License (MIT) + +Copyright (c) 2016 British Broadcasting Corporation. +This software is provided by Lancaster University by arrangement with the BBC. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. +*/ + +#include "MicroBitConfig.h" +#include "MicroBitRadio.h" + +/** + * Provides a simple broadcast radio abstraction, built upon the raw nrf51822 RADIO module. + * + * This class provides the ability to extend the micro:bit's default EventModel to other micro:bits in the vicinity, + * in a very similar way to the MicroBitEventService for BLE interfaces. + * + * It is envisaged that this would provide the basis for children to experiment with building their own, simple, + * custom asynchronous events and actions. + * + * @note This API does not contain any form of encryption, authentication or authorisation. Its purpose is solely for use as a + * teaching aid to demonstrate how simple communications operates, and to provide a sandpit through which learning can take place. + * For serious applications, BLE should be considered a substantially more secure alternative. + */ + +/** + * Constructor. + * + * Creates an instance of MicroBitRadioEvent which offers the ability to extend + * the micro:bit's default EventModel to other micro:bits in the vicinity. + * + * @param r The underlying radio module used to send and receive data. + */ +MicroBitRadioEvent::MicroBitRadioEvent(MicroBitRadio &r) : radio(r) +{ + this->suppressForwarding = false; +} + +/** + * Associates the given event with the radio channel. + * + * Once registered, all events matching the given registration sent to this micro:bit's + * default EventModel will be automatically retransmitted on the radio. + * + * @param id The id of the event to register. + * + * @param value the value of the event to register. + * + * @return MICROBIT_OK on success, or MICROBIT_NO_RESOURCES if no default EventModel is available. + * + * @note The wildcards MICROBIT_ID_ANY and MICROBIT_EVT_ANY can also be in place of the + * id and value fields. + */ +int MicroBitRadioEvent::listen(uint16_t id, uint16_t value) +{ + if (EventModel::defaultEventBus) + return listen(id, value, *EventModel::defaultEventBus); + + return MICROBIT_NO_RESOURCES; +} + +/** + * Associates the given event with the radio channel. + * + * Once registered, all events matching the given registration sent to the given + * EventModel will be automatically retransmitted on the radio. + * + * @param id The id of the events to register. + * + * @param value the value of the event to register. + * + * @param eventBus The EventModel to listen for events on. + * + * @return MICROBIT_OK on success. + * + * @note The wildcards MICROBIT_ID_ANY and MICROBIT_EVT_ANY can also be in place of the + * id and value fields. + */ +int MicroBitRadioEvent::listen(uint16_t id, uint16_t value, EventModel &eventBus) +{ + return eventBus.listen(id, value, this, &MicroBitRadioEvent::eventReceived, MESSAGE_BUS_LISTENER_IMMEDIATE); +} + +/** + * Disassociates the given event with the radio channel. + * + * @param id The id of the events to deregister. + * + * @param value The value of the event to deregister. + * + * @return MICROBIT_OK on success, or MICROBIT_INVALID_PARAMETER if the default message bus does not exist. + * + * @note MICROBIT_EVT_ANY can be used to deregister all event values matching the given id. + */ +int MicroBitRadioEvent::ignore(uint16_t id, uint16_t value) +{ + if (EventModel::defaultEventBus) + return ignore(id, value, *EventModel::defaultEventBus); + + return MICROBIT_INVALID_PARAMETER; +} + +/** + * Disassociates the given events with the radio channel. + * + * @param id The id of the events to deregister. + * + * @param value The value of the event to deregister. + * + * @param eventBus The EventModel to deregister on. + * + * @return MICROBIT_OK on success. + * + * @note MICROBIT_EVT_ANY can be used to deregister all event values matching the given id. + */ +int MicroBitRadioEvent::ignore(uint16_t id, uint16_t value, EventModel &eventBus) +{ + return eventBus.ignore(id, value, this, &MicroBitRadioEvent::eventReceived); +} + + +/** + * Protocol handler callback. This is called when the radio receives a packet marked as using the event protocol. + * + * This function process this packet, and fires the event contained inside onto the default EventModel. + */ +void MicroBitRadioEvent::packetReceived() +{ + FrameBuffer *p = radio.recv(); + MicroBitEvent *e = (MicroBitEvent *) p->payload; + + suppressForwarding = true; + e->fire(); + suppressForwarding = false; + + delete p; +} + +/** + * Event handler callback. This is called whenever an event is received matching one of those registered through + * the registerEvent() method described above. Upon receiving such an event, it is wrapped into + * a radio packet and transmitted to any other micro:bits in the same group. + */ +void MicroBitRadioEvent::eventReceived(MicroBitEvent e) +{ + if(suppressForwarding) + return; + + FrameBuffer buf; + + buf.length = sizeof(MicroBitEvent) + MICROBIT_RADIO_HEADER_SIZE - 1; + buf.version = 1; + buf.group = 0; + buf.protocol = MICROBIT_RADIO_PROTOCOL_EVENTBUS; + memcpy(buf.payload, (const uint8_t *)&e, sizeof(MicroBitEvent)); + + radio.send(&buf); +}