Silabs USB to UART ブリッジ用のドライバをインストールしようとすると問題が発生します。
ここからドライバーをダウンロードしました: http://www.silabs.com/products/mcu/Pages/USBtoUARTBridgeVCPDrivers.aspx
カーネル3.6.11のラズベリーにインストールしようとしています
指示では、次のことがわかります。
make (your cp2010x driver)
cp cp2010x.ko to /libmodules/<kernel>/kernel/driver/usb/serial
insmod /libmodules/<kernel>/kernel/driver/usb/serial/usbserial.ko
insmod xp2010x.ko
ただし、MAKE を呼び出そうとすると、次のエラーが発生します。
root@raspberrypi:/home/pi/Desktop/vcp/Linux1# make
make -C /lib/modules/3.6.11+/build M=/home/pi/Desktop/vcp/Linux1 modules
make[1]: Entering directory `/usr/src/linux'
CC [M] /home/pi/Desktop/vcp/Linux1/cp210x.o
/home/pi/Desktop/vcp/Linux1/cp210x.c:164:12: error: ´usb_serial_probe´ undeclared here (not in a function)
/home/pi/Desktop/vcp/Linux1/cp210x.c:165:16: error: ´usb_serial_disconnect´ undeclared here (not in a function)
/home/pi/Desktop/vcp/Linux1/cp210x.c: In function ´cp210x_init´:
/home/pi/Desktop/vcp/Linux1/cp210x.c:989:2: error: implicit declaration of function ´usb_serial_register´ [-Werror=implicit-function-declaration]
/home/pi/Desktop/vcp/Linux1/cp210x.c:996:3: error: implicit declaration of function ´usb_serial_deregister´ [-Werror=implicit-function-declaration]
cc1: 一部の警告がエラーとして処理されています
make[2]: *** [/home/pi/Desktop/vcp/Linux1/cp210x.o] Error 1
make[1]: *** [_module_/home/pi/Desktop/vcp/Linux1] Error 2
make[1]: Leaving directory `/usr/src/linux'
make: *** [all] Error 2
ここで何が問題なのですか?