Advertisement
Guest User

Untitled

a guest
Jan 21st, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.34 KB | None | 0 0
  1. typedef union _Segment_TypeDef
  2. {
  3.     uint16_t raw;
  4.     struct {
  5.     uint16_t a : 1;
  6.     uint16_t b : 1;
  7.     uint16_t c : 1;
  8.     uint16_t d : 1;
  9.     uint16_t e : 1;
  10.     uint16_t f : 1;
  11.     uint16_t g : 1;
  12.     uint16_t h : 1;
  13.     uint16_t j : 1;
  14.     uint16_t k : 1;
  15.     uint16_t m : 1;
  16.     uint16_t n : 1;
  17.     uint16_t p : 1;
  18.     uint16_t q : 1;
  19.     };
  20. } SegmentLCD_SegmentData_TypeDef;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement