Skip to content

Simple program of NUCLEO_F030R8 dose not work. #1494

Closed
@dinau

Description

@dinau

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions