Simple BLE Radio tester and signal strength (RSSI) meter, using microbit radio lib.

Dependencies:   microbit

config.h

Committer:
dl7avf
Date:
2017-01-12
Revision:
0:28e881c1eb79

File content as of revision 0:28e881c1eb79:

// config.h     | 18698.01 ** 2017-01-12
//-------------------------------------------------------------
// Radio tester and RSSI meter,
// checks for BLE radio communication of motiles in the same group.

#ifndef __CONFIG_H__
#define __CONFIG_H__

#define MICROBIT_BLE_ENABLED 0

#define ksHeader            "Radio tester and RSSI meter (18698.01)"
#define radioGroupName      "TESTUDINES"
#define radioGroupNumber    42
#define radioTimeout        12  // seconds.

// Miscellaneous constants:

#define FALSE   0       
#define TRUE    1       
#define kGRAD   0xB0    // ° = 0xF8 too.

#endif  //__CONFIG_H__