Thiago . / Mbed 2 deprecated EX_DYNAMIC_MEMORYALLOCATION

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 
00003 DigitalOut myled(LED1);
00004 Serial pc(USBTX,USBRX);
00005 
00006 int main() {
00007     int *james = new int;
00008     *james = 12;
00009     
00010     pc.printf("%i",*james);
00011 }