Build failed in Jenkins: NuttX-Nightly-Build #103

2020-04-21 Thread Apache Jenkins Server
See Changes: -- [...truncated 4.52 MB...] sched/pthread_setaffinity.d sched/pthread_setschedparam.d sched/pthread_setschedprio.d sched/pthread_setspeci

Re: sending multiple rows to LCD in one go

2020-04-21 Thread Matias N.
Yes, many LCDs will not support this functionality. In that case, putrun() should test for npixels > row size and return ERROR if this happens. Right now many LCD drivers should be updated if this change in semantics is performed, since they all assume npixels < row size. If a separate putrows()

Re: sending multiple rows to LCD in one go

2020-04-21 Thread Gregory Nutt
That would indeed work as well. I did not suggest it to avoid modifying semantics of an existing call. It should work on most but not all LCDs.  It should work on LCDs where the run is simply writing pixels into a graphics memory. But there are other LCDs that have to do other, incompatibl

Release version file

2020-04-21 Thread Gregory Nutt
When we do a release, the zipme script creates a proper version of the .version file.  This later becomes the version.h header file and is used in several places: 1. NSH Greeting 2. libcurl (OS identity) 3. webserver (OS identity) 4. procfs version file 5. uname OS version number The .version

Re: sending multiple rows to LCD in one go

2020-04-21 Thread Matias N.
That would indeed work as well. I did not suggest it to avoid modifying semantics of an existing call. On Mon, Apr 20, 2020, at 16:02, Xiang Xiao wrote: > From the putrun/getrun prototype: > int (*putrun)(fb_coord_t row, fb_coord_t col, > FAR const uint8_t * buffer, size_t npixels); > #ifndef C