summaryrefslogtreecommitdiffstats
path: root/apps/examples/lcdrw/lcdrw_main.c
blob: c366743f4724c226a4061ed74dc48eae04d8e2ca (plain)
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
/****************************************************************************
 * examples/lcdrw/lcdrw_main.c
 *
 *   Copyright (C) 2011 Gregory Nutt. All rights reserved.
 *   Author: Gregory Nutt <spudmonkey@racsa.co.cr>
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in
 *    the documentation and/or other materials provided with the
 *    distribution.
 * 3. Neither the name NuttX nor the names of its contributors may be
 *    used to endorse or promote products derived from this software
 *    without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 *
 ****************************************************************************/

/****************************************************************************
 * Included Files
 ****************************************************************************/

#include <nuttx/config.h>

#include <stdio.h>
#include <stdlib.h>

#include <nuttx/lcd/lcd.h>
#include <nuttx/nx/nxglib.h>

/****************************************************************************
 * Definitions
 ****************************************************************************/
/* Configuration ************************************************************/
/* Most of the NX configuration settings are probbably *not* needed by this
 * example.  But, presumeably you are using NX too and so the checks might
 * be good for you.
 */

#ifndef CONFIG_NX
#  error "CONFIG_NX must be defined to use this test"
#endif

#ifndef CONFIG_NX_LCDDRIVER
#  error "CONFIG_NX_LCDDRIVER must be defined to use this test"
#endif

#ifndef CONFIG_EXAMPLES_LCDRW_BPP
#  define CONFIG_EXAMPLES_LCDRW_BPP 16
#endif

#if CONFIG_EXAMPLES_LCDRW_BPP != 16
#  error "Currently only RGB565 is supported -- feel free to extend"
#endif

#ifdef CONFIG_NX_DISABLE_16BPP
#  error "CONFIG_NX_DISABLE_16BPP disables 16-bit support"
#endif

#ifndef CONFIG_EXAMPLES_LDCRW_DEVNO
#  define CONFIG_EXAMPLES_LDCRW_DEVNO 0
#endif

#ifndef CONFIG_EXAMPLES_LDCRW_XRES
#  define CONFIG_EXAMPLES_LDCRW_XRES 240
#endif

#ifndef CONFIG_EXAMPLES_LDCRW_YRES
#  define CONFIG_EXAMPLES_LDCRW_YRES 320
#endif

/****************************************************************************
 * Private Types
 ****************************************************************************/

struct lcdrw_instance_s
{
  /* LCD device handle and planeinfo */

  FAR struct lcd_dev_s *dev;
  struct lcd_planeinfo_s pinfo;
};

/****************************************************************************
 * Private Data
 ****************************************************************************/

/****************************************************************************
 * Private Functions
 ****************************************************************************/
/****************************************************************************
 * Name: lcdrw_initialize
 ****************************************************************************/

static inline int lcdrw_initialize(FAR struct lcdrw_instance_s *inst)
{
  int ret;

  /* Initialize the LCD device */

  printf("screens_initialize: Initializing LCD\n");
  ret = up_lcdinitialize();
  if (ret < 0)
    {
      fprintf(stderr, "screens_initialize: up_lcdinitialize failed: %d\n", -ret);
      return ret;
    }

  /* Get the device instance. */

  printf("Get LCD instance\n");
  inst->dev = up_lcdgetdev(CONFIG_EXAMPLES_LDCRW_DEVNO);
  if (!inst->dev)
    {
      fprintf(stderr, "up_lcdgetdev failed, devno=%d\n", CONFIG_EXAMPLES_LDCRW_DEVNO);
      return ret;
    }

  /* Turn the LCD on at 75% power.  This should not be necessary. */

  (void)inst->dev->setpower(inst->dev, ((3*CONFIG_LCD_MAXPOWER + 3)/4));

  /* Get the planeinfo structure */

  ret = inst->dev->getplaneinfo(inst->dev, 0, &inst->pinfo);
  if (ret < 0)
    {
      fprintf(stderr, "getplaneinfo failed: %d\n", ret);
    }
  return ret;
}

/****************************************************************************
 * Public Functions
 ****************************************************************************/

/****************************************************************************
 * Name: lcdrw_main/user_start
 ****************************************************************************/

#ifdef CONFIG_EXAMPLES_LCDRW_BUILTIN
#  define MAIN_NAME lcdrw_main
#else
#  define MAIN_NAME user_start
#endif

int MAIN_NAME(int argc, char *argv[])
{
  struct lcdrw_instance_s inst;
  nxgl_coord_t row;
  nxgl_coord_t col;
  uint16_t value;
  uint32_t offset;
  FAR uint16_t *ptr;
  int ret;

  /* Initialize the LCD driver */

  ret = lcdrw_initialize(&inst);
  if (ret < 0)
    {
      exit(1);
    }

  /* Loop, writing all possible values to the LCD */

  value = 0;
  for (row = 0; row < CONFIG_EXAMPLES_LDCRW_YRES; row++)
    {
      /* Create a dummy row.  The important thing is to try all
       * bit combinations in a predictable way.
       */
  
       ptr = (FAR uint16_t*)inst.pinfo.buffer;
       for (col = 0; col < CONFIG_EXAMPLES_LDCRW_XRES; col++)
         {
           *ptr++ = value++;
         }

      /* Write the row to the LCD */

      ret = inst.pinfo.putrun(row, 0, inst.pinfo.buffer,
                              CONFIG_EXAMPLES_LDCRW_XRES);
      if (ret < 0)
        {
          fprintf(stderr, "putrun failed: %d\n", ret);
          exit(1);
        }
    }

  /* Print a header */

  printf("       ");
  for (col = 0; col < 15; col++)
    {
      printf("---%x ", col);
    }
  printf("---f\n");

   /* Then read each line back from the LCD. */

  offset = 0;
  for (row = 0; row < CONFIG_EXAMPLES_LDCRW_YRES; row++)
    {
      /* Read the row */
 
      ret = inst.pinfo.getrun(row, 0, inst.pinfo.buffer,
                              CONFIG_EXAMPLES_LDCRW_XRES);
      if (ret < 0)
        {
          fprintf(stderr, "getrun failed: %d\n", ret);
          exit(1);
        }

      /* Then dump the row to the display */

      ptr = (FAR uint16_t*)inst.pinfo.buffer;
      for (col = 0; col < CONFIG_EXAMPLES_LDCRW_XRES; col++)
        {
          if ((offset & 15) == 0)
            {
              printf("%06x ", offset);
            }

          value = *ptr++;
          offset++;

          if ((offset & 15) == 0)
            {
              printf("%04x\n", value);
            }
          else
            {
              printf("%04x ", value);
            }
        }
    }
  fflush(stdout);

  return 0;
}