MultiTech / Mbed OS Dragonfly-Examples
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers example_config.h Source File

example_config.h

00001 // This is where you choose which example program will be compiled
00002 // to run on the target device.
00003 
00004 #ifndef __EXAMPLE__CONFIG_H__
00005 #define __EXAMPLE__CONFIG_H__
00006 
00007 // List of available example programs.
00008 #define SMS_EXAMPLE              1  // see sms_example.cpp
00009 #define TCP_EXAMPLE              2  // see tcp_example.cpp
00010 
00011 // Example program that will be compiled to run on target.
00012 #if !defined(ACTIVE_EXAMPLE)
00013 #define ACTIVE_EXAMPLE  TCP_EXAMPLE
00014 #endif
00015 
00016 #endif