Check program for STM32F303K8 System Clock

Dependencies:   mbed

Fork of study_step0 by Team_PjL

See
https://os.mbed.com/users/kenjiArai/notebook/nucleo-f303k8-hse-clock/#

main.cpp

Committer:
kenjiArai
Date:
2017-08-10
Revision:
0:1672d0903bdc
Child:
1:e162361e197f

File content as of revision 0:1672d0903bdc:

/*
 * Mbed Application program / Study step1 -> LED Blinky
 *
 * Copyright (c) 2017 Kenji Arai / JH1PJL
 *  http://www.page.sannet.ne.jp/kenjia/index.html
 *  http://mbed.org/users/kenjiArai/
 *      Created:    August    10th, 2017
 *      Revised:    August    10th, 2017
 */

#include "mbed.h"

DigitalOut  my_led(LED1);

int main() {
    while(1) {
        my_led = !my_led;
        wait(1.0);  
    }
}