with gcc-arm-none-eabi-7-2017-q4-major the default typedef of time_t is "long long int". older releases typedef time_t as "long int". mbed lib cannot handle this correctly This applies to exported projects as "GCC (ARM-Embedded)"

Dependencies:   mbed

Fork of USBSerial_HelloWorld by Samuel Mokrani

main.cpp

Committer:
samux
Date:
2011-11-17
Revision:
5:ee94acbf45df
Parent:
4:95c491d36524
Child:
6:aef06cd11ce4

File content as of revision 5:ee94acbf45df:

#include "mbed.h"
#include "USBSerial.h"

//Virtual serial port over USB
USBSerial serial;

Serial pc(USBTX, USBRX);

int main(void) {

    while(1)
    {
        serial.printf("I am a virtual serial port!\r\n");
        wait(1);
    }
}