microSD Card control function for DISCO-F469NI based on BD_SD_DISCO_F746NG library by Roy Krikke

Dependencies:   BSP_DISCO_F469NI_modified BD_SD_DISCO_F469NI

Fork of DISCO-F769NI_BD_SD_Card_Control by Kenji Arai

Please refer following my Notebook page.
/users/kenjiArai/notebook/sd-card-control-new/

select_program.h

Committer:
kenjiArai
Date:
2021-01-14
Revision:
11:a13b9833d5f4
Parent:
10:b5665028f662

File content as of revision 11:a13b9833d5f4:

/*
 * DISCO-F469NI
 *
 * Copyright (c) 2019,'20,'21 Kenji Arai / JH1PJL
 *  http://www7b.biglobe.ne.jp/~kenjia/
 *  https://os.mbed.com/users/kenjiArai/
 *      Created:    December   6th, 2019
 *      Revised:    January   12th, 2021
 */

/*
    You can select several programs.
 */
#define EXAMPLE_NUMBER     1    // select 1 to 2

//----------------- You don't need any modification ----------------------------
#if EXAMPLE_NUMBER == 1
    #define MAIN_1
    #ifdef MAIN_1
        #warning "1_main.cpp"
    #endif
#elif EXAMPLE_NUMBER == 2
    #define MAIN_2
    #ifdef MAIN_2
        #warning "2_main.cpp"
    #endif
#else
    #error " Please set 1 to 3 number for EXAMPLE_NUMBER!!"
#endif