Blame view

RIOT/tests/pkg_u8g2/main.c 5.45 KB
a752c7ab   elopes   add first test an...
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
  /*
   * Copyright (C) 2016 Bas Stottelaar <basstottelaar@gmail.com>
   *
   * This file is subject to the terms and conditions of the GNU Lesser
   * General Public License v2.1. See the file LICENSE in the top level
   * directory for more details.
   */
  
  /**
   * @ingroup     tests
   * @{
   *
   * @file
   * @brief       Test application for the U8g2 package.
   *
   * @author      Bas Stottelaar <basstottelaar@gmail.com>
   *
   * @}
   */
  
  #define TEST_OUTPUT_STDOUT 1
  #define TEST_OUTPUT_SDL 2
  #define TEST_OUTPUT_SPI 3
  #define TEST_OUTPUT_I2C 4
  
  #ifndef TEST_OUTPUT
  #error "TEST_OUTPUT not defined"
  #endif
  
  #if TEST_OUTPUT == TEST_OUTPUT_I2C
  #ifndef TEST_I2C
  #error "TEST_I2C not defined"
  #endif
  #ifndef TEST_ADDR
  #error "TEST_ADDR not defined"
  #endif
  #ifndef TEST_DISPLAY
  #error "TEST_DISPLAY not defined"
  #endif
  #ifndef TEST_PIN_RESET
  #error "TEST_PIN_RESET not defined"
  #endif
  #endif
  
  #if TEST_OUTPUT == TEST_OUTPUT_SPI
  #ifndef TEST_SPI
  #error "TEST_SPI not defined"
  #endif
  #ifndef TEST_DISPLAY
  #error "TEST_DISPLAY not defined"
  #endif
  #ifndef TEST_PIN_CS
  #error "TEST_PIN_CS not defined"
  #endif
  #ifndef TEST_PIN_DC
  #error "TEST_PIN_DC not defined"
  #endif
  #ifndef TEST_PIN_RESET
  #error "TEST_PIN_RESET not defined"
  #endif
  #endif
  
  #include <stdio.h>
  
  #include "periph/gpio.h"
  
  #include "xtimer.h"
  #include "u8g2.h"
  
  /**
   * @brief   RIOT-OS logo, 64x32 pixels at 8 pixels per byte.
   */
  static const uint8_t logo[] = {
      0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xE0,
      0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xF8, 0x00, 0x00, 0x00, 0x00,
      0x00, 0x00, 0x1F, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3E, 0x3C,
      0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x1E, 0x00, 0x00, 0x00, 0x00,
      0x00, 0x00, 0x70, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x0E,
      0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x0E, 0x00, 0x00, 0x00, 0x00,
      0x00, 0x00, 0xF0, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x1E,
      0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x3C, 0x00, 0x00, 0x00, 0x00,
      0x00, 0x00, 0xF0, 0x7C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x73, 0xF8,
      0x30, 0x3C, 0x3F, 0xC0, 0x00, 0x0C, 0x77, 0xF0, 0x38, 0x7E, 0x3F, 0xC0,
      0x00, 0x7E, 0x73, 0xC0, 0x38, 0xE7, 0x06, 0x00, 0x00, 0xFC, 0x71, 0x00,
      0x38, 0xE3, 0x06, 0x00, 0x01, 0xF0, 0x70, 0x00, 0x38, 0xE3, 0x06, 0x00,
      0x01, 0xC0, 0x70, 0x00, 0x38, 0xE3, 0x06, 0x00, 0x03, 0x80, 0x70, 0xC0,
      0x38, 0xE3, 0x06, 0x00, 0x03, 0x80, 0x71, 0xE0, 0x38, 0xE3, 0x06, 0x00,
      0x03, 0x80, 0x70, 0xE0, 0x38, 0xE3, 0x06, 0x00, 0x03, 0x80, 0x70, 0xF0,
      0x38, 0xE3, 0x06, 0x00, 0x03, 0x80, 0x70, 0x70, 0x38, 0xE3, 0x06, 0x00,
      0x03, 0x80, 0xF0, 0x78, 0x38, 0xE3, 0x06, 0x00, 0x03, 0xC1, 0xE0, 0x3C,
      0x38, 0xE7, 0x06, 0x00, 0x01, 0xE3, 0xE0, 0x3C, 0x38, 0x7E, 0x06, 0x00,
      0x01, 0xFF, 0xC0, 0x1C, 0x30, 0x3C, 0x06, 0x00, 0x00, 0x7F, 0x80, 0x00,
      0x00, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
      0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
      0x00, 0x00, 0x00, 0x00
  };
  
  #if (TEST_OUTPUT == TEST_OUTPUT_I2C) || (TEST_OUTPUT == TEST_OUTPUT_SPI)
  /**
   * @brief   RIOT-OS pin maping of U8g2 pin numbers to RIOT-OS GPIO pins.
   * @note    To minimize the overhead, you can implement an alternative for
   *          u8x8_gpio_and_delay_riotos.
   */
  static gpio_t pins[] = {
      [U8X8_PIN_CS] = TEST_PIN_CS,
      [U8X8_PIN_DC] = TEST_PIN_DC,
      [U8X8_PIN_RESET] = TEST_PIN_RESET
  };
  
  /**
   * @brief   Bit mapping to indicate which pins are set.
   */
  static uint32_t pins_enabled = (
      (1 << U8X8_PIN_CS) +
      (1 << U8X8_PIN_DC) +
      (1 << U8X8_PIN_RESET)
  );
  #endif
  
  int main(void)
  {
      uint32_t screen = 0;
      u8g2_t u8g2;
  
      /* initialize to stdout */
  #if TEST_OUTPUT == TEST_OUTPUT_STDOUT
      puts("Initializing to stdout.");
  
      u8g2_SetupBuffer_Utf8(&u8g2, U8G2_R0);
  #endif
  
      /* initialize to virtual SDL (native only) */
  #if TEST_OUTPUT == TEST_OUTPUT_SDL
      puts("Initializing to SDL.");
  
      u8g2_SetupBuffer_SDL_128x64_4(&u8g2, U8G2_R0);
  #endif
  
      /* initialize to SPI */
  #if TEST_OUTPUT == TEST_OUTPUT_SPI
      puts("Initializing to SPI.");
  
      TEST_DISPLAY(&u8g2, U8G2_R0, u8x8_byte_riotos_hw_spi, u8x8_gpio_and_delay_riotos);
  
      u8g2_SetPins(&u8g2, pins, pins_enabled);
      u8g2_SetDevice(&u8g2, TEST_SPI);
  #endif
  
      /* initialize to I2C */
  #if TEST_OUTPUT == TEST_OUTPUT_I2C
      puts("Initializing to I2C.");
  
      TEST_DISPLAY(&u8g2, U8G2_R0, u8x8_byte_riotos_hw_i2c, u8x8_gpio_and_delay_riotos);
  
      u8g2_SetPins(&u8g2, pins, pins_enabled);
      u8g2_SetDevice(&u8g2, TEST_I2C);
      u8g2_SetI2CAddress(&u8g2, TEST_ADDR);
  #endif
  
      /* initialize the display */
      puts("Initializing display.");
  
      u8g2_InitDisplay(&u8g2);
      u8g2_SetPowerSave(&u8g2, 0);
  
      /* start drawing in a loop */
      puts("Drawing on screen.");
  
      while (true) {
          u8g2_FirstPage(&u8g2);
  
          do {
              u8g2_SetDrawColor(&u8g2, 1);
              u8g2_SetFont(&u8g2, u8g2_font_helvB12_tf);
  
              if (screen == 0) {
                  u8g2_DrawStr(&u8g2, 12, 22, "THIS");
              }
              else if (screen == 1) {
                  u8g2_DrawStr(&u8g2, 24, 22, "IS");
              }
              else if (screen == 2) {
                  u8g2_DrawBitmap(&u8g2, 0, 0, 8, 32, logo);
              }
          } while (u8g2_NextPage(&u8g2));
  
  #if TEST_OUTPUT == TEST_OUTPUT_STDOUT
          /* transfer screen buffer to stdout */
          utf8_show();
  #endif
  
          /* show screen in next iteration */
          screen = (screen + 1) % 3;
  
          /* sleep a little */
          xtimer_sleep(1);
      }
  
      return 0;
  }