Rev 463 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 463 | Rev 470 | ||
---|---|---|---|
Line 3... | Line 3... | ||
3 | struct MM3_working_struct |
3 | struct MM3_working_struct |
4 | { |
4 | { |
5 | uint8_t STATE; |
5 | uint8_t STATE; |
6 | unsigned int DRDY; |
6 | unsigned int DRDY; |
7 | uint8_t AXIS; |
7 | uint8_t AXIS; |
8 | signed int x_axis; |
8 | volatile signed int x_axis; |
9 | signed int y_axis; |
9 | volatile signed int y_axis; |
10 | signed int z_axis; |
10 | volatile signed int z_axis; |
11 | }; |
11 | }; |
Line 12... | Line 12... | ||
12 | 12 | ||
13 | 13 |