This code holds the complete demo set for the sx1280: PingPong, PER and Ranging Outdoor demo application. >>>>> This code MUST run on the mbed library release 127 or everything will be painfully slow.

Dependencies:   mbed SX1280Lib DmTftLibrary

* This code MUST run on the mbed library release 127 or everything will be painfully slow.*
Committer:
mverdy
Date:
Thu Nov 08 10:14:39 2018 +0000
Revision:
20:626b92b70bf7
Parent:
19:45d0ce0f0677
Addition of missing modules to synchronize with v1.5.2

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mverdy 19:45d0ce0f0677 1 #ifndef __APP_CONFIG_H__
mverdy 19:45d0ce0f0677 2 #define __APP_CONFIG_H__
mverdy 19:45d0ce0f0677 3
mverdy 19:45d0ce0f0677 4 /*
mverdy 19:45d0ce0f0677 5 * This file is inteded to be used for tuning the application at compile time
mverdy 19:45d0ce0f0677 6 * by activating/deactivating feature
mverdy 19:45d0ce0f0677 7 *
mverdy 19:45d0ce0f0677 8 * To activate a feature, ensure the corresponding preprocessor token
mverdy 19:45d0ce0f0677 9 * definition is not commented out.
mverdy 19:45d0ce0f0677 10 * To deactivate it, comment it out.
mverdy 19:45d0ce0f0677 11 */
mverdy 19:45d0ce0f0677 12
mverdy 19:45d0ce0f0677 13 /*
mverdy 19:45d0ce0f0677 14 * GPS feature.
mverdy 19:45d0ce0f0677 15 * Need a ubloc device soldered on the PCB
mverdy 19:45d0ce0f0677 16 */
mverdy 19:45d0ce0f0677 17 //#define HAS_GPS_SENSOR
mverdy 19:45d0ce0f0677 18
mverdy 19:45d0ce0f0677 19 /*
mverdy 19:45d0ce0f0677 20 * Proximity sensor feature
mverdy 19:45d0ce0f0677 21 */
mverdy 19:45d0ce0f0677 22 //#define HAS_PROXIMITY_SENSOR
mverdy 19:45d0ce0f0677 23
mverdy 19:45d0ce0f0677 24 #endif // __APP_CONFIG_H__
mverdy 19:45d0ce0f0677 25