Rtos API example

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 
00003 volatile float w, x, y, z;
00004 int main() {
00005     while (1) {
00006         z = x * y / w;
00007     }
00008 }