Frequency counter using GPS 1PPS signal and temperature controlled 50MHz Base clock. Ported from F411 Frequency Counter.

Dependencies:   QEI DRV8830 PID ADT7410 TextLCD Frq_cuntr_Nucleo-F746ZG RingBuffer

Fork of Frequency_Counter_w_GPS_1PPS by Kenji Arai

Please refer following.
/users/kenjiArai/notebook/frequency-counters/

check_revision.cpp

Committer:
kenjiArai
Date:
2019-12-22
Revision:
15:ae0413277bc6
Parent:
14:ba6ea409ab05

File content as of revision 15:ae0413277bc6:

/*
 * Check Mbed revision
 *
 * Copyright (c) 2019 Kenji Arai / JH1PJL
 *  http://www.page.sannet.ne.jp/kenjia/index.html
 *  https://os.mbed.com/users/kenjiArai/
 *      Created:    July      17th, 2019
 *      Revised:    December  22nd, 2019
 */

#include "mbed.h"

//    RUN ONLY ON mbed-os5.15.0
//      https://github.com/ARMmbed/mbed-os/releases/tag/mbed-os-5.15.0
#if (MBED_MAJOR_VERSION == 5) &&\
    (MBED_MINOR_VERSION == 15) &&\
    (MBED_PATCH_VERSION == 0)
#else
    //#warning "Please use Mbed-os5.15.0"
    #error "Please use Mbed-os5.15.0"
#endif