Minikombajn Pomiarowy  20
 All Files Functions Variables Macros
Grafika.h
Go to the documentation of this file.
1 /******************************************************************/
9 #ifndef graphich
10 #define graphich
11 
12 enum display_type {SV_DIV, XY_POS, TRIG, CURSORS};
13 
14 void LCDosc(uint8_t* wsk, uint8_t* wsk2, uint8_t xpos, uint8_t ypos1, uint8_t ypos2, uint8_t cur1, uint8_t cur2);
15 void lcd_osc4(uint8_t* wsk, uint8_t rozdziel);
16 void LCDWriteScaleLine(uint8_t s, uint8_t v);
17 void LCDWriteAnScaleLine(uint8_t s, uint8_t v);
18 void LCDWritePositionLine(int16_t x, int8_t y);
19 void LCDWriteTriggerLine(uint8_t trig, int16_t lev);
20 void LCDWriteTimeCursorLine(int16_t cur, uint8_t sd);
21 void LCDWriteFreqCursorLine(uint32_t freq, int8_t db);
22 
23 void LCDU32F(uint32_t n, uint8_t z);
24 void LCDU16F(uint16_t n, uint8_t z);
25 void LCDU32(uint32_t n);
26 void LCDI32(int32_t n);
27 void LCDU16(uint16_t n);
28 void LCDI16(int16_t n);
29 void LCDU8(uint8_t n);
30 void LCDI8(int8_t n);
31 void LCDI10(int16_t n);
32 void LCDUF6(uint8_t n, uint8_t z);
33 void LCDU16mV(uint16_t n);
34 void LCDI16mV(int16_t n);
35 
36 #endif