LE YOU / func

Dependents:   mas

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Error.cpp Source File

Error.cpp

00001 #include "Error.h"
00002 
00003 void raise_error(ErrorCode ec)
00004 {
00005     DigitalOut led(LED1);
00006     while(1)
00007     {
00008         for(int i=0; i<=ec; i++)
00009         {
00010             led=1;
00011             wait(0.3);
00012             led=0;
00013             wait(0.3);
00014         }
00015         wait(2);
00016     }
00017 }