1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
#ifndef __TRANSPOSE_H__
#define __TRANSPOSE_H__
#include <stdint.h>
enum Segment { SegA, SegB, SegC, SegD, SegE, SegF, SegG, SegDP, nsegments };
enum {
nrows = 4,
ncols = 8,
nbits = 10,
};
enum {
frame_size_words = nrows*ncols*nsegments/32,
};
struct framebuf {
/* Multiplexing order: first Digits, then Time/bits, last Segments */
union {
uint32_t data[nbits*frame_size_words];
struct {
struct {
uint32_t data[frame_size_words];
} frame[nbits];
};
};
uint8_t brightness; /* 0 or 1; controls global brighntess control */
};
struct data_format {
union {
uint8_t high[8];
struct { uint8_t ah, bh, ch, dh, eh, fh, gh, dph; };
};
union {
uint16_t low;
struct { uint8_t dpl:2, gl:2, fl:2, el:2, dl:2, cl:2, bl:2, al:2; };
};
} __attribute__((packed));
void transpose_data(volatile uint8_t *rx_buf, volatile struct framebuf *out_fb);
void untranspose_data(struct framebuf *fb, uint8_t *txbuf);
#endif//__TRANSPOSE_H__
|