Using the mDot to receive data.

Dependencies:   libmDot-dev-mbed5-deprecated ISL29011

Fork of mdot-examples by 3mdeb

examples/example_config.h

Committer:
SDesign2018
Date:
2017-10-12
Revision:
1:2e97ad133e56
Parent:
0:f3d9c16b08d7

File content as of revision 1:2e97ad133e56:

#ifndef __EXAMPLE__CONFIG_H__
#define __EXAMPLE__CONFIG_H__


#define PEER_TO_PEER_EXAMPLE     4  // see peer_to_peer_example.cpp


// the active example is the one that will be compiled
#if !defined(ACTIVE_EXAMPLE)
#define ACTIVE_EXAMPLE  PEER_TO_PEER_EXAMPLE
#endif

// the active channel plan is the one that will be compiled
// options are :
//      CP_US915
//      CP_AU915
//      CP_EU868
//      CP_KR920
//      CP_AS923
//      CP_AS923_JAPAN
#if !defined(CHANNEL_PLAN)
#define CHANNEL_PLAN CP_EU868
#endif

#endif