Latest code of github version for Nucleo-F030R8 is probably broken. Target compiler is armcc. Below code dose not work. ``` #include "mbed.h" DigitalOut led1(LED1); int i; int main() { while (1) { led1 = 1; wait_ms( 500); led1 = 0; wait_ms( 500 ); printf("\n %03d: Rev.%d: Clock=%d Hz",i++,MBED_LIBRARY_VERSION,SystemCoreClock); } } ``` The code released as rev.111 is ok. dinau