2015-08-12 10:53:41 +00:00
|
|
|
#ifndef MICROBIT_H
|
|
|
|
#define MICROBIT_H
|
|
|
|
|
|
|
|
#include "mbed.h"
|
|
|
|
|
2015-09-11 15:39:38 +00:00
|
|
|
#include "MicroBitConfig.h"
|
2015-08-31 22:25:10 +00:00
|
|
|
#include "MicroBitHeapAllocator.h"
|
2015-09-11 15:39:38 +00:00
|
|
|
#include "MicroBitPanic.h"
|
|
|
|
#include "ErrorNo.h"
|
2015-08-12 10:53:41 +00:00
|
|
|
#include "MicroBitCompat.h"
|
2015-09-11 15:39:38 +00:00
|
|
|
#include "MicroBitComponent.h"
|
2015-08-12 10:53:41 +00:00
|
|
|
#include "ManagedType.h"
|
|
|
|
#include "ManagedString.h"
|
2015-09-11 15:39:38 +00:00
|
|
|
#include "MicroBitImage.h"
|
2015-08-12 10:53:41 +00:00
|
|
|
#include "MicroBitFont.h"
|
|
|
|
#include "MicroBitEvent.h"
|
|
|
|
#include "DynamicPwm.h"
|
|
|
|
#include "MicroBitI2C.h"
|
2015-09-11 15:39:38 +00:00
|
|
|
#include "MESEvents.h"
|
|
|
|
|
2015-08-12 10:53:41 +00:00
|
|
|
#include "MicroBitButton.h"
|
|
|
|
#include "MicroBitPin.h"
|
|
|
|
#include "MicroBitCompass.h"
|
|
|
|
#include "MicroBitAccelerometer.h"
|
2015-09-28 20:40:44 +00:00
|
|
|
#include "MicroBitThermometer.h"
|
2015-09-11 15:39:38 +00:00
|
|
|
#include "MicroBitMultiButton.h"
|
|
|
|
|
|
|
|
#include "MicroBitSerial.h"
|
|
|
|
#include "MicroBitIO.h"
|
|
|
|
#include "MicroBitDisplay.h"
|
|
|
|
|
|
|
|
#include "MicroBitFiber.h"
|
|
|
|
#include "MicroBitMessageBus.h"
|
2015-08-12 10:53:41 +00:00
|
|
|
|
2015-09-07 16:09:17 +00:00
|
|
|
#include "ble/BLE.h"
|
|
|
|
#include "ble/services/DeviceInformationService.h"
|
2015-08-12 10:53:41 +00:00
|
|
|
#include "MicroBitDFUService.h"
|
|
|
|
#include "MicroBitEventService.h"
|
2015-09-07 16:09:17 +00:00
|
|
|
#include "MicroBitLEDService.h"
|
2015-09-19 20:00:38 +00:00
|
|
|
#include "MicroBitAccelerometerService.h"
|
2015-09-19 21:19:57 +00:00
|
|
|
#include "MicroBitMagnetometerService.h"
|
2015-09-22 15:13:08 +00:00
|
|
|
#include "MicroBitButtonService.h"
|
|
|
|
#include "MicroBitIOPinService.h"
|
2015-09-23 21:15:44 +00:00
|
|
|
#include "MicroBitTemperatureService.h"
|
2015-08-12 10:53:41 +00:00
|
|
|
#include "ExternalEvents.h"
|
|
|
|
|
|
|
|
// MicroBit::flags values
|
|
|
|
#define MICROBIT_FLAG_SCHEDULER_RUNNING 0x00000001
|
|
|
|
#define MICROBIT_FLAG_ACCELEROMETER_RUNNING 0x00000002
|
|
|
|
#define MICROBIT_FLAG_DISPLAY_RUNNING 0x00000004
|
|
|
|
#define MICROBIT_FLAG_COMPASS_RUNNING 0x00000008
|
|
|
|
|
2015-10-18 13:46:42 +00:00
|
|
|
// MicroBit naming constants
|
|
|
|
#define MICROBIT_NAME_LENGTH 5
|
|
|
|
#define MICROBIT_NAME_CODE_LETTERS 5
|
|
|
|
|
2015-08-12 10:53:41 +00:00
|
|
|
// Random number generator
|
|
|
|
#define NRF51822_RNG_ADDRESS 0x4000D000
|
|
|
|
|
|
|
|
|
2015-10-18 13:46:42 +00:00
|
|
|
// mbed pin assignments of core components.
|
2015-08-12 10:53:41 +00:00
|
|
|
#define MICROBIT_PIN_SDA P0_30
|
|
|
|
#define MICROBIT_PIN_SCL P0_0
|
|
|
|
|
2015-09-02 11:42:24 +00:00
|
|
|
#if CONFIG_ENABLED(MICROBIT_DBG)
|
2015-08-12 10:53:41 +00:00
|
|
|
extern Serial pc;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class definition for a MicroBit device.
|
|
|
|
*
|
|
|
|
* Represents the device as a whole, and includes member variables to that reflect the components of the system.
|
|
|
|
*/
|
|
|
|
class MicroBit
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
|
|
|
|
void seedRandom();
|
|
|
|
uint32_t randomValue;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
// Map of device state.
|
|
|
|
uint32_t flags;
|
|
|
|
|
|
|
|
// Periodic callback
|
|
|
|
Ticker systemTicker;
|
|
|
|
|
|
|
|
// I2C Interface
|
|
|
|
MicroBitI2C i2c;
|
|
|
|
|
|
|
|
// Serial Interface
|
2015-09-02 11:42:24 +00:00
|
|
|
#if CONFIG_DISABLED(MICROBIT_DBG)
|
2015-08-12 10:53:41 +00:00
|
|
|
MicroBitSerial serial;
|
2015-08-31 22:25:10 +00:00
|
|
|
#endif
|
2015-08-12 10:53:41 +00:00
|
|
|
|
|
|
|
// Array of components which are iterated during a system tick
|
|
|
|
MicroBitComponent* systemTickComponents[MICROBIT_SYSTEM_COMPONENTS];
|
|
|
|
|
|
|
|
// Array of components which are iterated during idle thread execution, isIdleCallbackNeeded is polled during a systemTick.
|
|
|
|
MicroBitComponent* idleThreadComponents[MICROBIT_IDLE_COMPONENTS];
|
|
|
|
|
|
|
|
// Device level Message Bus abstraction
|
|
|
|
MicroBitMessageBus MessageBus;
|
|
|
|
|
|
|
|
// Member variables to represent each of the core components on the device.
|
|
|
|
MicroBitDisplay display;
|
|
|
|
MicroBitButton buttonA;
|
|
|
|
MicroBitButton buttonB;
|
|
|
|
MicroBitMultiButton buttonAB;
|
|
|
|
MicroBitAccelerometer accelerometer;
|
|
|
|
MicroBitCompass compass;
|
2015-09-28 20:40:44 +00:00
|
|
|
MicroBitThermometer thermometer;
|
2015-08-12 10:53:41 +00:00
|
|
|
|
|
|
|
//An object of available IO pins on the device
|
|
|
|
MicroBitIO io;
|
|
|
|
|
|
|
|
// Bluetooth related member variables.
|
2015-09-19 20:00:38 +00:00
|
|
|
BLEDevice *ble;
|
|
|
|
MicroBitDFUService *ble_firmware_update_service;
|
2015-08-12 10:53:41 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor.
|
|
|
|
* Create a representation of a MicroBit device as a global singleton.
|
|
|
|
* @param messageBus callback function to receive MicroBitMessageBus events.
|
|
|
|
*
|
|
|
|
* Exposed objects:
|
|
|
|
* @code
|
|
|
|
* uBit.systemTicker; //the Ticker callback that performs routines like updating the display.
|
|
|
|
* uBit.MessageBus; //The message bus where events are fired.
|
|
|
|
* uBit.display; //The display object for the LED matrix.
|
|
|
|
* uBit.buttonA; //The buttonA object for button a.
|
|
|
|
* uBit.buttonB; //The buttonB object for button b.
|
|
|
|
* uBit.resetButton; //The resetButton used for soft resets.
|
|
|
|
* uBit.accelerometer; //The object that represents the inbuilt accelerometer
|
|
|
|
* uBit.compass; //The object that represents the inbuilt compass(magnetometer)
|
|
|
|
* uBit.io.P*; //Where P* is P0 to P16, P19 & P20 on the edge connector
|
|
|
|
* @endcode
|
|
|
|
*/
|
|
|
|
MicroBit();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Post constructor initialisation method.
|
|
|
|
* After *MUCH* pain, it's noted that the BLE stack can't be brought up in a
|
|
|
|
* static context, so we bring it up here rather than in the constructor.
|
|
|
|
* n.b. This method *must* be called in main() or later, not before.
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* @code
|
|
|
|
* uBit.init();
|
|
|
|
* @endcode
|
|
|
|
*/
|
|
|
|
void init();
|
|
|
|
|
2015-10-18 13:46:42 +00:00
|
|
|
/**
|
|
|
|
* Derives the friendly name for this device, autogenerated from our hardware Device ID.
|
|
|
|
*/
|
|
|
|
void deriveName();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the friendly name for this device.
|
|
|
|
*
|
|
|
|
* @return A string representing the friendly name of this device.
|
|
|
|
*/
|
|
|
|
ManagedString getName();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the serial number of this device.
|
|
|
|
*
|
|
|
|
* @return A string representing the serial number of this device.
|
|
|
|
*/
|
|
|
|
ManagedString getSerial();
|
|
|
|
|
2015-08-14 15:51:45 +00:00
|
|
|
/**
|
|
|
|
* Will reset the micro:bit when called.
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* @code
|
|
|
|
* uBit.reset();
|
|
|
|
* @endcode
|
|
|
|
*/
|
|
|
|
void reset();
|
|
|
|
|
2015-08-12 10:53:41 +00:00
|
|
|
/**
|
|
|
|
* Delay for the given amount of time.
|
|
|
|
* If the scheduler is running, this will deschedule the current fiber and perform
|
|
|
|
* a power efficent, concurrent sleep operation.
|
|
|
|
* If the scheduler is disabled or we're running in an interrupt context, this
|
|
|
|
* will revert to a busy wait.
|
|
|
|
*
|
|
|
|
* @note Values of 6 and below tend to lose resolution - do you really need to sleep for this short amount of time?
|
|
|
|
*
|
|
|
|
* @param milliseconds the amount of time, in ms, to wait for. This number cannot be negative.
|
2015-10-25 21:51:33 +00:00
|
|
|
* @return MICROBIT_OK on success, MICROBIT_INVALID_PARAMETER milliseconds is less than zero.
|
2015-08-12 10:53:41 +00:00
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* @code
|
|
|
|
* uBit.sleep(20); //sleep for 20ms
|
|
|
|
* @endcode
|
|
|
|
*/
|
2015-10-25 21:51:33 +00:00
|
|
|
int sleep(int milliseconds);
|
2015-08-12 10:53:41 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate a random number in the given range.
|
|
|
|
* We use the NRF51822 in built random number generator here
|
|
|
|
* TODO: Determine if we want to, given its relatively high power consumption!
|
|
|
|
*
|
|
|
|
* @param max the upper range to generate a number for. This number cannot be negative
|
2015-10-25 21:51:33 +00:00
|
|
|
* @return A random, natural number between 0 and the max-1. Or MICROBIT_INVALID_PARAMETER if max is <= 0.
|
2015-08-12 10:53:41 +00:00
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* @code
|
|
|
|
* uBit.random(200); //a number between 0 and 199
|
|
|
|
* @endcode
|
|
|
|
*/
|
|
|
|
int random(int max);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Period callback. Used by MicroBitDisplay, FiberScheduler and I2C sensors to
|
|
|
|
* provide a power efficient sense of time.
|
|
|
|
*/
|
|
|
|
void systemTick();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* System tasks to be executed by the idle thread when the Micro:Bit isn't busy or when data needs to be read.
|
|
|
|
*/
|
|
|
|
void systemTasks();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* add a component to the array of system components which invocate the systemTick member function during a systemTick
|
2015-10-25 21:51:33 +00:00
|
|
|
*
|
|
|
|
* @param component The component to add.
|
|
|
|
* @return MICROBIT_OK on success. MICROBIT_NO_RESOURCES is returned if further components cannot be supported.
|
2015-08-12 10:53:41 +00:00
|
|
|
*/
|
2015-10-25 21:51:33 +00:00
|
|
|
int addSystemComponent(MicroBitComponent *component);
|
2015-08-12 10:53:41 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* remove a component from the array of system components
|
2015-10-25 21:51:33 +00:00
|
|
|
* @param component The component to remove.
|
|
|
|
* @return MICROBIT_OK on success. MICROBIT_INVALID_PARAMETER is returned if the given component has not been previous added.
|
2015-08-12 10:53:41 +00:00
|
|
|
*/
|
2015-10-25 21:51:33 +00:00
|
|
|
int removeSystemComponent(MicroBitComponent *component);
|
2015-08-12 10:53:41 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* add a component to the array of of idle thread components.
|
|
|
|
* isIdleCallbackNeeded is polled during a systemTick to determine if the idle thread should jump to the front of the queue
|
2015-10-25 21:51:33 +00:00
|
|
|
* @param component The component to add.
|
|
|
|
* @return MICROBIT_OK on success. MICROBIT_NO_RESOURCES is returned if further components cannot be supported.
|
2015-08-12 10:53:41 +00:00
|
|
|
*/
|
2015-10-25 21:51:33 +00:00
|
|
|
int addIdleComponent(MicroBitComponent *component);
|
2015-08-12 10:53:41 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* remove a component from the array of idle thread components
|
2015-10-25 21:51:33 +00:00
|
|
|
* @param component The component to remove.
|
|
|
|
* @return MICROBIT_OK on success. MICROBIT_INVALID_PARAMETER is returned if the given component has not been previous added.
|
2015-08-12 10:53:41 +00:00
|
|
|
*/
|
2015-10-25 21:51:33 +00:00
|
|
|
int removeIdleComponent(MicroBitComponent *component);
|
2015-08-12 10:53:41 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine the time since this MicroBit was last reset.
|
|
|
|
*
|
|
|
|
* @return The time since the last reset, in milliseconds. This will result in overflow after 1.6 months.
|
|
|
|
* TODO: handle overflow case.
|
|
|
|
*/
|
|
|
|
unsigned long systemTime();
|
|
|
|
|
2015-10-08 13:37:35 +00:00
|
|
|
/**
|
|
|
|
* Determine the version of the micro:bit runtime currently in use.
|
|
|
|
*
|
|
|
|
* @return A textual description of the currentlt executing micro:bit runtime.
|
|
|
|
* TODO: handle overflow case.
|
|
|
|
*/
|
|
|
|
char *systemVersion();
|
|
|
|
|
2015-08-12 10:53:41 +00:00
|
|
|
/**
|
|
|
|
* Triggers a microbit panic where an infinite loop will occur swapping between the panicFace and statusCode if provided.
|
|
|
|
*
|
|
|
|
* @param statusCode the status code of the associated error. Status codes must be in the range 0-255.
|
|
|
|
*/
|
|
|
|
void panic(int statusCode = 0);
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
// Definition of the global instance of the MicroBit class.
|
|
|
|
// Using this as a variation on the singleton pattern, just to make
|
2015-08-31 22:25:10 +00:00
|
|
|
// code integration a little bit easier for third parties.
|
2015-08-12 10:53:41 +00:00
|
|
|
extern MicroBit uBit;
|
|
|
|
|
2015-08-31 22:25:10 +00:00
|
|
|
//
|
|
|
|
// BLE callback when an active GATT session with another device is terminated.
|
|
|
|
// Used to reset state and restart advertising ourselves.
|
|
|
|
//
|
|
|
|
void bleDisconnectionCallback(Gap::Handle_t handle, Gap::DisconnectionReason_t reason);
|
|
|
|
|
2015-08-12 10:53:41 +00:00
|
|
|
// Entry point for application programs. Called after the super-main function
|
|
|
|
// has initialized the device and runtime environment.
|
|
|
|
extern "C" void app_main();
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|