diff --git a/configs/olimex-lpc1766stk/hidmouse/defconfig b/configs/olimex-lpc1766stk/hidmouse/defconfig index 4f8e2cb7af1..a5e376f5e0c 100644 --- a/configs/olimex-lpc1766stk/hidmouse/defconfig +++ b/configs/olimex-lpc1766stk/hidmouse/defconfig @@ -407,6 +407,7 @@ CONFIG_USBHOST_NPREALLOC=4 # CONFIG_USBHOST_MSC is not set # CONFIG_USBHOST_HIDKBD is not set CONFIG_USBHOST_HIDMOUSE=y +# CONFIG_HIDMOUSE_TSCIF is not set CONFIG_HIDMOUSE_DEFPRIO=50 CONFIG_HIDMOUSE_STACKSIZE=1024 CONFIG_HIDMOUSE_BUFSIZE=64 @@ -646,6 +647,7 @@ CONFIG_EXAMPLES_NSH=y CONFIG_EXAMPLES_TOUCHSCREEN=y CONFIG_EXAMPLES_TOUCHSCREEN_MINOR=0 CONFIG_EXAMPLES_TOUCHSCREEN_DEVPATH="/dev/mouse0" +CONFIG_EXAMPLES_TOUCHSCREEN_MOUSE=y # CONFIG_EXAMPLES_UDP is not set # CONFIG_EXAMPLES_DISCOVER is not set # CONFIG_EXAMPLES_UIP is not set diff --git a/configs/olimex-lpc1766stk/hidmouse/setenv.sh b/configs/olimex-lpc1766stk/hidmouse/setenv.sh index fa406eccede..6232016705f 100755 --- a/configs/olimex-lpc1766stk/hidmouse/setenv.sh +++ b/configs/olimex-lpc1766stk/hidmouse/setenv.sh @@ -57,7 +57,10 @@ export TOOLCHAIN_BIN="/cygdrive/c/Program Files (x86)/CodeSourcery/Sourcery_Code # toolchain. #export TOOLCHAIN_BIN="${WD}/../misc/buildroot/build_arm_nofpu/staging_dir/bin" -# Add the path to the toolchain to the PATH varialble -export PATH="${TOOLCHAIN_BIN}:/sbin:/usr/sbin:${PATH_ORIG}" +# The Olimex-lpc1766stk/tools directory +export LPCTOOL_DIR="${WD}/configs/olimex-lpc1766stk/tools" + +# Add the path to the toolchain and tools directory to the PATH varialble +export PATH="${TOOLCHAIN_BIN}:${LPCTOOL_DIR}:/sbin:/usr/sbin:${PATH_ORIG}" echo "PATH : ${PATH}"