Rev 43 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1 | ingob | 1 | #ifndef _SETTINGS_H |
2 | #define _SETTINGS_H |
||
3 | |||
4 | struct str_setting_parameter |
||
5 | { |
||
6 | char Name[16]; |
||
7 | char Comment[32]; |
||
8 | unsigned char Group; // 0 = reserved 1,2,3,4 |
||
9 | unsigned char Value, Default; |
||
10 | unsigned char Min, Max; |
||
11 | } __attribute__((packed)); |
||
12 | |||
13 | extern struct str_setting_parameter CFG_Parameter[]; |
||
14 | |||
15 | void ReadSetting(unsigned char number); |
||
16 | |||
17 | #endif |
||
18 | |||
19 |