Hi there, I’m also having this issue. I have tried all the above steps, but am having no luck at all, do you have any ideas what might be wrong?
linaro@linaro-alip:~$ cd Starter_Kit_for_96Boards/
linaro@linaro-alip:~/Starter_Kit_for_96Boards$ ls
96Boards-Sensorskit-RevC-Getting-Started-A4.pdf LICENSE humid_temp touch_switch
96Boards-Sensorskit-RevC-Getting-Started-A6.pdf Sensors.pdf light_buzz tweeting_doorbell
96Boards-Sensorskit-RevC-Getting-Started.odt button_led rgb_lcd_demo
linaro@linaro-alip:~/Starter_Kit_for_96Boards$ cd rgb_lcd_demo/
linaro@linaro-alip:~/Starter_Kit_for_96Boards/rgb_lcd_demo$ make
g++ -Wall -g -lupm-i2clcd rgb_lcd_demo.cpp -o rgb_lcd_demo
In file included from rgb_lcd_demo.cpp:9:0:
/usr/local/include/upm/jhd1313m1.h:33:17: fatal error: upm.h: No such file or directory
#include <upm.h>
^
compilation terminated.
<builtin>: recipe for target 'rgb_lcd_demo' failed
make: *** [rgb_lcd_demo] Error 1
and…
linaro@linaro-alip:~/Starter_Kit_for_96Boards/rgb_lcd_demo$ g++ -I /usr/local/include/upm/ rgb_lcd_demo.cpp -o rgb_lcd_demo -g -Wall -lupm-i2clcd
In file included from rgb_lcd_demo.cpp:9:0:
/usr/local/include/upm/jhd1313m1.h:33:17: fatal error: upm.h: No such file or directory
#include <upm.h>
^
compilation terminated.
linaro@linaro-alip:~/Starter_Kit_for_96Boards/rgb_lcd_demo$ g++ -I /usr/local/include/ rgb_lcd_demo.cpp -o rgb_lcd_demo -g -Wall -lupm-i2clcd
In file included from rgb_lcd_demo.cpp:9:0:
/usr/local/include/upm/jhd1313m1.h:33:17: fatal error: upm.h: No such file or directory
#include <upm.h>
^
compilation terminated.
I have tried also to rename the files in /usr/local/include/ which results in that file not being found…
linaro@linaro-alip:~/Starter_Kit_for_96Boards/rgb_lcd_demo$ make
g++ -Wall -g -lupm-i2clcd rgb_lcd_demo.cpp -o rgb_lcd_demo
rgb_lcd_demo.cpp:9:27: fatal error: upm/jhd1313m1.h: No such file or directory
#include "upm/jhd1313m1.h"
^
compilation terminated.
<builtin>: recipe for target 'rgb_lcd_demo' failed
make: *** [rgb_lcd_demo] Error 1
I’m using 4.4.23-linaro-lt-qcom with the Qualcomm dragonboard 410c, any help would be greatly appreciated.
Thanks