La Suno / Mbed 2 deprecated afero_poc15_180216

Dependencies:   UniGraphic mbed vt100

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers edge_chart.h Source File

edge_chart.h

00001 #ifndef _EDGE_CHART_H_
00002 #define _EDGE_CHART_H_
00003 #include "mbed.h"
00004 
00005 typedef struct _edge_chart_st {
00006     char *name ;
00007     int left ;
00008     int top ;
00009     int width ;
00010     int height ;
00011     int index ;
00012     float min ;
00013     float max ;
00014 } edge_chart_type ;
00015 
00016 extern edge_chart_type edge_chart[] ;
00017 
00018 void draw_chart_frame(edge_chart_type *p) ;
00019 void draw_all_chart_frame(void) ;
00020 
00021 
00022 #endif /* _EDGE_CHART_H_ */